cotal-ai 0.3.1 → 0.4.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 +2 -1
- package/dist/cotal.js +2 -2
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -4,7 +4,8 @@ The `cotal` CLI for **Cotal** — a standard wire interface for AI agents to coo
|
|
|
4
4
|
as lateral peers in a shared pub/sub space (NATS + JetStream).
|
|
5
5
|
|
|
6
6
|
```bash
|
|
7
|
-
npx cotal-ai #
|
|
7
|
+
npx cotal-ai # show CLI help
|
|
8
|
+
npx cotal-ai setup # guided first-run setup: NATS, mesh, agent connectors
|
|
8
9
|
npx cotal-ai up # start a local mesh
|
|
9
10
|
npx cotal-ai join --space demo --name you
|
|
10
11
|
```
|
package/dist/cotal.js
CHANGED
|
@@ -17,6 +17,6 @@ import { registry } from "@cotal-ai/core";
|
|
|
17
17
|
// The manager's default agent type is "cotal"; make it a real Claude coder so a bare
|
|
18
18
|
// cotal_spawn / `cotal start --name x` (no --agent) brings up a Claude Code session.
|
|
19
19
|
registry.register({ ...claudeConnector, name: "cotal" });
|
|
20
|
-
// Bare `
|
|
21
|
-
const argv = process.argv.
|
|
20
|
+
// Bare `cotal` prints help; explicit `cotal setup` runs guided setup.
|
|
21
|
+
const argv = process.argv.slice(2);
|
|
22
22
|
await runCli(registry, argv);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cotal-ai",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Cotal — lateral agent coordination over NATS. Run `npx cotal-ai` for
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Cotal — lateral agent coordination over NATS. Run `npx cotal-ai` for the CLI.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"cotal",
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"node": ">=20"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@cotal-ai/cli": "0.
|
|
30
|
-
"@cotal-ai/
|
|
31
|
-
"@cotal-ai/
|
|
32
|
-
"@cotal-ai/
|
|
33
|
-
"@cotal-ai/
|
|
34
|
-
"@cotal-ai/
|
|
35
|
-
"@cotal-ai/
|
|
29
|
+
"@cotal-ai/cli": "0.4.0",
|
|
30
|
+
"@cotal-ai/connector-claude-code": "0.4.0",
|
|
31
|
+
"@cotal-ai/core": "0.4.0",
|
|
32
|
+
"@cotal-ai/cmux": "0.4.0",
|
|
33
|
+
"@cotal-ai/manager": "0.4.0",
|
|
34
|
+
"@cotal-ai/connector-hermes": "0.4.0",
|
|
35
|
+
"@cotal-ai/connector-opencode": "0.4.0"
|
|
36
36
|
},
|
|
37
37
|
"files": [
|
|
38
38
|
"dist",
|