Quick Start
Jump into productive work immediately. No greetings, no open-ended questions.
Usage
/quick-start
Instructions
1. Gather Context (parallel)
Run all of these simultaneously:
git log --oneline -10— recent commitsgit status --short— uncommitted workgit branch --show-current— active branchgit diff --stat HEAD~3..HEAD— recent changes summary- Read
CLAUDE.mdif it exists in the project root - Read
package.jsonorCargo.tomlorpyproject.toml— project identity
2. Check for Pending Work
- Any uncommitted changes? → Flag them
- Any TODO/FIXME in recently modified files? → List top 3
- Any failing checks? Auto-detect and run (timeout 15s):
- Rust:
cargo check --all-features 2>&1 | tail -5 - Node:
npm run test 2>&1 | tail -5 - Python:
pytest --co -q 2>&1 | tail -5
- Rust:
- Open issues? →
gh issue list --state open --limit 5(if in a git repo with remote)
3. Output (concise, under 15 lines)
## [Project Name] — [Branch]
**Last 3 commits:**
- [commit 1]
- [commit 2]
- [commit 3]
**Status:** [clean / N uncommitted files]
**Failing tests:** [none / list]
**Suggested next steps:**
1. [Most obvious next action based on context]
2. [Second suggestion]
3. [Third suggestion]
Rules
- Total execution time: under 15 seconds
- Do NOT ask the user what they want to do — suggest based on context
- Do NOT run a full build or install — only lightweight checks
- Keep output under 15 lines
- If no project config is found, say so and ask what the user wants to work on