gitextract_zvdi0jnd/ ├── .agent/ │ └── workflows/ │ ├── add-phase.md │ ├── add-todo.md │ ├── audit-milestone.md │ ├── check-todos.md │ ├── complete-milestone.md │ ├── debug.md │ ├── discuss-phase.md │ ├── execute.md │ ├── help.md │ ├── insert-phase.md │ ├── install.md │ ├── list-phase-assumptions.md │ ├── map.md │ ├── new-milestone.md │ ├── new-project.md │ ├── pause.md │ ├── plan-milestone-gaps.md │ ├── plan.md │ ├── progress.md │ ├── remove-phase.md │ ├── research-phase.md │ ├── resume.md │ ├── sprint.md │ ├── update.md │ ├── verify.md │ ├── web-search.md │ └── whats-new.md ├── .agents/ │ └── skills/ │ ├── codebase-mapper/ │ │ └── SKILL.md │ ├── context-compressor/ │ │ └── SKILL.md │ ├── context-fetch/ │ │ └── SKILL.md │ ├── context-health-monitor/ │ │ └── SKILL.md │ ├── debugger/ │ │ └── SKILL.md │ ├── empirical-validation/ │ │ └── SKILL.md │ ├── executor/ │ │ └── SKILL.md │ ├── plan-checker/ │ │ └── SKILL.md │ ├── planner/ │ │ └── SKILL.md │ ├── token-budget/ │ │ └── SKILL.md │ └── verifier/ │ └── SKILL.md ├── .gemini/ │ └── GEMINI.md ├── .gitignore ├── .gsd/ │ ├── examples/ │ │ ├── cross-platform.md │ │ ├── multi-wave-workflow.md │ │ ├── quick-reference.md │ │ └── workflow-example.md │ └── templates/ │ ├── DEBUG.md │ ├── PLAN.md │ ├── RESEARCH.md │ ├── SUMMARY.md │ ├── UAT.md │ ├── VERIFICATION.md │ ├── architecture.md │ ├── context.md │ ├── decisions.md │ ├── discovery.md │ ├── journal.md │ ├── milestone.md │ ├── phase-summary.md │ ├── project.md │ ├── requirements.md │ ├── roadmap.md │ ├── spec.md │ ├── sprint.md │ ├── stack.md │ ├── state.md │ ├── state_snapshot.md │ ├── todo.md │ ├── token_report.md │ └── user-setup.md ├── CHANGELOG.md ├── GSD-STYLE.md ├── LICENSE ├── PROJECT_RULES.md ├── README.md ├── VERSION ├── adapters/ │ ├── CLAUDE.md │ ├── GEMINI.md │ └── GPT_OSS.md ├── docs/ │ ├── model-selection-playbook.md │ ├── runbook.md │ └── token-optimization-guide.md ├── model_capabilities.yaml └── scripts/ ├── search_repo.ps1 ├── search_repo.sh ├── setup_search.ps1 ├── setup_search.sh ├── validate-all.ps1 ├── validate-all.sh ├── validate-skills.ps1 ├── validate-skills.sh ├── validate-templates.ps1 ├── validate-templates.sh ├── validate-workflows.ps1 └── validate-workflows.sh