Installation
Prerequisites
Section titled “Prerequisites”- Claude Code installed and authenticated
gitandbash(macOS / Linux / WSL on Windows)
No other dependencies.
Install all commands
Section titled “Install all commands”-
Clone the repository
Terminal window git clone https://github.com/Oladiman/iron-scrolls.git -
Run the installer
Terminal window cd iron-scrollsbash install.shThe 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. -
Open any project in Claude Code and run a command
/seo-audit/accessibility-audit/performance-audit/security-audit/pr-review/api-design-review/test-coverageAll 7 commands are available in every project immediately — no restart needed.
Install a single command manually
Section titled “Install a single command manually”If you only want one command without cloning the whole repo:
mkdir -p ~/.claude/commands
curl -o ~/.claude/commands/seo-audit.md \ https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/seo-audit.md
# /accessibility-auditcurl -o ~/.claude/commands/accessibility-audit.md \ https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/accessibility-audit.md
# /performance-auditcurl -o ~/.claude/commands/performance-audit.md \ https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/performance-audit.md
# /security-auditcurl -o ~/.claude/commands/security-audit.md \ https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/security-audit.md
# /pr-reviewcurl -o ~/.claude/commands/pr-review.md \ https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/pr-review.md
# /api-design-reviewcurl -o ~/.claude/commands/api-design-review.md \ https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/api-design-review.md
# /test-coveragecurl -o ~/.claude/commands/test-coverage.md \ https://raw.githubusercontent.com/Oladiman/iron-scrolls/main/commands/test-coverage.mdUpdate to the latest commands
Section titled “Update to the latest commands”When new commands are added or existing ones are updated:
cd iron-scrolls # wherever you cloned itgit pullbash install.shThe installer overwrites any changed commands and reports what was updated.
Windows
Section titled “Windows”Run all commands inside a WSL terminal. The installer writes to ~/.claude/commands/
which Claude Code on Windows reads from the WSL home directory.
Git Bash supports bash install.sh natively. The ~ path resolves to your Windows home
folder (C:\Users\yourname), which is where Claude Code looks for commands on Windows.
Where commands are stored
Section titled “Where commands are stored”~/.claude/commands/├── seo-audit.md├── accessibility-audit.md├── performance-audit.md├── security-audit.md├── pr-review.md├── api-design-review.md└── test-coverage.mdEach .md file is one slash command. The filename (without .md) becomes the command name.