openclaw-agentmail-listener 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # openclaw-agentmail
1
+ # openclaw-agentmail-listener
2
2
 
3
3
  An [OpenClaw](https://openclaw.dev) plugin that listens for incoming emails via [AgentMail](https://agentmail.to) WebSocket and injects system events so your AI agent can act on them.
4
4
 
@@ -15,19 +15,24 @@ This is **not** a channel plugin — it doesn't handle replies. It just triggers
15
15
 
16
16
  ## Installation
17
17
 
18
- ### Option 1: Install from GitHub
18
+ ### Option 1: Install from npm (recommended)
19
+
20
+ ```bash
21
+ openclaw plugins install openclaw-agentmail-listener
22
+ ```
23
+
24
+ Restart the gateway afterwards.
25
+
26
+ ### Option 2: Install from GitHub
19
27
 
20
28
  ```bash
21
- # Clone and install locally
22
29
  git clone https://github.com/thisnick/openclaw-agentmail ~/.openclaw/extensions/agentmail-listener
23
30
  cd ~/.openclaw/extensions/agentmail-listener
24
31
  npm install
25
-
26
- # Restart the gateway
27
32
  openclaw gateway restart
28
33
  ```
29
34
 
30
- ### Option 2: Load via config path
35
+ ### Option 3: Load via config path
31
36
 
32
37
  In your OpenClaw config (`~/.openclaw/openclaw.json`):
33
38
 
@@ -51,7 +56,7 @@ Add to your OpenClaw config under `plugins.entries.agentmail-listener.config`:
51
56
  {
52
57
  "plugins": {
53
58
  "entries": {
54
- "agentmail-listener": {
59
+ "openclaw-agentmail-listener": {
55
60
  "enabled": true,
56
61
  "config": {
57
62
  "apiKey": "am_us_your_key_here",
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "agentmail-listener",
2
+ "id": "openclaw-agentmail-listener",
3
3
  "name": "AgentMail Listener",
4
4
  "description": "Background service that listens for incoming emails via AgentMail WebSocket and injects system events so the agent can respond.",
5
5
  "version": "0.1.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-agentmail-listener",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "OpenClaw plugin: AgentMail listener — injects system events when emails arrive",
5
5
  "main": "dist/index.js",
6
6
  "openclaw": {