feat(core): add experimental memory manager agent to replace save_memory tool (#22726)

Co-authored-by: Christian Gunderman <gundermanc@gmail.com>
This commit is contained in:
Sandy Tao
2026-03-19 12:57:52 -07:00
committed by GitHub
parent b3ebab308e
commit 33f630111f
27 changed files with 696 additions and 21 deletions

View File

@@ -16,6 +16,8 @@ export interface ToolCallContext {
schedulerId: string;
/** The ID of the parent tool call, if this is a nested execution (e.g., in a subagent). */
parentCallId?: string;
/** The name of the subagent executing the tool, if applicable. */
subagent?: string;
}
/**