From f7123ec30af8c96bb2cb4da198e19bc03312ba16 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 18 Jan 2026 06:30:15 +0000 Subject: [PATCH] fix: repair context report and tool config --- src/config/types.tools.ts | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/src/config/types.tools.ts b/src/config/types.tools.ts index d2be8d111..6f27b0b69 100644 --- a/src/config/types.tools.ts +++ b/src/config/types.tools.ts @@ -120,35 +120,6 @@ export type ToolPolicyConfig = { profile?: ToolProfileId; }; -export type ExecToolConfig = { - /** Exec host routing (default: sandbox). */ - host?: "sandbox" | "gateway" | "node"; - /** Exec security mode (default: deny). */ - security?: "deny" | "allowlist" | "full"; - /** Exec ask mode (default: on-miss). */ - ask?: "off" | "on-miss" | "always"; - /** Default node binding for exec.host=node (node id/name). */ - node?: string; - /** Default time (ms) before an exec command auto-backgrounds. */ - backgroundMs?: number; - /** Default timeout (seconds) before auto-killing exec commands. */ - timeoutSec?: number; - /** How long to keep finished sessions in memory (ms). */ - cleanupMs?: number; - /** Emit a system event and heartbeat when a backgrounded exec exits. */ - notifyOnExit?: boolean; - /** apply_patch subtool configuration (experimental). */ - applyPatch?: { - /** Enable apply_patch for OpenAI models (default: false). */ - enabled?: boolean; - /** - * Optional allowlist of model ids that can use apply_patch. - * Accepts either raw ids (e.g. "gpt-5.2") or full ids (e.g. "openai/gpt-5.2"). - */ - allowModels?: string[]; - }; -}; - export type AgentToolsConfig = { /** Base tool profile applied before allow/deny lists. */ profile?: ToolProfileId;