aamp-openclaw-plugin 0.1.30 → 0.1.32
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/dist/index.js +172 -14
- package/dist/index.js.map +2 -2
- package/package.json +48 -12
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"skills"
|
|
8
8
|
],
|
|
9
9
|
"license": "MIT",
|
|
10
|
-
"version": "0.1.
|
|
10
|
+
"version": "0.1.32",
|
|
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",
|
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
},
|
|
17
17
|
"openclaw": {
|
|
18
18
|
"id": "aamp-openclaw-plugin",
|
|
19
|
-
"extensions": [
|
|
19
|
+
"extensions": [
|
|
20
|
+
"./dist/index.js"
|
|
21
|
+
],
|
|
20
22
|
"configSchema": {
|
|
21
23
|
"type": "object",
|
|
22
24
|
"properties": {
|
|
@@ -50,14 +52,20 @@
|
|
|
50
52
|
"type": "array",
|
|
51
53
|
"items": {
|
|
52
54
|
"type": "object",
|
|
53
|
-
"required": [
|
|
55
|
+
"required": [
|
|
56
|
+
"sender"
|
|
57
|
+
],
|
|
54
58
|
"properties": {
|
|
55
|
-
"sender": {
|
|
59
|
+
"sender": {
|
|
60
|
+
"type": "string"
|
|
61
|
+
},
|
|
56
62
|
"dispatchContextRules": {
|
|
57
63
|
"type": "object",
|
|
58
64
|
"additionalProperties": {
|
|
59
65
|
"type": "array",
|
|
60
|
-
"items": {
|
|
66
|
+
"items": {
|
|
67
|
+
"type": "string"
|
|
68
|
+
}
|
|
61
69
|
}
|
|
62
70
|
}
|
|
63
71
|
}
|
|
@@ -67,13 +75,41 @@
|
|
|
67
75
|
}
|
|
68
76
|
},
|
|
69
77
|
"uiHints": {
|
|
70
|
-
"aampHost": {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
"
|
|
76
|
-
|
|
78
|
+
"aampHost": {
|
|
79
|
+
"label": "AAMP Host",
|
|
80
|
+
"placeholder": "https://meshmail.ai",
|
|
81
|
+
"promptOnInstall": true
|
|
82
|
+
},
|
|
83
|
+
"slug": {
|
|
84
|
+
"label": "Agent Slug",
|
|
85
|
+
"placeholder": "openclaw-agent",
|
|
86
|
+
"promptOnInstall": false
|
|
87
|
+
},
|
|
88
|
+
"summary": {
|
|
89
|
+
"label": "Directory Summary",
|
|
90
|
+
"placeholder": "Code review, debugging, and incident summaries",
|
|
91
|
+
"promptOnInstall": false
|
|
92
|
+
},
|
|
93
|
+
"cardText": {
|
|
94
|
+
"label": "Card Text",
|
|
95
|
+
"placeholder": "Detailed capability card text",
|
|
96
|
+
"promptOnInstall": false
|
|
97
|
+
},
|
|
98
|
+
"cardFile": {
|
|
99
|
+
"label": "Card File",
|
|
100
|
+
"placeholder": "/absolute/path/to/card.md",
|
|
101
|
+
"promptOnInstall": false
|
|
102
|
+
},
|
|
103
|
+
"credentialsFile": {
|
|
104
|
+
"label": "Credentials File",
|
|
105
|
+
"placeholder": "~/.openclaw/extensions/aamp-openclaw-plugin/.credentials.json",
|
|
106
|
+
"promptOnInstall": false
|
|
107
|
+
},
|
|
108
|
+
"senderPolicies": {
|
|
109
|
+
"label": "Sender Policies",
|
|
110
|
+
"placeholder": "[{\"sender\":\"meegle-bot@meshmail.ai\",\"dispatchContextRules\":{\"project_key\":[\"proj_123\"]}}]",
|
|
111
|
+
"promptOnInstall": true
|
|
112
|
+
}
|
|
77
113
|
}
|
|
78
114
|
},
|
|
79
115
|
"scripts": {
|