feat: add AskUser tool schema (#16988)

This commit is contained in:
Jack Wotherspoon
2026-01-22 12:12:13 -05:00
committed by GitHub
parent 24e80fd227
commit 8705cf3c7d
4 changed files with 477 additions and 0 deletions
+2
View File
@@ -24,6 +24,7 @@ export const GET_INTERNAL_DOCS_TOOL_NAME = 'get_internal_docs';
export const ACTIVATE_SKILL_TOOL_NAME = 'activate_skill';
export const EDIT_TOOL_NAMES = new Set([EDIT_TOOL_NAME, WRITE_FILE_TOOL_NAME]);
export const DELEGATE_TO_AGENT_TOOL_NAME = 'delegate_to_agent';
export const ASK_USER_TOOL_NAME = 'ask_user';
/** Prefix used for tools discovered via the toolDiscoveryCommand. */
export const DISCOVERED_TOOL_PREFIX = 'discovered_tool_';
@@ -46,6 +47,7 @@ export const ALL_BUILTIN_TOOL_NAMES = [
MEMORY_TOOL_NAME,
ACTIVATE_SKILL_TOOL_NAME,
DELEGATE_TO_AGENT_TOOL_NAME,
ASK_USER_TOOL_NAME,
] as const;
/**