feat(core): add more getters related to agent session flag

This commit is contained in:
Adam Weidman
2026-05-12 17:19:55 -04:00
parent e18f6ed4f1
commit 2e44f69ec3

View File

@@ -2582,6 +2582,14 @@ export class Config implements McpContext, AgentLoopContext {
return this.agentSessionSubagentEnabled;
}
getContextManagementConfig(): ContextManagementConfig {
return this.contextManagement;
}
getAgentSessionSubagentEnabled(): boolean {
return this.agentSessionSubagentEnabled;
}
getMemoryBoundaryMarkers(): readonly string[] {
return this.memoryBoundaryMarkers;
}