Skip to content

Installation

  • Claude Code installed and authenticated
  • git and bash (macOS / Linux / WSL on Windows)

No other dependencies.


  1. Clone the repository

    Terminal window
    git clone https://github.com/Oladiman/iron-scrolls.git
  2. Run the installer

    Terminal window
    cd iron-scrolls
    bash install.sh

    The installer creates ~/.claude/commands/ if it doesn’t exist, then copies every command file into it. You’ll see a confirmation line for each command installed.

  3. Open any project in Claude Code and run a command

    /seo-audit
    /accessibility-audit
    /performance-audit
    /security-audit
    /pr-review
    /api-design-review
    /test-coverage

    All 7 commands are available in every project immediately — no restart needed.


If you only want one command without cloning the whole repo:

/seo-audit
mkdir -p ~/.claude/commands
curl -o ~/.claude/commands/seo-audit.md \
https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/seo-audit.md
# /accessibility-audit
curl -o ~/.claude/commands/accessibility-audit.md \
https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/accessibility-audit.md
# /performance-audit
curl -o ~/.claude/commands/performance-audit.md \
https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/performance-audit.md
# /security-audit
curl -o ~/.claude/commands/security-audit.md \
https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/security-audit.md
# /pr-review
curl -o ~/.claude/commands/pr-review.md \
https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/pr-review.md
# /api-design-review
curl -o ~/.claude/commands/api-design-review.md \
https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/api-design-review.md
# /test-coverage
curl -o ~/.claude/commands/test-coverage.md \
https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/test-coverage.md

When new commands are added or existing ones are updated:

Terminal window
cd iron-scrolls # wherever you cloned it
git pull
bash install.sh

The installer overwrites any changed commands and reports what was updated.


Run all commands inside a WSL terminal. The installer writes to ~/.claude/commands/ which Claude Code on Windows reads from the WSL home directory.


~/.claude/commands/
├── seo-audit.md
├── accessibility-audit.md
├── performance-audit.md
├── security-audit.md
├── pr-review.md
├── api-design-review.md
└── test-coverage.md

Each .md file is one slash command. The filename (without .md) becomes the command name.

If these scrolls have served you well —
☕ Support on Ko-fi ♥ GitHub Sponsors