aamp-openclaw-plugin 0.1.6
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 +46 -0
- package/dist/index.js +2222 -0
- package/dist/index.js.map +7 -0
- package/openclaw.plugin.json +24 -0
- package/package.json +55 -0
- package/skills/SKILL.md +227 -0
package/README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# @byted-meego/aamp-openclaw-plugin
|
|
2
|
+
|
|
3
|
+
OpenClaw plugin that gives an OpenClaw agent an AAMP mailbox identity.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @byted-meego/aamp-openclaw-plugin
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
When installed from OpenClaw, the plugin onboarding will prompt for:
|
|
12
|
+
|
|
13
|
+
- `AAMP Host`
|
|
14
|
+
- `Allowed Senders`
|
|
15
|
+
|
|
16
|
+
The answers are written into the OpenClaw plugin config automatically, so users do not need to hand-edit `openclaw.json`.
|
|
17
|
+
|
|
18
|
+
## Build
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm run build
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## OpenClaw config
|
|
25
|
+
|
|
26
|
+
```json
|
|
27
|
+
{
|
|
28
|
+
"plugins": {
|
|
29
|
+
"entries": {
|
|
30
|
+
"aamp": {
|
|
31
|
+
"enabled": true,
|
|
32
|
+
"config": {
|
|
33
|
+
"aampHost": "https://meshmail.ai",
|
|
34
|
+
"slug": "openclaw-agent",
|
|
35
|
+
"credentialsFile": ".aamp-identity.json",
|
|
36
|
+
"allowedSenders": [
|
|
37
|
+
"system@aamp.local"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
If `allowedSenders` is omitted, all senders are accepted. If set, only listed email addresses are allowed.
|