cotal-ai 0.6.0 → 0.8.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/dist/cotal.js +1 -0
- package/package.json +10 -9
package/dist/cotal.js
CHANGED
|
@@ -13,6 +13,7 @@ import "@cotal-ai/connector-claude-code"; // registers the `claude` connector th
|
|
|
13
13
|
import "@cotal-ai/connector-opencode"; // registers the `opencode` connector (native in-process plugin)
|
|
14
14
|
import "@cotal-ai/connector-hermes"; // registers the `hermes` connector (Nous Research gateway as a mesh peer)
|
|
15
15
|
import "@cotal-ai/cmux"; // opt into the cmux integration — registers the `cmux` runtime + TerminalLayout providers
|
|
16
|
+
import "@cotal-ai/tmux"; // opt into the tmux integration — registers the `tmux` runtime + TerminalLayout providers
|
|
16
17
|
import { claudeConnector } from "@cotal-ai/connector-claude-code";
|
|
17
18
|
import { registry } from "@cotal-ai/core";
|
|
18
19
|
// A CLI must exit quietly when its stdout is closed early — piped to `head`, a pager that quits,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cotal-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Cotal — lateral agent coordination over NATS. Run `npx cotal-ai` for the CLI.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -26,14 +26,15 @@
|
|
|
26
26
|
"node": ">=20"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@cotal-ai/
|
|
30
|
-
"@cotal-ai/
|
|
31
|
-
"@cotal-ai/
|
|
32
|
-
"@cotal-ai/cmux": "0.
|
|
33
|
-
"@cotal-ai/connector-
|
|
34
|
-
"@cotal-ai/
|
|
35
|
-
"@cotal-ai/delivery": "0.
|
|
36
|
-
"@cotal-ai/
|
|
29
|
+
"@cotal-ai/cli": "0.8.0",
|
|
30
|
+
"@cotal-ai/connector-claude-code": "0.8.0",
|
|
31
|
+
"@cotal-ai/tmux": "0.8.0",
|
|
32
|
+
"@cotal-ai/cmux": "0.8.0",
|
|
33
|
+
"@cotal-ai/connector-hermes": "0.8.0",
|
|
34
|
+
"@cotal-ai/connector-opencode": "0.8.0",
|
|
35
|
+
"@cotal-ai/delivery": "0.8.0",
|
|
36
|
+
"@cotal-ai/core": "0.8.0",
|
|
37
|
+
"@cotal-ai/manager": "0.8.0"
|
|
37
38
|
},
|
|
38
39
|
"files": [
|
|
39
40
|
"dist",
|