From 271068d871d4c7ad51326369a65a603a9bbe18a4 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 20 Apr 2026 14:48:28 +0900 Subject: [PATCH] chore(delegate-task): remove unused execute field from DelegateTaskArgs The execute field with { task_id, task_dir } was defined but never referenced anywhere in the codebase. Removing dead code simplifies the type surface and prevents accidental future misuse. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- src/tools/delegate-task/types.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/tools/delegate-task/types.ts b/src/tools/delegate-task/types.ts index affd81983..1eb767960 100644 --- a/src/tools/delegate-task/types.ts +++ b/src/tools/delegate-task/types.ts @@ -19,10 +19,6 @@ export interface DelegateTaskArgs { task_id?: string command?: string load_skills: string[] - execute?: { - task_id: string - task_dir?: string - } } export interface ToolContextWithMetadata {