aamp-openclaw-plugin 0.1.29 → 0.1.31

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.
@@ -8,6 +8,9 @@
8
8
  "properties": {
9
9
  "aampHost": { "type": "string" },
10
10
  "slug": { "type": "string", "default": "openclaw-agent" },
11
+ "summary": { "type": "string" },
12
+ "cardText": { "type": "string" },
13
+ "cardFile": { "type": "string" },
11
14
  "credentialsFile": { "type": "string", "default": "~/.openclaw/extensions/aamp-openclaw-plugin/.credentials.json" },
12
15
  "senderPolicies": {
13
16
  "type": "array",
@@ -31,6 +34,9 @@
31
34
  "uiHints": {
32
35
  "aampHost": { "label": "AAMP Host", "placeholder": "https://meshmail.ai", "promptOnInstall": true },
33
36
  "slug": { "label": "Agent Slug", "placeholder": "openclaw-agent", "promptOnInstall": false },
37
+ "summary": { "label": "Directory Summary", "placeholder": "Code review, debugging, and incident summaries", "promptOnInstall": false },
38
+ "cardText": { "label": "Card Text", "placeholder": "Detailed capability card text", "promptOnInstall": false },
39
+ "cardFile": { "label": "Card File", "placeholder": "/absolute/path/to/card.md", "promptOnInstall": false },
34
40
  "credentialsFile": { "label": "Credentials File", "placeholder": "~/.openclaw/extensions/aamp-openclaw-plugin/.credentials.json", "promptOnInstall": false },
35
41
  "senderPolicies": { "label": "Sender Policies", "placeholder": "[{\"sender\":\"meegle-bot@meshmail.ai\",\"dispatchContextRules\":{\"project_key\":[\"proj_123\"]}}]", "promptOnInstall": true }
36
42
  },
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "skills"
8
8
  ],
9
9
  "license": "MIT",
10
- "version": "0.1.29",
10
+ "version": "0.1.31",
11
11
  "description": "AAMP Agent Mail Protocol — OpenClaw plugin. Gives OpenClaw an AAMP mailbox identity and lets it receive, process and reply to AAMP tasks.",
12
12
  "type": "module",
13
13
  "main": "dist/index.js",
@@ -29,6 +29,18 @@
29
29
  "default": "openclaw-agent",
30
30
  "description": "Agent name prefix used in the mailbox address"
31
31
  },
32
+ "summary": {
33
+ "type": "string",
34
+ "description": "Directory summary shown when other agents search for this agent"
35
+ },
36
+ "cardText": {
37
+ "type": "string",
38
+ "description": "Inline card text used for automatic card.response replies"
39
+ },
40
+ "cardFile": {
41
+ "type": "string",
42
+ "description": "Absolute path to a card text file used when cardText is not set"
43
+ },
32
44
  "credentialsFile": {
33
45
  "type": "string",
34
46
  "default": "~/.openclaw/extensions/aamp-openclaw-plugin/.credentials.json",
@@ -57,6 +69,9 @@
57
69
  "uiHints": {
58
70
  "aampHost": { "label": "AAMP Host", "placeholder": "https://meshmail.ai", "promptOnInstall": true },
59
71
  "slug": { "label": "Agent Slug", "placeholder": "openclaw-agent", "promptOnInstall": false },
72
+ "summary": { "label": "Directory Summary", "placeholder": "Code review, debugging, and incident summaries", "promptOnInstall": false },
73
+ "cardText": { "label": "Card Text", "placeholder": "Detailed capability card text", "promptOnInstall": false },
74
+ "cardFile": { "label": "Card File", "placeholder": "/absolute/path/to/card.md", "promptOnInstall": false },
60
75
  "credentialsFile": { "label": "Credentials File", "placeholder": "~/.openclaw/extensions/aamp-openclaw-plugin/.credentials.json", "promptOnInstall": false },
61
76
  "senderPolicies": { "label": "Sender Policies", "placeholder": "[{\"sender\":\"meegle-bot@meshmail.ai\",\"dispatchContextRules\":{\"project_key\":[\"proj_123\"]}}]", "promptOnInstall": true }
62
77
  }