fix(FN-2078): adopt canonical .fusion/memory paths

- Update core and engine prompt text to reference .fusion/memory/ with MEMORY.md and daily-note guidance
- Allow worktree tool boundary access to .fusion/memory/ files while preserving legacy .fusion/memory.md compatibility
- Revise memory compaction/insight extraction messaging and related type/docs comments to use canonical memory paths
- Refresh dashboard and test expectations across core/engine/dashboard/docs for the new memory path wording
This commit is contained in:
Fusion
2026-04-18 22:02:46 -07:00
committed by gsxdsm
parent 5d65667a5a
commit ff59470b03
18 changed files with 110 additions and 85 deletions

View File

@@ -124,8 +124,8 @@ describe("memory-compaction", () => {
it("should prompt to write compacted content to file", () => {
const automation = createAutoSummarizeAutomation({});
expect(automation.steps![0].prompt).toContain(".fusion/memory.md");
expect(automation.steps![0].prompt).toContain(".fusion/memory.md");
expect(automation.steps![0].prompt).toContain(".fusion/memory/MEMORY.md");
expect(automation.steps![0].prompt).toContain(".fusion/memory/MEMORY.md");
});
});