@cordfuse/crosstalkd 7.0.0-alpha.1 → 7.0.0-alpha.2
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/GUIDE-PROMPTS.md +4 -2
- package/package.json +1 -1
package/GUIDE-PROMPTS.md
CHANGED
|
@@ -4,10 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
You don't have to memorise the `crosstalk` CLI to use Crosstalk. You can just **talk to it.**
|
|
6
6
|
|
|
7
|
-
The interactive Crosstalk pattern in v7: **`cd` into a transport directory and run `crosstalk chat
|
|
7
|
+
The interactive Crosstalk pattern in v7: **`cd` into a transport directory and run `crosstalk chat --agent <name>`.** That opens a PTY-attached `docker exec` session into the engine container running the named CLI. The transport's `PROTOCOL.md` orients the agent — it learns the layout, the six core nouns, and which `crosstalkd` commands (the in-container engine) it can run on your behalf. From there you speak in plain language; the agent translates into commands, waits for answers, and tells you what came back.
|
|
8
|
+
|
|
9
|
+
`--agent` is required — containers can host multiple installed CLIs, and there's no implicit default.
|
|
8
10
|
|
|
9
11
|
```sh
|
|
10
|
-
cd ~/my-transport && crosstalk chat
|
|
12
|
+
cd ~/my-transport && crosstalk chat --agent claude
|
|
11
13
|
> ask sonnet on cachy to summarise report.md
|
|
12
14
|
```
|
|
13
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cordfuse/crosstalkd",
|
|
3
|
-
"version": "7.0.0-alpha.
|
|
3
|
+
"version": "7.0.0-alpha.2",
|
|
4
4
|
"description": "Crosstalk daemon — the engine that runs inside the crosstalk-server container. Operators interact via @cordfuse/crosstalk on the host.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|