feat(runtime): wire council command and routing integration

This commit is contained in:
William Valentin
2026-02-21 10:49:20 -08:00
parent 8e89c7ff5d
commit 54cbf17133
4 changed files with 92 additions and 4 deletions
+1
View File
@@ -27,6 +27,7 @@ export interface CommandServices {
compact?: () => Promise<string> | string;
reset?: () => Promise<string> | string;
delegateAgent?: (agentName: string, task: string) => Promise<string> | string;
runCouncil?: (task: string) => Promise<string> | string;
getElevation?: () => Promise<string> | string;
setElevation?: (input: string) => Promise<string> | string;