clawborrator-cli 0.0.59 → 0.2.0
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 +10 -10
- package/dist-bundled/claw.cjs +580 -580
- package/package.json +5 -8
package/README.md
CHANGED
|
@@ -200,10 +200,9 @@ claw logout # revokes the session token + cle
|
|
|
200
200
|
|
|
201
201
|
## `claw session attach` — the TUI
|
|
202
202
|
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
channel that doesn't pollute Claude's context.
|
|
203
|
+
Multiple operators attach to the same Claude Code session, see each
|
|
204
|
+
other's prompts in real time, race on tool-permission approvals, and
|
|
205
|
+
chat in a side channel that stays out of Claude's context.
|
|
207
206
|
|
|
208
207
|
```
|
|
209
208
|
$ claw session attach @backend
|
|
@@ -276,15 +275,16 @@ peer.
|
|
|
276
275
|
## Where to look next
|
|
277
276
|
|
|
278
277
|
- **Hub home & demos:** <https://next.clawborrator.com/>
|
|
279
|
-
- **REST API (OpenAPI):** <https://next.clawborrator.com/docs>
|
|
280
|
-
- **WebSocket (AsyncAPI):** <https://next.clawborrator.com/ws-docs>
|
|
278
|
+
- **REST API (OpenAPI):** <https://next.clawborrator.com/api/http-docs>
|
|
279
|
+
- **WebSocket (AsyncAPI):** <https://next.clawborrator.com/api/ws-docs>
|
|
281
280
|
- **Webhook reference:** <https://next.clawborrator.com/demos/webhooks/>
|
|
282
281
|
- **A2A bridge reference:** <https://next.clawborrator.com/demos/a2a-docs/>
|
|
283
|
-
- **
|
|
282
|
+
- **CLI source / issues:** <https://github.com/clawborrator/cli_v1>
|
|
283
|
+
- **Hub source:** <https://github.com/clawborrator/hub_v1>
|
|
284
284
|
|
|
285
|
-
The CLI
|
|
286
|
-
|
|
287
|
-
from
|
|
285
|
+
The CLI is a thin shell over the hub's REST + WebSocket surface — anything
|
|
286
|
+
`claw` does you can do directly from any HTTP client. Wire types live in
|
|
287
|
+
`src/shared/` (vendored from the hub repo's `shared/` workspace).
|
|
288
288
|
|
|
289
289
|
---
|
|
290
290
|
|