Quickstart
Get from zero to your first solved issue in 5 minutes.
Prerequisites
Section titled “Prerequisites”- Claude Code installed
- GitHub CLI authenticated (
gh auth login) - A GitHub repository with at least one open issue
Install Sequant
Section titled “Install Sequant”npx sequant initnpx sequant doctor # Verify setupSolve Your First Issue
Section titled “Solve Your First Issue”The Fast Way
Section titled “The Fast Way”/fullsolve 123This runs the complete pipeline: plan → implement → test → review → fix iterations.
The Step-by-Step Way
Section titled “The Step-by-Step Way”/spec 123 # Plan implementation, draft ACs/exec 123 # Build in isolated worktree/qa 123 # Review against ACsIf QA finds issues, run /loop 123 to auto-fix.
After QA Passes
Section titled “After QA Passes”/docs 123 # Generate documentation (if needed)gh pr merge --squash # Merge the PRBatch Multiple Issues
Section titled “Batch Multiple Issues”npx sequant run 1 2 3 # Solve issues in parallelnpx sequant run 123 --quality-loop # Auto-fix until QA passesAfter batch completion, verify integration before merging:
npx sequant merge --check # Detect conflicts, mirroring gaps, overlaps/merger 1 2 3 # Merge all issuesQuick Reference
Section titled “Quick Reference”| Command | Purpose |
|---|---|
/fullsolve 123 | Complete pipeline in one command |
/spec 123 | Plan implementation |
/exec 123 | Implement in isolated worktree |
/qa 123 | Code review + quality gates |
/loop 123 | Auto-fix QA failures |
/docs 123 | Generate documentation |
Next Steps
Section titled “Next Steps”- Complete Workflow Guide - Post-QA patterns, gap analysis, merge process
- Workflow Phases - Deep dive on each phase
- Quality Gates - What QA checks for