cotal-ai 0.29.0 → 0.29.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cotal-ai",
3
- "version": "0.29.0",
3
+ "version": "0.29.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": [
@@ -33,26 +33,26 @@
33
33
  "node": ">=22"
34
34
  },
35
35
  "dependencies": {
36
- "@cotal-ai/cli": "0.29.0",
37
- "@cotal-ai/connector-core": "0.29.0",
38
- "@cotal-ai/auth": "0.29.0",
39
- "@cotal-ai/core": "0.29.0",
40
- "@cotal-ai/delivery": "0.29.0",
41
- "@cotal-ai/manager": "0.29.0",
42
- "@cotal-ai/workspace": "0.29.0"
36
+ "@cotal-ai/auth": "0.29.2",
37
+ "@cotal-ai/cli": "0.29.2",
38
+ "@cotal-ai/connector-core": "0.29.2",
39
+ "@cotal-ai/core": "0.29.2",
40
+ "@cotal-ai/delivery": "0.29.2",
41
+ "@cotal-ai/manager": "0.29.2",
42
+ "@cotal-ai/workspace": "0.29.2"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@nats-io/jetstream": "^3.4.0",
46
46
  "@nats-io/transport-node": "^3.4.0",
47
47
  "typescript": "^5.9.3",
48
- "@cotal-ai/connector-claude-code": "0.29.0",
49
- "@cotal-ai/connector-hermes": "0.29.0",
50
- "@cotal-ai/connector-codex": "0.29.0",
51
- "@cotal-ai/connector-opencode": "0.29.0",
52
- "@cotal-ai/connector-jcode": "0.29.0",
53
- "@cotal-ai/pi": "0.29.0",
48
+ "@cotal-ai/connector-jcode": "0.29.2",
49
+ "@cotal-ai/connector-hermes": "0.29.2",
50
+ "@cotal-ai/connector-codex": "0.29.2",
51
+ "@cotal-ai/pi": "0.29.2",
52
+ "@cotal-ai/connector-claude-code": "0.29.2",
54
53
  "@cotal-ai/smoke-kit": "0.0.0",
55
- "@cotal-ai/web": "0.29.0"
54
+ "@cotal-ai/connector-opencode": "0.29.2",
55
+ "@cotal-ai/web": "0.29.2"
56
56
  },
