@cotal-ai/connector-hermes 0.36.0 → 0.37.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/binary.d.ts +12 -0
- package/dist/binary.d.ts.map +1 -0
- package/dist/extension.d.ts.map +1 -1
- package/dist/index.js +27 -24
- package/dist/launch.d.ts +10 -1
- package/dist/launch.d.ts.map +1 -1
- package/dist/launch.js +805 -239
- package/package.json +3 -3
- package/plugin/cotal/_sidecar/standalone.cjs +728 -176
package/dist/binary.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { spawn, type ChildProcess } from "node:child_process";
|
|
2
|
+
/** The exact `uv` executable resolved by manager boot. A bare fallback remains for library
|
|
3
|
+
* compositions that do not run the installed-extension inventory. */
|
|
4
|
+
export declare function hermesUvCommand(env?: NodeJS.ProcessEnv): string;
|
|
5
|
+
/** Spawn the project-pinned Hermes gateway through the exact manager-resolved uv executable. The
|
|
6
|
+
* injectable spawn function is a smoke seam over this real call, not a second launch renderer. */
|
|
7
|
+
export declare function spawnHermesGateway(opts: {
|
|
8
|
+
pkgDir: string;
|
|
9
|
+
env: NodeJS.ProcessEnv;
|
|
10
|
+
spawnImpl?: typeof spawn;
|
|
11
|
+
}): ChildProcess;
|
|
12
|
+
//# sourceMappingURL=binary.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"binary.d.ts","sourceRoot":"","sources":["../src/binary.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,KAAK,YAAY,EAAqB,MAAM,oBAAoB,CAAC;AAEjF;qEACqE;AACrE,wBAAgB,eAAe,CAAC,GAAG,GAAE,MAAM,CAAC,UAAwB,GAAG,MAAM,CAE5E;AAED;kGACkG;AAClG,wBAAgB,kBAAkB,CAAC,IAAI,EAAE;IACvC,MAAM,EAAE,MAAM,CAAC;IACf,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC;IACvB,SAAS,CAAC,EAAE,OAAO,KAAK,CAAC;CAC1B,GAAG,YAAY,CAIf"}
|
package/dist/extension.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extension.d.ts","sourceRoot":"","sources":["../src/extension.ts"],"names":[],"mappings":"AACA,OAAO,EAA2B,KAAK,SAAS,EAAoC,MAAM,gBAAgB,CAAC;AAa3G,eAAO,MAAM,oBAAoB,EAAE,SAAS,MAAM,EAQjD,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,eAAe,EAAE,
|
|
1
|
+
{"version":3,"file":"extension.d.ts","sourceRoot":"","sources":["../src/extension.ts"],"names":[],"mappings":"AACA,OAAO,EAA2B,KAAK,SAAS,EAAoC,MAAM,gBAAgB,CAAC;AAa3G,eAAO,MAAM,oBAAoB,EAAE,SAAS,MAAM,EAQjD,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,eAAe,EAAE,SAwD7B,CAAC"}
|