feat: add /research command with sub-agent delegation

This commit is contained in:
William Valentin
2026-02-17 15:21:11 -08:00
parent 9a2f1e2bb2
commit 2b89024a71
7 changed files with 126 additions and 3 deletions
+1
View File
@@ -26,6 +26,7 @@ export interface CommandServices {
setModel?: (tier: string) => Promise<string> | string;
compact?: () => Promise<string> | string;
reset?: () => Promise<string> | string;
delegateAgent?: (agentName: string, task: string) => Promise<string> | string;
getElevation?: () => Promise<string> | string;
setElevation?: (input: string) => Promise<string> | string;