57
57
  "files": [
58
58
  "dist",
@@ -41153,7 +41153,7 @@ config(en_default());
41153
41153
 
41154
41154
  // ../connector-core/dist/docs-bundle.generated.js
41155
41155
  var DOCS_BUNDLE = {
41156
- "version": "0.29.0",
41156
+ "version": "0.29.2",
41157
41157
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
41158
41158
  "pages": [
41159
41159
  {
@@ -14853,7 +14853,7 @@ import { isConcreteChannel as isConcreteChannel3, channelInAllow as channelInAll
14853
14853
 
14854
14854
  // ../connector-core/dist/docs-bundle.generated.js
14855
14855
  var DOCS_BUNDLE = {
14856
- "version": "0.29.0",
14856
+ "version": "0.29.2",
14857
14857
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
14858
14858
  "pages": [
14859
14859
  {
@@ -64198,6 +64198,9 @@ function isPublishPermissionDenied(e) {
64198
64198
  function wsServers(servers) {
64199
64199
  return /^wss?:\/\//i.test((servers.split(",")[0] ?? "").trim());
64200
64200
  }
64201
+ function defaultProbeTimeoutMs(servers) {
64202
+ return wsServers(servers) ? 5e3 : 1e3;
64203
+ }
64201
64204
  function dialerFor(servers) {
64202
64205
  if (!wsServers(servers))
64203
64206
  return import_transport_node14.connect;
@@ -64243,7 +64246,7 @@ function tcpDialable(server, timeoutMs) {
64243
64246
  });
64244
64247
  }
64245
64248
  async function probeConnect(server = DEFAULT_SERVER, opts = {}) {
64246
- const timeoutMs = opts.timeoutMs ?? 1e3;
64249
+ const timeoutMs = opts.timeoutMs ?? defaultProbeTimeoutMs(server);
64247
64250
  const started = Date.now();
64248
64251
  if (!await tcpDialable(server, timeoutMs))
64249
64252
  return classifyProbeFailure(void 0, opts);
@@ -67848,7 +67851,7 @@ var import_node_child_process2 = require("node:child_process");
67848
67851
 
67849
67852
  // ../connector-core/dist/docs-bundle.generated.js
67850
67853
  var DOCS_BUNDLE = {
67851
- "version": "0.29.0",
67854
+ "version": "0.29.2",
67852
67855
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
67853
67856
  "pages": [
67854
67857
  {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cotal-ai/connector-claude-code",
3
3
  "description": "Cotal connector for Claude Code: an installed plugin that joins a session to the mesh.",
4
- "version": "0.29.0",
4
+ "version": "0.29.2",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -43827,6 +43827,9 @@ function isPublishPermissionDenied(e) {
43827
43827
  function wsServers(servers) {
43828
43828
  return /^wss?:\/\//i.test((servers.split(",")[0] ?? "").trim());
43829
43829
  }
43830
+ function defaultProbeTimeoutMs(servers) {
43831
+ return wsServers(servers) ? 5e3 : 1e3;
43832
+ }
43830
43833
  function dialerFor(servers) {
43831
43834
  if (!wsServers(servers))
43832
43835
  return import_transport_node14.connect;
@@ -43872,7 +43875,7 @@ function tcpDialable(server, timeoutMs) {
43872
43875
  });
43873
43876
  }
43874
43877
  async function probeConnect(server = DEFAULT_SERVER, opts = {}) {
43875
- const timeoutMs = opts.timeoutMs ?? 1e3;
43878
+ const timeoutMs = opts.timeoutMs ?? defaultProbeTimeoutMs(server);
43876
43879
  const started = Date.now();
43877
43880
  if (!await tcpDialable(server, timeoutMs))
43878
43881
  return classifyProbeFailure(void 0, opts);
@@ -62056,7 +62059,7 @@ config(en_default());
62056
62059
 
62057
62060
  // ../connector-core/dist/docs-bundle.generated.js
62058
62061
  var DOCS_BUNDLE = {
62059
- "version": "0.29.0",
62062
+ "version": "0.29.2",
62060
62063
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
62061
62064
  "pages": [
62062
62065
  {
@@ -14831,7 +14831,7 @@ import { isConcreteChannel as isConcreteChannel3, channelInAllow as channelInAll
14831
14831
 
14832
14832
  // ../connector-core/dist/docs-bundle.generated.js
14833
14833
  var DOCS_BUNDLE = {
14834
- "version": "0.29.0",
14834
+ "version": "0.29.2",
14835
14835
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
14836
14836
  "pages": [
14837
14837
  {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cotal-ai/connector-codex",
3
3
  "description": "Cotal connector for OpenAI Codex: a host-mode peer driving codex app-server, with Codex's own TUI attached and the cotal_* tools served over a loopback MCP endpoint.",
4
- "version": "0.29.0",
4
+ "version": "0.29.2",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -14809,7 +14809,7 @@ import { isConcreteChannel as isConcreteChannel3, channelInAllow as channelInAll
14809
14809
 
14810
14810
  // ../connector-core/dist/docs-bundle.generated.js
14811
14811
  var DOCS_BUNDLE = {
14812
- "version": "0.29.0",
14812
+ "version": "0.29.2",
14813
14813
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
14814
14814
  "pages": [
14815
14815
  {
@@ -39574,6 +39574,9 @@ function isPublishPermissionDenied(e) {
39574
39574
  function wsServers(servers) {
39575
39575
  return /^wss?:\/\//i.test((servers.split(",")[0] ?? "").trim());
39576
39576
  }
39577
+ function defaultProbeTimeoutMs(servers) {
39578
+ return wsServers(servers) ? 5e3 : 1e3;
39579
+ }
39577
39580
  function dialerFor(servers) {
39578
39581
  if (!wsServers(servers))
39579
39582
  return import_transport_node14.connect;
@@ -39619,7 +39622,7 @@ function tcpDialable(server, timeoutMs) {
39619
39622
  });
39620
39623
  }
39621
39624
  async function probeConnect(server = DEFAULT_SERVER, opts = {}) {
39622
- const timeoutMs = opts.timeoutMs ?? 1e3;
39625
+ const timeoutMs = opts.timeoutMs ?? defaultProbeTimeoutMs(server);
39623
39626
  const started = Date.now();
39624
39627
  if (!await tcpDialable(server, timeoutMs))
39625
39628
  return classifyProbeFailure(void 0, opts);
@@ -55873,7 +55876,7 @@ config(en_default());
55873
55876
 
55874
55877
  // ../connector-core/dist/docs-bundle.generated.js
55875
55878
  var DOCS_BUNDLE = {
55876
- "version": "0.29.0",
55879
+ "version": "0.29.2",
55877
55880
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
55878
55881
  "pages": [
55879
55882
  {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cotal-ai/connector-hermes",
3
3
  "description": "Cotal connector for the Hermes (Nous Research) agent.",
4
- "version": "0.29.0",
4
+ "version": "0.29.2",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -39568,6 +39568,9 @@ function isPublishPermissionDenied(e) {
39568
39568
  function wsServers(servers) {
39569
39569
  return /^wss?:\/\//i.test((servers.split(",")[0] ?? "").trim());
39570
39570
  }
39571
+ function defaultProbeTimeoutMs(servers) {
39572
+ return wsServers(servers) ? 5e3 : 1e3;
39573
+ }
39571
39574
  function dialerFor(servers) {
39572
39575
  if (!wsServers(servers))
39573
39576
  return import_transport_node14.connect;
@@ -39613,7 +39616,7 @@ function tcpDialable(server, timeoutMs) {
39613
39616
  });
39614
39617
  }
39615
39618
  async function probeConnect(server = DEFAULT_SERVER, opts = {}) {
39616
- const timeoutMs = opts.timeoutMs ?? 1e3;
39619
+ const timeoutMs = opts.timeoutMs ?? defaultProbeTimeoutMs(server);
39617
39620
  const started = Date.now();
39618
39621
  if (!await tcpDialable(server, timeoutMs))
39619
39622
  return classifyProbeFailure(void 0, opts);
@@ -55768,7 +55771,7 @@ config(en_default());
55768
55771
 
55769
55772
  // ../connector-core/dist/docs-bundle.generated.js
55770
55773
  var DOCS_BUNDLE = {
55771
- "version": "0.29.0",
55774
+ "version": "0.29.2",
55772
55775
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
55773
55776
  "pages": [
55774
55777
  {
@@ -41270,6 +41270,9 @@ function isPublishPermissionDenied(e) {
41270
41270
  function wsServers(servers) {
41271
41271
  return /^wss?:\/\//i.test((servers.split(",")[0] ?? "").trim());
41272
41272
  }
41273
+ function defaultProbeTimeoutMs(servers) {
41274
+ return wsServers(servers) ? 5e3 : 1e3;
41275
+ }
41273
41276
  function dialerFor(servers) {
41274
41277
  if (!wsServers(servers))
41275
41278
  return import_transport_node14.connect;
@@ -41315,7 +41318,7 @@ function tcpDialable(server, timeoutMs) {
41315
41318
  });
41316
41319
  }
41317
41320
  async function probeConnect(server = DEFAULT_SERVER, opts = {}) {
41318
- const timeoutMs = opts.timeoutMs ?? 1e3;
41321
+ const timeoutMs = opts.timeoutMs ?? defaultProbeTimeoutMs(server);
41319
41322
  const started = Date.now();
41320
41323
  if (!await tcpDialable(server, timeoutMs))
41321
41324
  return classifyProbeFailure(void 0, opts);
@@ -57735,7 +57738,7 @@ config(en_default());
57735
57738
 
57736
57739
  // ../connector-core/dist/docs-bundle.generated.js
57737
57740
  var DOCS_BUNDLE = {
57738
- "version": "0.29.0",
57741
+ "version": "0.29.2",
57739
57742
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
57740
57743
  "pages": [
57741
57744
  {
@@ -14830,7 +14830,7 @@ import { isConcreteChannel as isConcreteChannel3, channelInAllow as channelInAll
14830
14830
 
14831
14831
  // ../connector-core/dist/docs-bundle.generated.js
14832
14832
  var DOCS_BUNDLE = {
14833
- "version": "0.29.0",
14833
+ "version": "0.29.2",
14834
14834
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
14835
14835
  "pages": [
14836
14836
  {
@@ -57520,7 +57520,7 @@ import { execFileSync } from "node:child_process";
57520
57520
 
57521
57521
  // ../connector-core/dist/docs-bundle.generated.js
57522
57522
  var DOCS_BUNDLE = {
57523
- "version": "0.29.0",
57523
+ "version": "0.29.2",
57524
57524
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
57525
57525
  "pages": [
57526
57526
  {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cotal-ai/connector-jcode",
3
3
  "description": "Cotal connector for Jcode: a host-mode mesh peer driven through Jcode's Harness API bridge.",
4
- "version": "0.29.0",
4
+ "version": "0.29.2",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -14831,7 +14831,7 @@ import { isConcreteChannel as isConcreteChannel3, channelInAllow as channelInAll
14831
14831
 
14832
14832
  // ../connector-core/dist/docs-bundle.generated.js
14833
14833
  var DOCS_BUNDLE = {
14834
- "version": "0.29.0",
14834
+ "version": "0.29.2",
14835
14835
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
14836
14836
  "pages": [
14837
14837
  {
@@ -39570,6 +39570,9 @@ function isPublishPermissionDenied(e) {
39570
39570
  function wsServers(servers) {
39571
39571
  return /^wss?:\/\//i.test((servers.split(",")[0] ?? "").trim());
39572
39572
  }
39573
+ function defaultProbeTimeoutMs(servers) {
39574
+ return wsServers(servers) ? 5e3 : 1e3;
39575
+ }
39573
39576
  function dialerFor(servers) {
39574
39577
  if (!wsServers(servers))
39575
39578
  return import_transport_node14.connect;
@@ -39615,7 +39618,7 @@ function tcpDialable(server, timeoutMs) {
39615
39618
  });
39616
39619
  }
39617
39620
  async function probeConnect(server = DEFAULT_SERVER, opts = {}) {
39618
- const timeoutMs = opts.timeoutMs ?? 1e3;
39621
+ const timeoutMs = opts.timeoutMs ?? defaultProbeTimeoutMs(server);
39619
39622
  const started = Date.now();
39620
39623
  if (!await tcpDialable(server, timeoutMs))
39621
39624
  return classifyProbeFailure(void 0, opts);
@@ -57618,7 +57621,7 @@ config(en_default());
57618
57621
 
57619
57622
  // ../connector-core/dist/docs-bundle.generated.js
57620
57623
  var DOCS_BUNDLE = {
57621
- "version": "0.29.0",
57624
+ "version": "0.29.2",
57622
57625
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
57623
57626
  "pages": [
57624
57627
  {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cotal-ai/connector-opencode",
3
3
  "description": "Cotal connector for OpenCode: a native in-process plugin that joins a session to the mesh.",
4
- "version": "0.29.0",
4
+ "version": "0.29.2",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -15963,7 +15963,7 @@ import { isConcreteChannel as isConcreteChannel3, channelInAllow as channelInAll
15963
15963
 
15964
15964
  // ../connector-core/dist/docs-bundle.generated.js
15965
15965
  var DOCS_BUNDLE = {
15966
- "version": "0.29.0",
15966
+ "version": "0.29.2",
15967
15967
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
15968
15968
  "pages": [
15969
15969
  {
@@ -39576,6 +39576,9 @@ function isPublishPermissionDenied(e) {
39576
39576
  function wsServers(servers) {
39577
39577
  return /^wss?:\/\//i.test((servers.split(",")[0] ?? "").trim());
39578
39578
  }
39579
+ function defaultProbeTimeoutMs(servers) {
39580
+ return wsServers(servers) ? 5e3 : 1e3;
39581
+ }
39579
39582
  function dialerFor(servers) {
39580
39583
  if (!wsServers(servers))
39581
39584
  return import_transport_node14.connect;
@@ -39621,7 +39624,7 @@ function tcpDialable(server, timeoutMs) {
39621
39624
  });
39622
39625
  }
39623
39626
  async function probeConnect(server = DEFAULT_SERVER, opts = {}) {
39624
- const timeoutMs = opts.timeoutMs ?? 1e3;
39627
+ const timeoutMs = opts.timeoutMs ?? defaultProbeTimeoutMs(server);
39625
39628
  const started = Date.now();
39626
39629
  if (!await tcpDialable(server, timeoutMs))
39627
39630
  return classifyProbeFailure(void 0, opts);
@@ -55878,7 +55881,7 @@ config(en_default());
55878
55881
 
55879
55882
  // ../connector-core/dist/docs-bundle.generated.js
55880
55883
  var DOCS_BUNDLE = {
55881
- "version": "0.29.0",
55884
+ "version": "0.29.2",
55882
55885
  "generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
55883
55886
  "pages": [
55884
55887
  {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cotal-ai/pi",
3
- "version": "0.29.0",
3
+ "version": "0.29.2",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cotal-ai/web",
3
3
  "description": "Cotal browser observability dashboard: adds the `web` command to the cotal CLI.",
4
- "version": "0.29.0",
4
+ "version": "0.29.2",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",