llm-relay 0.79.0 → 0.80.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/cli.js +2 -0
- package/dist/cli.js.map +1 -1
- package/dist/config/routing-parser.js +11 -4
- package/dist/config/routing-parser.js.map +1 -1
- package/dist/mcp/job-journal.d.ts +46 -0
- package/dist/mcp/job-journal.js +67 -0
- package/dist/mcp/job-journal.js.map +1 -0
- package/dist/mcp/lane-runner.d.ts +112 -9
- package/dist/mcp/lane-runner.js +112 -6
- package/dist/mcp/lane-runner.js.map +1 -1
- package/dist/mcp/readonly-boundary.d.ts +33 -0
- package/dist/mcp/readonly-boundary.js +36 -0
- package/dist/mcp/readonly-boundary.js.map +1 -0
- package/dist/mcp/server.d.ts +7 -0
- package/dist/mcp/server.js +51 -4
- package/dist/mcp/server.js.map +1 -1
- package/dist/setup-claude.d.ts +25 -2
- package/dist/setup-claude.js +18 -6
- package/dist/setup-claude.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -18,6 +18,7 @@ import { buildDispatch, allLadderRungs, normalizeCliCommand, restoreExhaustedRow
|
|
|
18
18
|
import { flushLaneAffinityPersistence, loadLaneAffinityRows, restoreLaneAffinityRows } from "./lane-affinity.js";
|
|
19
19
|
import { flushDispatchLaneStatsPersistence, loadLaneStatsRows, restoreLaneStatsRows } from "./dispatch-lane-stats.js";
|
|
20
20
|
import { McpDispatchServer } from "./mcp/server.js";
|
|
21
|
+
import { createJobJournal } from "./mcp/job-journal.js";
|
|
21
22
|
import { flushDispatchExhaustionPersistence, loadExhaustedRows } from "./dispatch-exhaustion-persistence.js";
|
|
22
23
|
import { detectHostRouting, parseHostRoutingState } from "./host-routing.js";
|
|
23
24
|
import { contextWindowResolver, COST_CLASSES } from "./metadata.js";
|
|
@@ -1754,6 +1755,7 @@ export async function runMcp() {
|
|
|
1754
1755
|
version: currentVersion(),
|
|
1755
1756
|
reportExhaustion: (report) => reportMcpExhaustion(cfg, report),
|
|
1756
1757
|
reportTelemetry: (report) => { void reportMcpTelemetry(cfg, report); },
|
|
1758
|
+
journal: createJobJournal(),
|
|
1757
1759
|
write: (chunk) => process.stdout.write(chunk),
|
|
1758
1760
|
});
|
|
1759
1761
|
const stop = () => {
|