chore: pause work and save context handoff

This commit is contained in:
2026-03-30 07:32:23 +09:00
parent 509d6cae57
commit add7f40894
577 changed files with 90979 additions and 39 deletions

View File

@@ -0,0 +1,19 @@
# Codebase Structure (`STRUCTURE.md`)
## Directory Map
- **Root Files**
- `bootstrap.bat` / `bootstrap.sh`: Primary runtime orchestrators for setting up the node/python environment.
- `.gitignore` & `.gitmodules`: Repository definitions protecting the ecosystem from pollution.
- **`.agent/` (The Enclave)**
- `.agent/env/`: The isolated local node environment container. Has its own `package.json` avoiding merging issues with user code.
- `.agent/scripts/`: Home of the Master Sync orchestration rules (`sync_vendors`, `extract_skills.js`, `translate_skills.js`).
- `.agent/skills/`: Holds the flattened markdown files (`SKILL.md`) that agents interpret on system boot. Note `gsd-*/` is whitelisted here.
- `.agent/vendor/`: The raw checked-out git repository targets before any translations/flattening is parsed out of them.
- `.agent/config/`: Runtime configurations specific to the current physical machine (`.env.agent`).
- `.agent/knowledge/`: Stores raw unstructured domain context for explicit queries.
- **`.planning/` (GSD Execution)**
- Manages the Project State (`PROJECT.md`, `ROADMAP.md`, `STATE.md`).
- `phases/`: Artifact history holding individual plans (`01-PLAN.md`) and the verification/summary reports mapping their outcomes.