feat(FN-4393): complete Step 1 — add memory inclusion mode settings and resolver

Fusion-Task-Id: FN-4393
Fusion-Task-Lineage: 3615215d-9caa-4402-9258-a5a5de137dd6
This commit is contained in:
Fusion
2026-05-13 22:56:52 -07:00
committed by gsxdsm
parent 09e750f75f
commit cb17dcf1a7
7 changed files with 132 additions and 2 deletions

View File

@@ -94,6 +94,7 @@ export async function ensureMemoryFile(rootDir: string): Promise<boolean> {
type MemorySettings = {
memoryEnabled?: boolean;
memoryBackendType?: string;
agentMemoryInclusionMode?: "full" | "index" | "off";
[key: string]: unknown;
};