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.

Prefer one-click? Install through the Godmode MCP server instead — see MCP setup. The MCP install handles the unzip and folder placement for you.

Pick your skill

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

  1. 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.
  2. Trigger the skill by prefixing your task with the trigger phrase from the section above.
  3. Confirm it's loaded — type /help in Claude Code and check the available skills list.

Troubleshooting

Links