Skip to content

Installation

Requirements

  • Node.js 18+
  • A coding agent: Claude Code, Cursor, or anything that reads AGENTS.md (Codex CLI, OpenClaw, …)

Installs to ~/.claude/skills/shipd-olympus/, available in every project:

bash
npx shipd-olympus-skill

Claude Code (current project only)

Installs to ./.claude/skills/shipd-olympus/:

bash
npx shipd-olympus-skill --project

Cursor

Installs as a rule at ./.cursor/rules/shipd-olympus.mdc (agent-requested, not always-on):

bash
npx shipd-olympus-skill --cursor

AGENTS.md-based agents (Codex CLI, etc.)

Writes ./skills/shipd-olympus.md and appends a pointer to ./AGENTS.md:

bash
npx shipd-olympus-skill --agents

Everything at once

bash
npx shipd-olympus-skill --all

From GitHub (before npm publish)

bash
npx github:mashhoorahdal/shipd-olympus-skill

Verify

Claude Code: start a new session and type /shipd-olympus — the skill should load. Or check the file exists:

bash
cat ~/.claude/skills/shipd-olympus/SKILL.md | head -5

Uninstall

Delete the installed file(s); there is no other state:

bash
rm -rf ~/.claude/skills/shipd-olympus        # Claude global
rm -rf .claude/skills/shipd-olympus          # Claude project
rm -f .cursor/rules/shipd-olympus.mdc        # Cursor
rm -f skills/shipd-olympus.md                # AGENTS.md agents (also remove the AGENTS.md pointer)