@shadowob/connector 1.1.7 → 1.1.9
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 +17 -5
- package/dist/cli.js +9121 -41
- package/dist/index.cjs +189 -1
- package/dist/index.d.cts +24 -1
- package/dist/index.d.ts +24 -1
- package/dist/index.js +184 -1
- package/hermes-shadowob-plugin/adapter.py +308 -13
- package/hermes-shadowob-plugin/shadow_sdk.py +100 -3
- package/package.json +1 -1
- package/skills/shadowob/SKILL.md +35 -1
package/README.md
CHANGED
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
# Shadow Connector
|
|
2
2
|
|
|
3
|
-
Connection helpers for attaching
|
|
3
|
+
Connection helpers for attaching Shadow Buddies to local OpenClaw and CLI runtimes.
|
|
4
4
|
|
|
5
|
-
The package exports pure plan builders for app UIs and a `shadowob-connector` CLI for terminal setup.
|
|
5
|
+
The package exports pure plan builders for legacy app UIs and a `shadowob-connector` CLI for terminal setup.
|
|
6
6
|
|
|
7
7
|
## CLI
|
|
8
8
|
|
|
9
|
+
Run the daemon flow used by the Buddy creation panel:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx @shadowob/connector@latest --daemon \
|
|
13
|
+
--server-url https://shadowob.com \
|
|
14
|
+
--api-key sk_machine_...
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
The daemon connects this computer once, scans supported runtimes, sends heartbeats to Shadow, claims Buddy setup jobs, and configures the selected runtime. Supported runtime detection currently includes OpenClaw, Hermes Agent, Claude Code, Codex CLI, OpenCode, Gemini CLI, Cursor CLI, Kimi CLI, Copilot CLI, and Antigravity CLI.
|
|
18
|
+
|
|
19
|
+
Use `--once` to run one heartbeat/job pass for debugging, and `--poll-interval-ms` to tune the loop interval.
|
|
20
|
+
|
|
9
21
|
Print a plan:
|
|
10
22
|
|
|
11
23
|
```bash
|
|
@@ -48,7 +60,7 @@ npx @shadowob/connector@latest update --target cc-connect --server-url https://s
|
|
|
48
60
|
on `PATH`, the connector writes a `~/.local/bin/shadowob` shim; it installs
|
|
49
61
|
the official Shadow skill files into common agent skill directories; and it
|
|
50
62
|
writes a Buddy profile to `~/.shadowob/shadowob.config.json`.
|
|
51
|
-
- OpenClaw JSON defaults to `~/.
|
|
63
|
+
- OpenClaw JSON defaults to `~/.openclaw/openclaw.json` or `--openclaw-config`.
|
|
52
64
|
- Hermes updates `~/.hermes/.env` and merges `~/.hermes/config.yaml`.
|
|
53
65
|
- cc-connect merges the ShadowOB platform into `~/.cc-connect/config.toml`.
|
|
54
66
|
|
|
@@ -198,6 +210,6 @@ The tests cover plan generation, config merging for OpenClaw/Hermes/cc-connect,
|
|
|
198
210
|
|
|
199
211
|
## Capability Coverage
|
|
200
212
|
|
|
201
|
-
- OpenClaw: channel messages, DMs, threads, mentions, attachments/images, interactive components, slash commands, online status, typing/activity, reactions, edits/deletes, status checks, usage/cost telemetry, multi-Agent Buddy binding, Shadow CLI login/notifications, official skills, cron tasks.
|
|
202
|
-
- Hermes Agent: channel messages, DMs, threads, attachments/images, interactive components, slash commands, online status, typing/activity, cron delivery, status checks, usage/cost telemetry, Shadow CLI login/notifications, official skills.
|
|
213
|
+
- OpenClaw: channel messages, DMs, threads, mentions, attachments/images/voice messages, voice playback/transcript metadata, interactive components, slash commands, online status, typing/activity, reactions, edits/deletes, status checks, usage/cost telemetry, multi-Agent Buddy binding, Shadow CLI login/notifications, official skills, cron tasks.
|
|
214
|
+
- Hermes Agent: channel messages, DMs, threads, attachments/images/voice messages, voice playback/transcript metadata, interactive components, slash commands, online status, typing/activity, cron delivery, status checks, usage/cost telemetry, Shadow CLI login/notifications, official skills.
|
|
203
215
|
- cc-connect: channel messages, DMs, attachments/images, interactive components, slash commands, typing, streaming previews, forms, status checks, usage/cost telemetry, multi-Agent Buddy binding, Shadow CLI login/notifications.
|