@cotal-ai/connector-claude-code 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/dist/hook.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/mcp.cjs +5 -2
- package/package.json +4 -4
package/dist/hook.cjs
CHANGED
|
@@ -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.
|
|
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
|
{
|
package/dist/index.js
CHANGED
|
@@ -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.
|
|
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
|
{
|
package/dist/mcp.cjs
CHANGED
|
@@ -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 ??
|
|
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.
|
|
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
|
{
|
package/package.json
CHANGED
|
@@ -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.
|
|
4
|
+
"version": "0.29.2",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
25
25
|
"esbuild": "^0.28.0",
|
|
26
26
|
"tsx": "^4.22.4",
|
|
27
|
-
"@cotal-ai/connector-core": "0.29.
|
|
28
|
-
"@cotal-ai/
|
|
29
|
-
"@cotal-ai/
|
|
27
|
+
"@cotal-ai/connector-core": "0.29.2",
|
|
28
|
+
"@cotal-ai/core": "0.29.2",
|
|
29
|
+
"@cotal-ai/smoke-kit": "0.0.0"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
32
|
"dist",
|