@shadowob/connector 1.1.6 → 1.1.7
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 +22 -2
- package/dist/cli.js +650 -22
- package/dist/index.cjs +10 -5
- package/dist/index.js +10 -5
- package/package.json +2 -1
- package/skills/shadowob/SKILL.md +451 -0
package/README.md
CHANGED
|
@@ -24,10 +24,30 @@ npx @shadowob/connector@latest connect \
|
|
|
24
24
|
--token buddy-token
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
Use `--dry-run` to preview writes and commands. Use `--json` with `plan` when embedding
|
|
27
|
+
`--server-url` defaults to `https://shadowob.com`. Use `--dry-run` to preview writes and commands. Use `--json` with `plan`, `scan`, `status`, or `doctor` when embedding output in another tool.
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
Operational commands:
|
|
30
30
|
|
|
31
|
+
```bash
|
|
32
|
+
npx @shadowob/connector@latest scan
|
|
33
|
+
npx @shadowob/connector@latest status --target cc-connect
|
|
34
|
+
npx @shadowob/connector@latest doctor --target hermes
|
|
35
|
+
npx @shadowob/connector@latest fix --target openclaw --server-url https://shadowob.com --token buddy-token
|
|
36
|
+
npx @shadowob/connector@latest update --target cc-connect --server-url https://shadowob.com --token buddy-token
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
- `scan` probes local OpenClaw, Hermes Agent, and cc-connect installs/config files, then prints connection instructions for each target.
|
|
40
|
+
- `status` checks local connector health and exits successfully.
|
|
41
|
+
- `doctor` prints the same checks with fix guidance and exits non-zero when required config is broken.
|
|
42
|
+
- `fix` reinstalls common Shadow CLI/skill assets and repairs the target connector config.
|
|
43
|
+
- `update` refreshes the same assets/config and installs target runtime dependencies by default.
|
|
44
|
+
|
|
45
|
+
`connect`, `fix`, and `update` merge existing configuration instead of replacing it:
|
|
46
|
+
|
|
47
|
+
- Shadow CLI access is installed/configured for the Buddy: if `shadowob` is not
|
|
48
|
+
on `PATH`, the connector writes a `~/.local/bin/shadowob` shim; it installs
|
|
49
|
+
the official Shadow skill files into common agent skill directories; and it
|
|
50
|
+
writes a Buddy profile to `~/.shadowob/shadowob.config.json`.
|
|
31
51
|
- OpenClaw JSON defaults to `~/.shadowob/openclaw.json` or `--openclaw-config`.
|
|
32
52
|
- Hermes updates `~/.hermes/.env` and merges `~/.hermes/config.yaml`.
|
|
33
53
|
- cc-connect merges the ShadowOB platform into `~/.cc-connect/config.toml`.
|