@heyamiko/openclaw-plugin 0.1.0 → 0.1.1
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 +2 -2
- package/package.json +16 -13
- package/skills/amiko/cli.js +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @heyamiko/openclaw-plugin
|
|
2
2
|
|
|
3
|
-
An [OpenClaw](https://openclaw.dev) channel plugin that connects your OpenClaw agent to
|
|
3
|
+
An [OpenClaw](https://openclaw.dev) channel plugin that connects your OpenClaw agent to [Amiko](https://heyamiko.com), enabling direct and group chat via webhook.
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
@@ -58,7 +58,7 @@ openclaw plugins install @heyamiko/openclaw-plugin
|
|
|
58
58
|
The `token` is a **Twin Token** (JWT with `clawd-` prefix) that identifies the twin on the Amiko platform. It is used to authenticate API calls this plugin makes to amiko-chat.
|
|
59
59
|
|
|
60
60
|
To get a token:
|
|
61
|
-
1. Log in to the Amiko platform and go to your agent's deploy page.
|
|
61
|
+
1. Log in to the Amiko platform at `https://platform.heyamiko.com` and go to your agent's deploy page.
|
|
62
62
|
2. The twin token is generated when the agent is deployed.
|
|
63
63
|
3. Keep the token secret — treat it like a password.
|
|
64
64
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heyamiko/openclaw-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "OpenClaw channel plugin for connecting agents to the Amiko platform via webhook.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -19,14 +19,6 @@
|
|
|
19
19
|
"default": "./dist/index.js"
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
|
-
"scripts": {
|
|
23
|
-
"clean": "rm -rf dist .tmp",
|
|
24
|
-
"typecheck": "tsc --noEmit",
|
|
25
|
-
"build": "rm -rf dist && tsc -p tsconfig.build.json",
|
|
26
|
-
"prepack": "npm run build",
|
|
27
|
-
"test:m0": "rm -rf .tmp/m0 && tsc -p tsconfig.m0.json && node --test .tmp/m0/*.test.js",
|
|
28
|
-
"test": "node --test src/**/*.test.ts"
|
|
29
|
-
},
|
|
30
22
|
"keywords": [
|
|
31
23
|
"openclaw",
|
|
32
24
|
"amiko",
|
|
@@ -48,17 +40,21 @@
|
|
|
48
40
|
"engines": {
|
|
49
41
|
"node": ">=18"
|
|
50
42
|
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"zod": "^3.22.4"
|
|
45
|
+
},
|
|
51
46
|
"peerDependencies": {
|
|
52
47
|
"openclaw": "2026.3.13"
|
|
53
48
|
},
|
|
54
49
|
"devDependencies": {
|
|
55
50
|
"@types/node": "^25.4.0",
|
|
56
51
|
"openclaw": "2026.3.13",
|
|
57
|
-
"typescript": "^5.3.0"
|
|
58
|
-
"zod": "^3.22.4"
|
|
52
|
+
"typescript": "^5.3.0"
|
|
59
53
|
},
|
|
60
54
|
"openclaw": {
|
|
61
|
-
"extensions": [
|
|
55
|
+
"extensions": [
|
|
56
|
+
"./dist/index.js"
|
|
57
|
+
],
|
|
62
58
|
"channel": {
|
|
63
59
|
"id": "amiko",
|
|
64
60
|
"label": "Amiko",
|
|
@@ -69,5 +65,12 @@
|
|
|
69
65
|
"npmSpec": "@heyamiko/openclaw-plugin",
|
|
70
66
|
"localPath": "."
|
|
71
67
|
}
|
|
68
|
+
},
|
|
69
|
+
"scripts": {
|
|
70
|
+
"clean": "rm -rf dist .tmp",
|
|
71
|
+
"typecheck": "tsc --noEmit",
|
|
72
|
+
"build": "rm -rf dist && tsc -p tsconfig.build.json",
|
|
73
|
+
"test:m0": "rm -rf .tmp/m0 && tsc -p tsconfig.m0.json && node --test .tmp/m0/*.test.js",
|
|
74
|
+
"test": "node --test src/**/*.test.ts"
|
|
72
75
|
}
|
|
73
|
-
}
|
|
76
|
+
}
|
package/skills/amiko/cli.js
CHANGED
|
File without changes
|