feat(workspace): add bootstrap ritual

This commit is contained in:
Peter Steinberger
2025-12-20 15:48:49 +00:00
parent ba85f4a62a
commit 3876c1679a
11 changed files with 307 additions and 6 deletions

View File

@@ -1,7 +1,13 @@
import type { ThinkLevel } from "../auto-reply/thinking.js";
type BootstrapFile = {
name: "AGENTS.md" | "SOUL.md" | "TOOLS.md";
name:
| "AGENTS.md"
| "SOUL.md"
| "TOOLS.md"
| "IDENTITY.md"
| "USER.md"
| "BOOTSTRAP.md";
path: string;
content?: string;
missing: boolean;