@betrue/openclaw-claude-code-plugin 1.0.3 → 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/package.json +12 -4
package/README.md
CHANGED
|
@@ -6,6 +6,14 @@ Claude Code Plugin lets you launch, monitor, and interact with multiple Claude C
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## Demo
|
|
10
|
+
|
|
11
|
+
[](https://youtube.com/shorts/vbX1Y0Nx4Tc)
|
|
12
|
+
|
|
13
|
+
*Orchestrating two parallel Claude Code agents from Telegram — building an X clone and an Instagram clone simultaneously.*
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
9
17
|
## Table of Contents
|
|
10
18
|
|
|
11
19
|
- [Features](#features)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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": {
|
|
@@ -30,7 +30,14 @@
|
|
|
30
30
|
"claude",
|
|
31
31
|
"claude-code",
|
|
32
32
|
"coding-agent",
|
|
33
|
-
"ai"
|
|
33
|
+
"ai",
|
|
34
|
+
"anthropic",
|
|
35
|
+
"agent",
|
|
36
|
+
"code-generation",
|
|
37
|
+
"automation",
|
|
38
|
+
"cli",
|
|
39
|
+
"background-process",
|
|
40
|
+
"developer-tools"
|
|
34
41
|
],
|
|
35
42
|
"repository": {
|
|
36
43
|
"type": "git",
|
|
@@ -44,5 +51,6 @@
|
|
|
44
51
|
"author": "Betrue <hello@betrue.fr>",
|
|
45
52
|
"publishConfig": {
|
|
46
53
|
"access": "public"
|
|
47
|
-
}
|
|
48
|
-
|
|
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
|
+
}
|