@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 CHANGED
@@ -12,7 +12,23 @@ It supports:
12
12
 
13
13
  ## Install
14
14
 
15
- If you already have OpenClaw installed, add the plugin with:
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/core";
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/core";
10
+ } from "openclaw/plugin-sdk/plugin-entry";