Prerequisites
Before using Sequant, ensure you have the following tools installed and configured.
Required
Section titled “Required”Claude Code
Section titled “Claude Code”Sequant is built for Claude Code, Anthropic’s AI coding assistant.
# Verify installationclaude --versionGitHub CLI
Section titled “GitHub CLI”The GitHub CLI (gh) is required for issue integration. You must be authenticated.
# Install (macOS)brew install gh
# Install (Linux)apt install gh
# Authenticategh auth login
# Verifygh auth statusNode.js 18+
Section titled “Node.js 18+”Node.js 18 or higher is required for the CLI.
# Check versionnode --version# Should output v18.x.x or higherGit is required for worktree support.
# Check versiongit --versionOptional
Section titled “Optional”jq improves hook performance but is not required. Sequant falls back to grep if jq is not installed.
# Install (macOS)brew install jq
# Install (Linux)apt install jq
# Verifyjq --versionMCP Servers
Section titled “MCP Servers”Sequant works fully without MCP servers, but these optional integrations enhance specific workflows:
- Chrome DevTools MCP — Browser automation for
/testand/testgen - Context7 MCP — Library documentation lookup during
/exec - Sequential Thinking MCP — Complex reasoning for
/fullsolve
See MCP Integrations for setup instructions.
Platform Notes
Section titled “Platform Notes”| Platform | Status | Notes |
|---|---|---|
| macOS | ✅ Full support | All features work |
| Linux | ✅ Full support | Bash required |
| Windows WSL | ✅ Full support | Use WSL2 |
| Windows Native | ⚠️ Limited | CLI works, shell scripts require WSL |
For Windows users, we recommend using WSL2 for the full Sequant experience.
Verification
Section titled “Verification”Run the doctor command to check all prerequisites:
npx sequant doctorThis command verifies:
- Node.js version
- GitHub CLI authentication
- Git availability
- Optional MCP configurations