@teamclaws/teamclaw 2026.3.21 → 2026.3.25
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 +19 -1
- package/api.ts +2 -2
- package/cli.mjs +1185 -0
- package/index.ts +24 -7
- package/openclaw.plugin.json +326 -2
- package/package.json +6 -9
- package/src/config.ts +29 -1
- package/src/controller/controller-service.ts +1 -0
- package/src/controller/controller-tools.ts +12 -1
- package/src/controller/http-server.ts +355 -10
- package/src/controller/local-worker-manager.ts +5 -3
- package/src/controller/prompt-injector.ts +6 -1
- package/src/controller/websocket.ts +1 -0
- package/src/controller/worker-provisioning.ts +93 -4
- package/src/install-defaults.ts +1 -0
- package/src/openclaw-workspace.ts +57 -1
- package/src/roles.ts +42 -7
- package/src/state.ts +6 -0
- package/src/task-executor.ts +1 -0
- package/src/types.ts +53 -1
- package/src/ui/app.js +138 -2
- package/src/ui/index.html +10 -0
- package/src/ui/style.css +148 -0
- package/src/worker/http-handler.ts +4 -0
- package/src/worker/prompt-injector.ts +1 -0
- package/src/worker/skill-installer.ts +302 -0
package/README.md
CHANGED
|
@@ -12,7 +12,23 @@ It supports:
|
|
|
12
12
|
|
|
13
13
|
## Install
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
For the easiest guided setup, run:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx -y @teamclaws/teamclaw install
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
This installer can:
|
|
22
|
+
|
|
23
|
+
- install/update the TeamClaw plugin in OpenClaw
|
|
24
|
+
- detect your local `openclaw.json`
|
|
25
|
+
- let you choose the installation mode
|
|
26
|
+
- let you choose a model from the models already defined in OpenClaw
|
|
27
|
+
- let you choose the OpenClaw workspace directory
|
|
28
|
+
- prefill Docker/Kubernetes provisioning with the published TeamClaw runtime image
|
|
29
|
+
- prefill Docker workspace persistence with a named volume and Kubernetes persistence with a PVC name
|
|
30
|
+
|
|
31
|
+
If you only want to install the plugin manually, use:
|
|
16
32
|
|
|
17
33
|
```bash
|
|
18
34
|
openclaw plugins install @teamclaws/teamclaw
|
|
@@ -20,6 +36,8 @@ openclaw plugins install @teamclaws/teamclaw
|
|
|
20
36
|
|
|
21
37
|
Then enable and configure TeamClaw in your `openclaw.json`.
|
|
22
38
|
|
|
39
|
+
The published TeamClaw runtime image also preinstalls the `clawhub` CLI, so containerized workers can discover and install skills from ClawHub without an extra bootstrap step.
|
|
40
|
+
|
|
23
41
|
## Recommended first setup
|
|
24
42
|
|
|
25
43
|
For a first-time setup, the safest path is:
|
package/api.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { emptyPluginConfigSchema } from "openclaw/plugin-sdk/
|
|
1
|
+
export { definePluginEntry, emptyPluginConfigSchema } from "openclaw/plugin-sdk/plugin-entry";
|
|
2
2
|
export type {
|
|
3
3
|
AnyAgentTool,
|
|
4
4
|
OpenClawPluginApi,
|
|
@@ -7,4 +7,4 @@ export type {
|
|
|
7
7
|
OpenClawPluginToolContext,
|
|
8
8
|
OpenClawPluginToolFactory,
|
|
9
9
|
PluginLogger,
|
|
10
|
-
} from "openclaw/plugin-sdk/
|
|
10
|
+
} from "openclaw/plugin-sdk/plugin-entry";
|