negotium 0.2.2 → 0.2.3
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/agent-helpers.js +131 -133
- package/dist/agent-helpers.js.map +4 -4
- package/dist/{chunk-kc5kmr95.js → chunk-hsqgb2hw.js} +22 -24
- package/dist/{chunk-kc5kmr95.js.map → chunk-hsqgb2hw.js.map} +3 -3
- package/dist/hosted-agent.js +34 -36
- package/dist/hosted-agent.js.map +4 -4
- package/dist/main.js +291 -918
- package/dist/main.js.map +7 -9
- package/dist/mcp-factories.js +135 -137
- package/dist/mcp-factories.js.map +4 -4
- package/dist/registry.js +1 -1
- package/dist/rollout.js +1 -1
- package/dist/runtime/src/agents/rollout/shared.ts +3 -5
- package/dist/runtime/src/version.ts +1 -1
- package/dist/types/packages/core/src/version.d.ts +1 -1
- package/package.json +1 -1
- package/dist/runtime/src/migration/single-user.ts +0 -805
package/dist/registry.js
CHANGED
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
logger,
|
|
15
15
|
writeClaudeRollout,
|
|
16
16
|
writeCodexRollout
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-hsqgb2hw.js";
|
|
18
18
|
|
|
19
19
|
// ../../packages/core/src/agents/claude-registry.ts
|
|
20
20
|
import { existsSync, mkdirSync, readdirSync, renameSync, unlinkSync } from "fs";
|
package/dist/rollout.js
CHANGED
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
import { mkdirSync } from "node:fs";
|
|
11
|
-
import {
|
|
12
|
-
import { fileURLToPath } from "node:url";
|
|
11
|
+
import { resolve } from "node:path";
|
|
13
12
|
import {
|
|
14
13
|
DM_WORKSPACE_DIR,
|
|
14
|
+
PROJECT_ROOT,
|
|
15
15
|
SESSION_WORKSPACE_DIR,
|
|
16
16
|
TOPIC_WORKSPACE_DIR,
|
|
17
17
|
WORKSPACE_DIR,
|
|
@@ -20,8 +20,6 @@ import { logger } from "#platform/logger";
|
|
|
20
20
|
import { renderUserPromptBatch } from "#runtime/user-turn-envelope";
|
|
21
21
|
import type { ConversationEntry } from "#storage/conversations";
|
|
22
22
|
|
|
23
|
-
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
24
|
-
|
|
25
23
|
export interface RolloutHostOptions {
|
|
26
24
|
/** Absolute workspace roots under which synthetic provider sessions may be written. */
|
|
27
25
|
workspaceRoots?: readonly string[];
|
|
@@ -69,7 +67,7 @@ export function configureRolloutHost(options: RolloutHostOptions): () => void {
|
|
|
69
67
|
* non-conversational entries from the resulting rollout file, and update
|
|
70
68
|
* `src/agents/fixtures/{codex-shell,claude-attachments}.jsonl`.
|
|
71
69
|
*/
|
|
72
|
-
export let FIXTURES_DIR =
|
|
70
|
+
export let FIXTURES_DIR = resolve(PROJECT_ROOT, "src", "agents", "fixtures");
|
|
73
71
|
|
|
74
72
|
/** Deep-clone to avoid mutating cached fixture objects. */
|
|
75
73
|
export function clone<T>(obj: T): T {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const NEGOTIUM_VERSION = "0.2.
|
|
1
|
+
export const NEGOTIUM_VERSION = "0.2.3";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const NEGOTIUM_VERSION = "0.2.
|
|
1
|
+
export declare const NEGOTIUM_VERSION = "0.2.3";
|