rm bootstrap

This commit is contained in:
Harivansh Rathi 2026-03-09 12:44:17 -07:00
parent bf9bfe38f7
commit 85c2a0b675
4 changed files with 0 additions and 24 deletions

View file

@ -126,7 +126,6 @@ const companionContextFilenames = [
"USER.md",
"TOOLS.md",
"MEMORY.md",
"BOOTSTRAP.md",
];
function loadNamedContextFilesFromDir(

View file

@ -66,11 +66,6 @@ function buildProjectContextSection(
if (hasFile("MEMORY.md")) {
guides.push("**MEMORY.md** is what you remember. Keep it current.");
}
if (hasFile("BOOTSTRAP.md")) {
guides.push(
"**BOOTSTRAP.md** has tasks to do first.",
);
}
if (guides.length > 0) {
section += "\n" + guides.map((g) => `- ${g}`).join("\n") + "\n";