Files
Variet 5895627f21 chore: quantlab-agent 프로젝트 초기 설정
agent_guide 템플릿 기반으로 프로젝트 구조 설정.
Gitea(quantlab-agent), Vikunja(project #15) 연동 완료.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-08 09:54:19 +09:00

20 lines
1.2 KiB
Markdown

# 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.