skills/checkout/SKILL.md
Analyze Git changes and suggest appropriate branch names.
npx skillsauth add thkt/claude-config checkoutInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
$ARGUMENTS (optional)$ARGUMENTS is empty → analyze git diff/status only| Step | Action |
| ---- | ----------------------------------------------------- |
| 1 | Read changes: git status, git diff (parallel) |
| 2 | Generate 3 branch name candidates (see Branch Naming) |
| 3 | Present options via AskUserQuestion with reasons |
| 4 | Create selected branch via git checkout -b |
| Prefix | Use Case | Trigger | | --------- | -------------------- | --------------------- | | feature/ | New functionality | New files, components | | fix/ | Bug fixes | Error corrections | | refactor/ | Code improvements | Restructuring | | docs/ | Documentation | .md files, README | | test/ | Test additions/fixes | Test files | | chore/ | Maintenance | Dependencies, config | | perf/ | Performance | Optimization, caching |
<type>/<scope>-<description>
<type>/<ticket>-<description>
| Good | Bad |
| -------------------------------- | ------------------------------ |
| feature/auth-add-oauth-support | new-feature (no type) |
| fix/api-resolve-timeout-issue | feature/ADD_USER (uppercase) |
| feature/PROJ-123-user-search | fix/bug (too vague) |
| Do | Don't | | ------------------------- | --------------------------- | | Use lowercase | Use spaces/underscores | | Use hyphens as separators | Use CamelCase/PascalCase | | Keep concise (2-4 words) | Make vague names ("update") | | Include ticket ID | Include dates |
| Error | Action | | ----------------- | ------------------------ | | No changes | Report "No changes" | | Branch exists | Suggest alternative name | | No git repository | Report "Not a git repo" |
Created branch: [selected-branch-name]
tools
Internal helper for /think Step 11. Renders SOW.md + Spec.md as an integrated Astro view and returns a dev server URL.
development
Extract repository spec while detecting bugs, spec gaps, and consistency drift via dual-purpose documentation. OUTCOME.md-axis question-driven exploration with ephemeral output. Do NOT use for code review (use /audit or /polish), feature implementation (use /code), planning only (use /think), or single-bug fix (use /fix).
development
Discover undocumented design decisions and challenge each candidate via critic-design before promotion. Rank by impact and reversibility, produce ADR promotion candidates. Treat each candidate as a position arguing for ADR status, not a fact to be filed. Pairs with audit-adr-drift, which scans existing ADRs for drift against code.
development
Scan ADR Decision sections against current code and report drift with modification direction and priority. Do NOT use for repos without ADRs (use audit-adr-gaps instead).