setuplisted
Install: claude install-skill sequant-io/sequant
<!-- sequant:local-override -->
> **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/setup/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/setup` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
# Sequant Setup
Initialize Sequant workflow system in your current project.
## Purpose
When invoked as `/sequant:setup` or `/setup`, this skill configures everything a plugin user needs — the equivalent of `sequant init` for npm users.
## Usage
```
/sequant:setup
```
## What It Does
### 1. Check Prerequisites
Verify all required tools are installed and authenticated.
```bash
echo "=== Sequant Prerequisites Check ==="
# 1. Git
if git --version >/dev/null 2>&1; then
echo "✅ git: $(git --version | head -1)"
else
echo "❌ git: not found — install from https://git-scm.com"
PREREQ_FAIL=true
fi
# 2. GitHub CLI
if gh --version >/dev/null 2>&1; then
echo "✅ gh: $(gh --version | head -1)"
if gh auth status >/dev/null 2>&1; then
echo "✅ gh auth: authenticated"
else
echo "❌ gh auth: not authenticated — run 'gh auth login'"
PREREQ_FAIL=true
fi
else
echo "❌ gh: not found — install from https://cli.github.com"
PREREQ_FAIL=true
fi
# 3. Node.js 22.12+ (for MCP server via npx)
i