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 80e1c757b7
commit b65d45b168
+8
View File
@@ -2581,6 +2581,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;
}