aamp-openclaw-plugin 0.1.42 → 0.1.43
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 +4 -0
- package/bin/aamp-openclaw-plugin.mjs +13 -2
- package/dist/file-store.js +11 -0
- package/dist/file-store.js.map +2 -2
- package/dist/index.js +79 -16
- package/dist/index.js.map +3 -3
- package/package.json +2 -2
- package/skills/SKILL.md +19 -0
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.43",
|
|
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",
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
"test": "vitest run"
|
|
297
297
|
},
|
|
298
298
|
"dependencies": {
|
|
299
|
-
"aamp-sdk": "^0.1.
|
|
299
|
+
"aamp-sdk": "^0.1.22",
|
|
300
300
|
"nodemailer": "^6.9.10",
|
|
301
301
|
"qrcode-terminal": "^0.12.0",
|
|
302
302
|
"ws": "^8.16.0"
|
package/skills/SKILL.md
CHANGED
|
@@ -35,6 +35,25 @@ metadata:
|
|
|
35
35
|
This skill gives the agent an email identity on an AAMP service and lets it
|
|
36
36
|
participate in asynchronous task workflows with other nodes.
|
|
37
37
|
|
|
38
|
+
## Pairing Code Requests
|
|
39
|
+
|
|
40
|
+
When the user asks this OpenClaw agent to show, send, generate, or pop up an
|
|
41
|
+
AAMP pairing/connect code, call the `aamp_pairing_code` tool immediately and
|
|
42
|
+
return its output directly. Treat these as pairing-code requests:
|
|
43
|
+
|
|
44
|
+
- "send/show/generate pairing code"
|
|
45
|
+
- "show/generate connect QR"
|
|
46
|
+
- "pair AAMP App with this OpenClaw agent"
|
|
47
|
+
- "发对接码"
|
|
48
|
+
- "生成配对码"
|
|
49
|
+
- "弹出二维码"
|
|
50
|
+
- "给我连接二维码"
|
|
51
|
+
|
|
52
|
+
The tool output includes the terminal QR code, the `https://meshmail.ai/pair`
|
|
53
|
+
pairing link for QR/universal-link flows, and the raw `aamp://connect` URL for
|
|
54
|
+
copy/paste flows. Do not answer with setup instructions when the user is asking
|
|
55
|
+
for a fresh code; call the tool.
|
|
56
|
+
|
|
38
57
|
## Overview
|
|
39
58
|
|
|
40
59
|
AAMP extends standard email with structured headers (`X-AAMP-*`) that carry
|