feat: Added the ability to auto-bootstrap workspace memory when in git repos

This commit is contained in:
2026-06-11 16:03:00 -06:00
parent eb6a02f947
commit 2a79616f8b
4 changed files with 264 additions and 12 deletions
+1 -1
View File
@@ -309,7 +309,7 @@ async fn run(
"# Global Memory\n\n<!-- Universal facts about you go here. The LLM uses this as always-on context. -->\n<!-- Drill files (when created) are listed below. -->\n",
),
MemoryScope::Workspace => (
std::env::current_dir()?.join("COYOTE.md"),
env::current_dir()?.join("COYOTE.md"),
"# Workspace Memory\n\n<!-- Facts about this project go here. The LLM uses this as always-on context. -->\n",
),
};