edsger 0.56.0 → 0.56.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/phases/quality-benchmark/mcp-server.d.ts +1 -1
- package/dist/phases/quality-benchmark/parsers.d.ts +1 -1
- package/dist/phases/quality-benchmark/parsers.js +1 -1
- package/dist/phases/quality-benchmark/tool-catalog.d.ts +1 -1
- package/dist/phases/quality-benchmark/tool-runner.d.ts +1 -1
- package/package.json +1 -1
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* it adds no new privilege, no new commands, and no new side effects.
|
|
19
19
|
*/
|
|
20
20
|
import { type RunnerContext } from './tool-runner.js';
|
|
21
|
-
import type { ParsedToolOutput, RunPhase, ToolRunOutput, UnavailableTool } from './types';
|
|
21
|
+
import type { ParsedToolOutput, RunPhase, ToolRunOutput, UnavailableTool } from './types.js';
|
|
22
22
|
export interface QualityMcpDeps {
|
|
23
23
|
/** Runner context shared across all tool calls in this benchmark run. */
|
|
24
24
|
runner: RunnerContext;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* - Cheap: simple JSON parse + small map. No regex over megabytes.
|
|
17
17
|
* - Stable: same input → same output (no randomness, no clocks).
|
|
18
18
|
*/
|
|
19
|
-
import type { ParsedToolOutput, ParserContext, ParserFn } from './types';
|
|
19
|
+
import type { ParsedToolOutput, ParserContext, ParserFn } from './types.js';
|
|
20
20
|
export declare const PARSERS: Record<string, ParserFn>;
|
|
21
21
|
/** Run the parser for a tool, defensively swallowing errors. */
|
|
22
22
|
export declare function parseToolOutput(toolId: string, stdout: string, stderr: string, ctx: ParserContext): ParsedToolOutput;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* - Cheap: simple JSON parse + small map. No regex over megabytes.
|
|
17
17
|
* - Stable: same input → same output (no randomness, no clocks).
|
|
18
18
|
*/
|
|
19
|
-
import { TOOL_CATALOG_BY_ID } from './tool-catalog';
|
|
19
|
+
import { TOOL_CATALOG_BY_ID } from './tool-catalog.js';
|
|
20
20
|
// ---------------------------------------------------------------------------
|
|
21
21
|
// Helpers
|
|
22
22
|
// ---------------------------------------------------------------------------
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* the rubric text in its system prompt, and the runtime enforces the
|
|
13
13
|
* catalog by refusing to execute commands not registered here.
|
|
14
14
|
*/
|
|
15
|
-
import type { ToolCatalogEntry } from './types';
|
|
15
|
+
import type { ToolCatalogEntry } from './types.js';
|
|
16
16
|
export declare const TOOL_CATALOG: readonly ToolCatalogEntry[];
|
|
17
17
|
/** Index for O(1) lookups by tool id. */
|
|
18
18
|
export declare const TOOL_CATALOG_BY_ID: ReadonlyMap<string, ToolCatalogEntry>;
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
* - No sudo / no system package managers (refused at install time)
|
|
21
21
|
* - Captured outputs truncated at 16 MiB to bound disk usage
|
|
22
22
|
*/
|
|
23
|
-
import type { InstallerPrereq, ParsedToolOutput, ToolRunOutput, UnavailableTool } from './types';
|
|
23
|
+
import type { InstallerPrereq, ParsedToolOutput, ToolRunOutput, UnavailableTool } from './types.js';
|
|
24
24
|
export interface RunnerContext {
|
|
25
25
|
/** Absolute path to the repo checkout. */
|
|
26
26
|
repo_root: string;
|