feat: codebase mapper with CODEBASE.md generation (#190)

- Add scan_project Rust command that walks the directory tree and detects project type
- Add CODEBASE as a managed ProjectFile type alongside PROJECT/REQUIREMENTS/ROADMAP/STATE
- Add mapCodebase() store function that scans and sends an analysis prompt to Claude
- Add CODEBASE tab to ProjectContextPanel with Map/Remap buttons and auto-reload on idle
- Update PROJECT_CONTEXT_SYSTEM_ADDENDUM to include CODEBASE.md reference
This commit is contained in:
2026-03-06 13:39:29 -08:00
committed by Naomi Carrigan
parent 78dc838f36
commit 9136f3351d
5 changed files with 459 additions and 41 deletions
+1
View File
@@ -220,6 +220,7 @@ pub fn run() {
save_draft,
delete_draft,
delete_all_drafts,
scan_project,
])
.run(tauri::generate_context!())
.expect("error while running tauri application");