Installation
Requirements
- Node.js 18+
- A coding agent: Claude Code, Cursor, or anything that reads
AGENTS.md(Codex CLI, OpenClaw, …)
Claude Code (global — recommended)
Installs to ~/.claude/skills/shipd-olympus/, available in every project:
bash
npx shipd-olympus-skillClaude Code (current project only)
Installs to ./.claude/skills/shipd-olympus/:
bash
npx shipd-olympus-skill --projectCursor
Installs as a rule at ./.cursor/rules/shipd-olympus.mdc (agent-requested, not always-on):
bash
npx shipd-olympus-skill --cursorAGENTS.md-based agents (Codex CLI, etc.)
Writes ./skills/shipd-olympus.md and appends a pointer to ./AGENTS.md:
bash
npx shipd-olympus-skill --agentsEverything at once
bash
npx shipd-olympus-skill --allFrom GitHub (before npm publish)
bash
npx github:mashhoorahdal/shipd-olympus-skillVerify
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 -5Uninstall
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)