feat(subagents): add idle ttl cleanup and summary tool

This commit is contained in:
William Valentin
2026-02-26 13:12:53 -08:00
parent 2171346116
commit b679261683
17 changed files with 226 additions and 15 deletions
+3
View File
@@ -55,6 +55,7 @@ const PROFILE_TOOLS: Record<ToolProfile, Set<string>> = {
'subagent.list',
'subagent.cancel',
'subagent.delete',
'subagent.summary',
]),
coding: new Set([
'file.read',
@@ -117,6 +118,7 @@ const PROFILE_TOOLS: Record<ToolProfile, Set<string>> = {
'subagent.list',
'subagent.cancel',
'subagent.delete',
'subagent.summary',
]),
full: new Set(), // Special: matches everything
};
@@ -146,6 +148,7 @@ export const TOOL_GROUPS: Record<string, string[]> = {
'subagent.list',
'subagent.cancel',
'subagent.delete',
'subagent.summary',
],
};