@a5c-ai/launch-adapter 6.0.1-staging.f8aae93c2dbc → 6.0.1
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/bridge-hooks.d.ts +1 -0
- package/dist/cli-helpers.d.ts +1 -0
- package/dist/completion-engine.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/launch.d.ts +1 -0
- package/dist/types.d.ts +1 -0
- package/package.json +5 -5
package/dist/bridge-hooks.d.ts
CHANGED
package/dist/cli-helpers.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -12,3 +12,4 @@ export { createOpenAICompletionEngine, createGoogleCompletionEngine, } from './c
|
|
|
12
12
|
export { ExitCode, flagStr, flagNum, flagBool, flagArr, printError, printJsonError, } from './cli-helpers.js';
|
|
13
13
|
export type { ExitCodeValue, } from './cli-helpers.js';
|
|
14
14
|
export type { FlagDef, ParsedArgs, SessionArgs, } from './types.js';
|
|
15
|
+
//# sourceMappingURL=index.d.ts.map
|
package/dist/launch.d.ts
CHANGED
|
@@ -58,3 +58,4 @@ export interface LaunchPlan {
|
|
|
58
58
|
export declare const PROMPT_ARTIFACT_MONITOR_TIMEOUT_MS: number;
|
|
59
59
|
export declare function resolveLaunchPlan(input: LaunchPlanInput): LaunchPlan;
|
|
60
60
|
export declare function launchCommand(client: AgentMuxClient, args: ParsedArgs): Promise<number>;
|
|
61
|
+
//# sourceMappingURL=launch.d.ts.map
|
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a5c-ai/launch-adapter",
|
|
3
|
-
"version": "6.0.1
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Launch orchestration for adapters: plan resolution, proxy setup, harness spawning",
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"prepublishOnly": "npm run build"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@a5c-ai/comm-adapter": "6.0.1
|
|
53
|
-
"@a5c-ai/adapters-codecs": "6.0.1
|
|
54
|
-
"@a5c-ai/atlas": "6.0.1
|
|
55
|
-
"@a5c-ai/transport-adapter": "6.0.1
|
|
52
|
+
"@a5c-ai/comm-adapter": "6.0.1",
|
|
53
|
+
"@a5c-ai/adapters-codecs": "6.0.1",
|
|
54
|
+
"@a5c-ai/atlas": "6.0.1",
|
|
55
|
+
"@a5c-ai/transport-adapter": "6.0.1"
|
|
56
56
|
},
|
|
57
57
|
"optionalDependencies": {
|
|
58
58
|
"node-pty": "^1.0.0"
|