release: v2.0.1 - Advanced Knowledge Mix & Architectural Intelligence

This commit is contained in:
g1nation
2026-05-13 22:05:39 +09:00
parent c32b17377b
commit e85e11aac6
23 changed files with 1758 additions and 78 deletions
+14
View File
@@ -12,6 +12,20 @@ export interface ProjectProfile {
detailLevel: ChronicleDetailLevel;
createdAt: string;
updatedAt: string;
// ── Project Architecture Context (Feature 2) ───────────────────────────────
/** Absolute path to the auto-generated architecture markdown. */
architectureDocPath?: string;
/** When true, the architecture doc is auto-attached to every prompt. */
architectureAutoAttach?: boolean;
/** When true, file changes under projectRoot trigger a debounced refresh. */
architectureAutoUpdate?: boolean;
/** ISO timestamp of the last (auto or manual) refresh. */
architectureLastUpdated?: string;
/**
* Cheap hash of the inputs used by the last scan (package.json + top-level tree).
* Used by the file watcher to skip no-op regenerations.
*/
architectureLastScanSignature?: string;
}
export interface QuestionRecord {