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 <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-04-20 14:48:28 +09:00
parent cd0c98e54d
commit 271068d871
-4
View File
@@ -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 {