gitextract_1kca8jz6/ ├── .github/ │ ├── CODEOWNERS │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ ├── docs_issue.yml │ │ └── feature_request.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── auto-label-issues.yml │ └── test.yml ├── .gitignore ├── .release-monitor.sh ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README.zh-CN.md ├── SECURITY.md ├── agents/ │ ├── gsd-codebase-mapper.md │ ├── gsd-debugger.md │ ├── gsd-executor.md │ ├── gsd-integration-checker.md │ ├── gsd-nyquist-auditor.md │ ├── gsd-phase-researcher.md │ ├── gsd-plan-checker.md │ ├── gsd-planner.md │ ├── gsd-project-researcher.md │ ├── gsd-research-synthesizer.md │ ├── gsd-roadmapper.md │ ├── gsd-ui-auditor.md │ ├── gsd-ui-checker.md │ ├── gsd-ui-researcher.md │ ├── gsd-user-profiler.md │ └── gsd-verifier.md ├── bin/ │ └── install.js ├── commands/ │ └── gsd/ │ ├── add-backlog.md │ ├── add-phase.md │ ├── add-tests.md │ ├── add-todo.md │ ├── audit-milestone.md │ ├── audit-uat.md │ ├── autonomous.md │ ├── check-todos.md │ ├── cleanup.md │ ├── complete-milestone.md │ ├── debug.md │ ├── discuss-phase.md │ ├── do.md │ ├── execute-phase.md │ ├── fast.md │ ├── health.md │ ├── help.md │ ├── insert-phase.md │ ├── join-discord.md │ ├── list-phase-assumptions.md │ ├── map-codebase.md │ ├── new-milestone.md │ ├── new-project.md │ ├── next.md │ ├── note.md │ ├── pause-work.md │ ├── plan-milestone-gaps.md │ ├── plan-phase.md │ ├── plant-seed.md │ ├── pr-branch.md │ ├── profile-user.md │ ├── progress.md │ ├── quick.md │ ├── reapply-patches.md │ ├── remove-phase.md │ ├── research-phase.md │ ├── resume-work.md │ ├── review-backlog.md │ ├── review.md │ ├── session-report.md │ ├── set-profile.md │ ├── settings.md │ ├── ship.md │ ├── stats.md │ ├── thread.md │ ├── ui-phase.md │ ├── ui-review.md │ ├── update.md │ ├── validate-phase.md │ └── verify-work.md ├── docs/ │ ├── AGENTS.md │ ├── ARCHITECTURE.md │ ├── CLI-TOOLS.md │ ├── COMMANDS.md │ ├── CONFIGURATION.md │ ├── FEATURES.md │ ├── README.md │ ├── USER-GUIDE.md │ ├── context-monitor.md │ └── zh-CN/ │ ├── README.md │ ├── USER-GUIDE.md │ └── references/ │ ├── checkpoints.md │ ├── continuation-format.md │ ├── decimal-phase-calculation.md │ ├── git-integration.md │ ├── git-planning-commit.md │ ├── model-profile-resolution.md │ ├── model-profiles.md │ ├── phase-argument-parsing.md │ ├── planning-config.md │ ├── questioning.md │ ├── tdd.md │ ├── ui-brand.md │ └── verification-patterns.md ├── get-shit-done/ │ ├── bin/ │ │ ├── gsd-tools.cjs │ │ └── lib/ │ │ ├── commands.cjs │ │ ├── config.cjs │ │ ├── core.cjs │ │ ├── frontmatter.cjs │ │ ├── init.cjs │ │ ├── milestone.cjs │ │ ├── model-profiles.cjs │ │ ├── phase.cjs │ │ ├── profile-output.cjs │ │ ├── profile-pipeline.cjs │ │ ├── roadmap.cjs │ │ ├── state.cjs │ │ ├── template.cjs │ │ ├── uat.cjs │ │ └── verify.cjs │ ├── references/ │ │ ├── checkpoints.md │ │ ├── continuation-format.md │ │ ├── decimal-phase-calculation.md │ │ ├── git-integration.md │ │ ├── git-planning-commit.md │ │ ├── model-profile-resolution.md │ │ ├── model-profiles.md │ │ ├── phase-argument-parsing.md │ │ ├── planning-config.md │ │ ├── questioning.md │ │ ├── tdd.md │ │ ├── ui-brand.md │ │ ├── user-profiling.md │ │ └── verification-patterns.md │ ├── templates/ │ │ ├── DEBUG.md │ │ ├── UAT.md │ │ ├── UI-SPEC.md │ │ ├── VALIDATION.md │ │ ├── claude-md.md │ │ ├── codebase/ │ │ │ ├── architecture.md │ │ │ ├── concerns.md │ │ │ ├── conventions.md │ │ │ ├── integrations.md │ │ │ ├── stack.md │ │ │ ├── structure.md │ │ │ └── testing.md │ │ ├── config.json │ │ ├── context.md │ │ ├── continue-here.md │ │ ├── copilot-instructions.md │ │ ├── debug-subagent-prompt.md │ │ ├── dev-preferences.md │ │ ├── discovery.md │ │ ├── discussion-log.md │ │ ├── milestone-archive.md │ │ ├── milestone.md │ │ ├── phase-prompt.md │ │ ├── planner-subagent-prompt.md │ │ ├── project.md │ │ ├── requirements.md │ │ ├── research-project/ │ │ │ ├── ARCHITECTURE.md │ │ │ ├── FEATURES.md │ │ │ ├── PITFALLS.md │ │ │ ├── STACK.md │ │ │ └── SUMMARY.md │ │ ├── research.md │ │ ├── retrospective.md │ │ ├── roadmap.md │ │ ├── state.md │ │ ├── summary-complex.md │ │ ├── summary-minimal.md │ │ ├── summary-standard.md │ │ ├── summary.md │ │ ├── user-profile.md │ │ ├── user-setup.md │ │ └── verification-report.md │ └── workflows/ │ ├── add-phase.md │ ├── add-tests.md │ ├── add-todo.md │ ├── audit-milestone.md │ ├── audit-uat.md │ ├── autonomous.md │ ├── check-todos.md │ ├── cleanup.md │ ├── complete-milestone.md │ ├── diagnose-issues.md │ ├── discovery-phase.md │ ├── discuss-phase.md │ ├── do.md │ ├── execute-phase.md │ ├── execute-plan.md │ ├── fast.md │ ├── health.md │ ├── help.md │ ├── insert-phase.md │ ├── list-phase-assumptions.md │ ├── map-codebase.md │ ├── new-milestone.md │ ├── new-project.md │ ├── next.md │ ├── node-repair.md │ ├── note.md │ ├── pause-work.md │ ├── plan-milestone-gaps.md │ ├── plan-phase.md │ ├── plant-seed.md │ ├── pr-branch.md │ ├── profile-user.md │ ├── progress.md │ ├── quick.md │ ├── remove-phase.md │ ├── research-phase.md │ ├── resume-project.md │ ├── review.md │ ├── session-report.md │ ├── settings.md │ ├── ship.md │ ├── stats.md │ ├── transition.md │ ├── ui-phase.md │ ├── ui-review.md │ ├── update.md │ ├── validate-phase.md │ ├── verify-phase.md │ └── verify-work.md ├── hooks/ │ ├── gsd-check-update.js │ ├── gsd-context-monitor.js │ ├── gsd-statusline.js │ └── gsd-workflow-guard.js ├── package.json ├── scripts/ │ ├── build-hooks.js │ └── run-tests.cjs └── tests/ ├── agent-frontmatter.test.cjs ├── antigravity-install.test.cjs ├── claude-md.test.cjs ├── codex-config.test.cjs ├── commands.test.cjs ├── config.test.cjs ├── copilot-install.test.cjs ├── core.test.cjs ├── cursor-conversion.test.cjs ├── dispatcher.test.cjs ├── frontmatter-cli.test.cjs ├── frontmatter.test.cjs ├── helpers.cjs ├── init.test.cjs ├── milestone.test.cjs ├── model-profiles.test.cjs ├── path-replacement.test.cjs ├── phase.test.cjs ├── profile-output.test.cjs ├── profile-pipeline.test.cjs ├── quick-branching.test.cjs ├── quick-research.test.cjs ├── roadmap.test.cjs ├── runtime-converters.test.cjs ├── state.test.cjs ├── template.test.cjs ├── uat.test.cjs ├── verify-health.test.cjs └── verify.test.cjs