From fabrik
Bootstrap a project to use Fabrik (the GitHub-Project-driven SDLC pipeline orchestrator that drives Claude Code workers through Specify/Research/Plan/Implement/Review/Validate stages). Use this skill when the user wants to install, set up, initialize, or get started with Fabrik for the first time — especially when they ask "how do I get started with Fabrik", "install Fabrik", "set up Fabrik in this project", or mention Fabrik in a project where no `.fabrik/` directory exists yet. Walks through prerequisites, binary install, GitHub Project board setup, `fabrik init`, secret configuration, and the first run.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fabrik:fabrik-setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill guides a user through installing Fabrik and standing it up for the first time in their project. Don't run any of these steps yourself unsolicited — walk the user through them, confirm their environment, and let them execute. Authoritative docs live at https://fabrik.handarbeit.io — link the user there rather than reproducing details that may drift.
This skill guides a user through installing Fabrik and standing it up for the first time in their project. Don't run any of these steps yourself unsolicited — walk the user through them, confirm their environment, and let them execute. Authoritative docs live at https://fabrik.handarbeit.io — link the user there rather than reproducing details that may drift.
Confirm the user has — or help them obtain — each of these. Don't proceed past step 0 until prerequisites are in place.
claude --version if uncertain.ghp_...) with repo, project, and workflow scopes. Fine-grained tokens (github_pat_...) are not supported — GitHub Projects v2 GraphQL requires a classic PAT. Create one at https://github.com/settings/tokens (select "Tokens (classic)").gh CLI authenticated (gh auth status) — needed for the binary download path and convenient for many Fabrik workflows.If they're missing prerequisites, get them sorted first. Don't paper over a missing PAT with vague instructions; the token type matters and getting it wrong is a common failure mode.
Two paths. Strongly prefer the release binary unless the user has a reason to build from source.
Option A — release binary (recommended):
cd ~/bin # or any directory on PATH
gh release download --repo handarbeit/fabrik \
--pattern "fabrik_*_$(uname -s | tr A-Z a-z)_$(uname -m | sed 's/x86_64/amd64/' | sed 's/aarch64/arm64/').tar.gz" \
-O - | tar xz
Option B — build from source:
git clone https://github.com/handarbeit/fabrik.git
cd fabrik
go build -o fabrik .
Verify with fabrik --version.
From the directory where you want Fabrik to run (typically a sibling to your repo checkouts, not inside one — Fabrik bare-clones repos into .fabrik/repos/ and creates worktrees as siblings):
mkdir ~/my-fabrik-dir && cd ~/my-fabrik-dir
fabrik init --user <github-username> https://github.com/orgs/<org>/projects/<N>
This creates:
.fabrik/stages/ — stage YAML configs (commit these to git if you want them version-controlled per project).fabrik/plugin/ — the worker-side Claude Code plugin (gitignored; refreshed by fabrik upgrade).fabrik/config.yaml — project config template, populated with values from the Project URLIf the user runs fabrik init without a URL it falls back to interactive prompts, or writes a commented template if non-interactive.
Add a gitignored .env next to .fabrik/:
FABRIK_TOKEN=ghp_...
Important: when a .git/ directory is present, Fabrik refuses to start unless .env is listed in .gitignore. This is a token-leak guard, not a bug.
The Project board needs a status column for each stage. The default pipeline expects, in order:
Backlog → Specify → Research → Plan → Implement → Review → Validate → Done
Column names must match name: in the stage YAML files exactly (case-sensitive). On startup, Fabrik validates this and refuses to start if any non-cleanup stage is missing from the board — so it's worth getting right before the first run.
If the user wants a custom pipeline they should edit .fabrik/stages/*.yaml and rename columns to match. This is a deeper customization — point them at the User Guide before going down that road.
cd ~/my-fabrik-dir
fabrik
Fabrik will poll the board every 30s, validate column names against stage YAML, and start dispatching workers when issues land in the Specify column. To kick off the first issue: create one in the repo, add it to the Project, set its status to Specify, and watch.
Useful flags for the first run:
fabrik --once — single poll cycle, useful for debugging.fabrik --verbose — more log detail.? for keybinds.Global Claude Code plugins can interfere with worker sessions. The superpowers plugin in particular causes duplicate comments. Check with:
ls ~/.claude/plugins/cache/claude-plugins-official/
If superpowers appears, recommend removing it. This only matters on machines that run Fabrik as a worker host — installing other Claude Code plugins (like this fabrik plugin) for the user's interactive session is fine.
Once they're up:
fabrik:fabrik supervisor skill (ambient, will load itself once .fabrik/ exists)..fabrik/ — if .fabrik/ exists, Fabrik is already initialized; the user wants the supervisor skill, not setup. If they're trying to re-init or upgrade, point them at fabrik upgrade rather than re-running fabrik init.npx claudepluginhub handarbeit/fabrik --plugin fabrikGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.