cotal-ai 0.11.0 → 0.11.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.
Files changed (2) hide show
  1. package/dist/cotal.js +3 -4
  2. package/package.json +11 -13
package/dist/cotal.js CHANGED
@@ -16,8 +16,6 @@ import "@cotal-ai/auth"; // self-registers login / logout — per-user IdP sessi
16
16
  import "@cotal-ai/connector-claude-code"; // registers the `claude` connector that spawn / start resolve
17
17
  import "@cotal-ai/connector-opencode"; // registers the `opencode` connector (native in-process plugin)
18
18
  import "@cotal-ai/connector-hermes"; // registers the `hermes` connector (Nous Research gateway as a mesh peer)
19
- import "@cotal-ai/cmux"; // opt into the cmux integration — registers the `cmux` runtime + TerminalLayout providers
20
- import "@cotal-ai/tmux"; // opt into the tmux integration — registers the `tmux` runtime + TerminalLayout providers
21
19
  import { claudeConnector } from "@cotal-ai/connector-claude-code";
22
20
  import { registry } from "@cotal-ai/core";
23
21
  // A CLI must exit quietly when its stdout is closed early — piped to `head`, a pager that quits,
@@ -35,7 +33,8 @@ process.stdout.on("error", (e) => {
35
33
  // default rides the MANAGER side of the control plane, not the removed CLI verb.
36
34
  registry.register({ ...claudeConnector, name: "cotal" });
37
35
  // Bare `cotal` prints help; explicit `cotal setup` runs guided setup. The published binary is
38
- // the ONE composition root that loads operator-installed extensions (`cotal ext add …`) —
39
- // library roots keep the explicit-import model.
36
+ // the ONE composition root that loads operator-installed extensions (`cotal ext add …`) — commands,
37
+ // runtimes, and local process components all self-register from those packages. Library roots keep
38
+ // the explicit-import model.
40
39
  const argv = process.argv.slice(2);
41
40
  await runCli(registry, argv, { extensions: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cotal-ai",
3
- "version": "0.11.0",
3
+ "version": "0.11.2",
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,18 +26,16 @@
26
26
  "node": ">=20"
27
27
  },
28
28
  "dependencies": {
29
- "@cotal-ai/cli": "0.11.0",
30
- "@cotal-ai/auth": "0.11.0",
31
- "@cotal-ai/connector-hermes": "0.11.0",
32
- "@cotal-ai/tmux": "0.11.0",
33
- "@cotal-ai/connector-opencode": "0.11.0",
34
- "@cotal-ai/core": "0.11.0",
35
- "@cotal-ai/connector-claude-code": "0.11.0",
36
- "@cotal-ai/manager": "0.11.0",
37
- "@cotal-ai/delivery": "0.11.0",
38
- "@cotal-ai/cmux": "0.11.0",
39
- "@cotal-ai/workspace": "0.11.0",
40
- "@cotal-ai/connector-core": "0.11.0"
29
+ "@cotal-ai/auth": "0.11.2",
30
+ "@cotal-ai/cli": "0.11.2",
31
+ "@cotal-ai/connector-hermes": "0.11.2",
32
+ "@cotal-ai/connector-claude-code": "0.11.2",
33
+ "@cotal-ai/connector-opencode": "0.11.2",
34
+ "@cotal-ai/core": "0.11.2",
35
+ "@cotal-ai/delivery": "0.11.2",
36
+ "@cotal-ai/manager": "0.11.2",
37
+ "@cotal-ai/workspace": "0.11.2",
38
+ "@cotal-ai/connector-core": "0.11.2"
41
39
  },
42
40
  "files": [
43
41
  "dist",