Skip to content

Quickstart

Get from zero to your first solved issue in 5 minutes.

  • Claude Code installed
  • GitHub CLI authenticated (gh auth login)
  • A GitHub repository with at least one open issue
Terminal window
npx sequant init
npx sequant doctor # Verify setup
/fullsolve 123

This runs the complete pipeline: plan → implement → test → review → fix iterations.

/spec 123 # Plan implementation, draft ACs
/exec 123 # Build in isolated worktree
/qa 123 # Review against ACs

If QA finds issues, run /loop 123 to auto-fix.

/docs 123 # Generate documentation (if needed)
gh pr merge --squash # Merge the PR
Terminal window
npx sequant run 1 2 3 # Solve issues in parallel
npx sequant run 123 --quality-loop # Auto-fix until QA passes

After batch completion, verify integration before merging:

Terminal window
npx sequant merge --check # Detect conflicts, mirroring gaps, overlaps
/merger 1 2 3 # Merge all issues
CommandPurpose
/fullsolve 123Complete pipeline in one command
/spec 123Plan implementation
/exec 123Implement in isolated worktree
/qa 123Code review + quality gates
/loop 123Auto-fix QA failures
/docs 123Generate documentation