@cotal-ai/connector-claude-code 0.48.1 → 0.49.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/extension.d.ts.map +1 -1
- package/dist/hook.cjs +108 -66
- package/dist/index.js +66 -31
- package/dist/mcp.cjs +905 -237
- package/dist/setup.d.ts +19 -0
- package/dist/setup.d.ts.map +1 -1
- package/package.json +4 -4
package/dist/setup.d.ts
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
1
|
import { type ConnectorSetupProvider } from "@cotal-ai/core";
|
|
2
|
+
/** Exported so a suite can grade the manifest that is actually written, not a second copy of it. */
|
|
3
|
+
export declare function marketplaceManifest(market: string): {
|
|
4
|
+
name: string;
|
|
5
|
+
description: string;
|
|
6
|
+
owner: {
|
|
7
|
+
name: string;
|
|
8
|
+
};
|
|
9
|
+
plugins: {
|
|
10
|
+
name: string;
|
|
11
|
+
source: string;
|
|
12
|
+
description?: string;
|
|
13
|
+
}[];
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* The write half of `writeMarketplace`, split out from the `plugin marketplace add` that follows it
|
|
17
|
+
* so a suite can grade the bytes that reach disk without spawning `claude`. Returns the path so a
|
|
18
|
+
* caller reads back the file this wrote rather than one it rebuilt from the same inputs.
|
|
19
|
+
*/
|
|
20
|
+
export declare function writeMarketplaceManifest(market: string): string;
|
|
2
21
|
export declare const claudeSetupProvider: ConnectorSetupProvider;
|
|
3
22
|
//# sourceMappingURL=setup.d.ts.map
|
package/dist/setup.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../src/setup.ts"],"names":[],"mappings":"AAKA,OAAO,EAAY,KAAK,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../src/setup.ts"],"names":[],"mappings":"AAKA,OAAO,EAAY,KAAK,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAoFvE,oGAAoG;AACpG,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,MAAM,GAAG;IACnD,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC;IACxB,OAAO,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CACnE,CAKA;AAED;;;;GAIG;AACH,wBAAgB,wBAAwB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAK/D;AA0CD,eAAO,MAAM,mBAAmB,EAAE,sBAuCjC,CAAC"}
|
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.
|
|
4
|
+
"version": "0.49.0",
|
|
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.
|
|
28
|
-
"@cotal-ai/
|
|
29
|
-
"@cotal-ai/
|
|
27
|
+
"@cotal-ai/connector-core": "0.49.0",
|
|
28
|
+
"@cotal-ai/core": "0.49.0",
|
|
29
|
+
"@cotal-ai/smoke-kit": "0.0.0"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
32
|
"dist",
|