@betrue/openclaw-claude-code-plugin 1.0.2 → 1.0.4
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 +8 -0
- package/dist/index.js +41 -83
- package/openclaw.plugin.json +1 -1
- package/package.json +16 -7
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@betrue/openclaw-claude-code-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"build": "esbuild index.ts --bundle --platform=node --target=node18 --format=cjs --outfile=dist/index.js --minify --external:openclaw --external:openclaw/plugin-sdk"
|
|
7
|
+
"build": "esbuild index.ts --bundle --platform=node --target=node18 --format=cjs --outfile=dist/index.js --minify --external:openclaw --external:openclaw/plugin-sdk --external:@anthropic-ai/claude-agent-sdk"
|
|
8
8
|
},
|
|
9
9
|
"openclaw": {
|
|
10
10
|
"extensions": [
|
|
@@ -16,10 +16,11 @@
|
|
|
16
16
|
"openclaw.plugin.json",
|
|
17
17
|
"README.md"
|
|
18
18
|
],
|
|
19
|
-
"dependencies": {
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@anthropic-ai/claude-agent-sdk": "0.2.37"
|
|
21
|
+
},
|
|
20
22
|
"devDependencies": {
|
|
21
23
|
"esbuild": "^0.27.3",
|
|
22
|
-
"@anthropic-ai/claude-agent-sdk": "0.2.37",
|
|
23
24
|
"@sinclair/typebox": "^0.34.48",
|
|
24
25
|
"nanoid": "^3.3.7"
|
|
25
26
|
},
|
|
@@ -29,7 +30,14 @@
|
|
|
29
30
|
"claude",
|
|
30
31
|
"claude-code",
|
|
31
32
|
"coding-agent",
|
|
32
|
-
"ai"
|
|
33
|
+
"ai",
|
|
34
|
+
"anthropic",
|
|
35
|
+
"agent",
|
|
36
|
+
"code-generation",
|
|
37
|
+
"automation",
|
|
38
|
+
"cli",
|
|
39
|
+
"background-process",
|
|
40
|
+
"developer-tools"
|
|
33
41
|
],
|
|
34
42
|
"repository": {
|
|
35
43
|
"type": "git",
|
|
@@ -43,5 +51,6 @@
|
|
|
43
51
|
"author": "Betrue <hello@betrue.fr>",
|
|
44
52
|
"publishConfig": {
|
|
45
53
|
"access": "public"
|
|
46
|
-
}
|
|
47
|
-
|
|
54
|
+
},
|
|
55
|
+
"description": "An OpenClaw plugin that orchestrates Claude Code sessions as managed background processes. Launch, monitor, and control Claude coding agents directly from your AI gateway."
|
|
56
|
+
}
|