@sleep2agi/agent-network 2.3.0-preview.59 → 2.3.0-preview.60
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.
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export declare const PAIRED_AGENT_NETWORK_VERSION = "2.3.0-preview.
|
|
2
|
-
export declare const PAIRED_AGENT_NODE_VERSION = "2.5.0-preview.
|
|
3
|
-
export declare const PAIRED_AGENT_NODE_SPEC = "@sleep2agi/agent-node@2.5.0-preview.
|
|
4
|
-
export declare const OPENCODE_AGENT_NETWORK_VERSION = "2.3.0-preview.
|
|
5
|
-
export declare const OPENCODE_AGENT_NODE_VERSION = "2.5.0-preview.
|
|
6
|
-
export declare const OPENCODE_AGENT_NODE_SPEC = "@sleep2agi/agent-node@2.5.0-preview.
|
|
1
|
+
export declare const PAIRED_AGENT_NETWORK_VERSION = "2.3.0-preview.60";
|
|
2
|
+
export declare const PAIRED_AGENT_NODE_VERSION = "2.5.0-preview.47";
|
|
3
|
+
export declare const PAIRED_AGENT_NODE_SPEC = "@sleep2agi/agent-node@2.5.0-preview.47";
|
|
4
|
+
export declare const OPENCODE_AGENT_NETWORK_VERSION = "2.3.0-preview.60";
|
|
5
|
+
export declare const OPENCODE_AGENT_NODE_VERSION = "2.5.0-preview.47";
|
|
6
|
+
export declare const OPENCODE_AGENT_NODE_SPEC = "@sleep2agi/agent-node@2.5.0-preview.47";
|
|
7
7
|
export type PairedAgentNodeResolution = {
|
|
8
8
|
spec: string;
|
|
9
9
|
args: string[];
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface ResumeRuntimeInput {
|
|
2
|
+
/** raw --resume value; "true" means the flag was present with no value */
|
|
3
|
+
resume?: string;
|
|
4
|
+
/** whether --resume-latest was passed */
|
|
5
|
+
resumeLatest?: boolean;
|
|
6
|
+
/** an already-resolved session id, if any (skips inference) */
|
|
7
|
+
session?: string;
|
|
8
|
+
/** normalized --runtime, or empty/undefined when the user passed none */
|
|
9
|
+
explicitRuntime?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface ResumeRuntimeResult {
|
|
12
|
+
/** runtime to force onto opts when it was left to default */
|
|
13
|
+
inferredRuntime?: string;
|
|
14
|
+
/** set when an explicit non-cli runtime conflicts with --resume */
|
|
15
|
+
conflictError?: string;
|
|
16
|
+
}
|
|
17
|
+
export declare const CLAUDE_CODE_CLI = "claude-code-cli";
|
|
18
|
+
export declare function resolveRuntimeForResume(input: ResumeRuntimeInput): ResumeRuntimeResult;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sleep2agi/agent-network",
|
|
3
|
-
"version": "2.3.0-preview.
|
|
3
|
+
"version": "2.3.0-preview.60",
|
|
4
4
|
"description": "AI Agent Network CLI — Local-first multi-agent orchestration across 6 runtimes (Claude Code CLI / Claude Agent SDK / Codex SDK / Codex app-server / Grok Build ACP / OpenCode CLI) and 8+ LLM providers. Apache 2.0.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/client.js",
|