Install your skill
After purchase, you got an email with a download button. Pick the skill you bought below and copy-paste the commands. The skill goes into ~/.claude/skills/ — Claude Code reads from there automatically on its next launch.
Pick your skill
- Godmode
- Godmode+
- One-Shot Scripts
- Godmode Evolution
- After install — using your skill
- Troubleshooting
Godmode
Single-file skill. After downloading godmode.zip from the email or account page:
macOS / Linux / Git Bash on Windows:
cd ~/Downloads unzip godmode.zip mkdir -p ~/.claude/skills mv godmode ~/.claude/skills/
Windows PowerShell:
cd $HOME\Downloads Expand-Archive -Path godmode.zip -DestinationPath . New-Item -ItemType Directory -Force -Path $HOME\.claude\skills | Out-Null Move-Item -Path godmode -Destination $HOME\.claude\skills\
Trigger phrase: godmode — e.g. "godmode: build me a personal recipe website".
Godmode+
Multi-file skill — ships with SKILL.md plus a scripts/ folder of phase definitions. The whole folder must land in ~/.claude/skills/godmode-plus/, not just the SKILL.md.
macOS / Linux / Git Bash on Windows:
cd ~/Downloads unzip godmode-plus.zip mkdir -p ~/.claude/skills mv godmode-plus ~/.claude/skills/
Windows PowerShell:
cd $HOME\Downloads Expand-Archive -Path godmode-plus.zip -DestinationPath . New-Item -ItemType Directory -Force -Path $HOME\.claude\skills | Out-Null Move-Item -Path godmode-plus -Destination $HOME\.claude\skills\
After install, the layout under ~/.claude/skills/godmode-plus/ should be:
godmode-plus/
├── SKILL.md
└── scripts/
├── phase-1-recon-plan.md
├── phase-2-build.md
├── phase-3-test.md
├── phase-4-harden.md
├── phase-5-document.md
├── phase-6-verify.md
└── phase-7-polish-report.md
Trigger phrase: godmode+ — e.g. "godmode+: refactor this API for performance".
One-Shot Scripts
Same multi-file pattern as Godmode+ — SKILL.md plus a scripts/ folder containing every phase, the scoring rubric, and the loop mechanics.
macOS / Linux / Git Bash on Windows:
cd ~/Downloads unzip one-shot-scripts.zip mkdir -p ~/.claude/skills mv one-shot-scripts ~/.claude/skills/
Windows PowerShell:
cd $HOME\Downloads Expand-Archive -Path one-shot-scripts.zip -DestinationPath . New-Item -ItemType Directory -Force -Path $HOME\.claude\skills | Out-Null Move-Item -Path one-shot-scripts -Destination $HOME\.claude\skills\
Trigger phrase: one-shot — e.g. "one-shot this API refactor" or "one-shot: build a login system".
Godmode Evolution
Evolution isn't a stand-alone skill — it's a guide for building self-improving variants of any skill you already have. The download is a single Markdown file: godmode-evolution-QUICKSTART.md. Open it in any editor and follow the steps.
It assumes you already have at least one Godmode skill installed. If you don't, install Godmode or Godmode+ first using the steps above.
After install — using your skill
- Restart Claude Code. If a session is already running, exit and reopen it so the skill loader picks up the new directory. New sessions auto-load.
- Trigger the skill by prefixing your task with the trigger phrase from the section above.
- Confirm it's loaded — type
/helpin Claude Code and check the available skills list.
Troubleshooting
-
"Skill not found" or trigger phrase doesn't activate — check the folder is in the right place. Run
ls ~/.claude/skills/(macOS/Linux) ordir $HOME\.claude\skills\(PowerShell). You should see the skill folder. The folder must containSKILL.mdat its root, not nested inside another subfolder. -
"unzip command not found" on Windows — open PowerShell instead of cmd and use
Expand-Archiveas shown above. Or install Git Bash for the Unix commands. -
Zip extracts a nested folder (e.g.
godmode-plus/godmode-plus/SKILL.md) — some unzip GUIs auto-create a wrapper. Move the inner folder up one level:mv godmode-plus/godmode-plus ~/.claude/skills/. - Download link expired — sign in at getgodmode.dev/account and click DOWNLOAD on the relevant skill card. Fresh links mint instantly.
-
Phase scripts reference Node helpers that don't exist (
run-report.jsetc.) — those are optional run-tracking helpers. The skill works without them; the run-report at the end of each task just gets skipped. Full helper bundle install is rolling out shortly. -
Still stuck — email support@getgodmode.dev with the output of
ls ~/.claude/skills/<skill-name>/and we'll sort it.
Links
- Account & re-download: getgodmode.dev/account
- MCP one-click installer: getgodmode.dev/mcp-setup
- Pricing: getgodmode.dev/pricing