Skip to content

Prerequisites

Before using Sequant, ensure you have the following tools installed and configured.

Sequant is built for Claude Code, Anthropic’s AI coding assistant.

Terminal window
# Verify installation
claude --version

The GitHub CLI (gh) is required for issue integration. You must be authenticated.

Terminal window
# Install (macOS)
brew install gh
# Install (Linux)
apt install gh
# Authenticate
gh auth login
# Verify
gh auth status

Node.js 18 or higher is required for the CLI.

Terminal window
# Check version
node --version
# Should output v18.x.x or higher

Git is required for worktree support.

Terminal window
# Check version
git --version

jq improves hook performance but is not required. Sequant falls back to grep if jq is not installed.

Terminal window
# Install (macOS)
brew install jq
# Install (Linux)
apt install jq
# Verify
jq --version

Sequant works fully without MCP servers, but these optional integrations enhance specific workflows:

  • Chrome DevTools MCP — Browser automation for /test and /testgen
  • Context7 MCP — Library documentation lookup during /exec
  • Sequential Thinking MCP — Complex reasoning for /fullsolve

See MCP Integrations for setup instructions.

PlatformStatusNotes
macOS✅ Full supportAll features work
Linux✅ Full supportBash required
Windows WSL✅ Full supportUse WSL2
Windows Native⚠️ LimitedCLI works, shell scripts require WSL

For Windows users, we recommend using WSL2 for the full Sequant experience.

Run the doctor command to check all prerequisites:

Terminal window
npx sequant doctor

This command verifies:

  • Node.js version
  • GitHub CLI authentication
  • Git availability
  • Optional MCP configurations