Installation & Setup
Quick Reference
- Time: ~2 minutes
- Prerequisites: Claude Code CLI (or another supported AI platform)
- Difficulty: Beginner
Method 0: NPM (Universal — Fastest)
The quickest way to install CodyMaster on any platform.
npm install -g codymasterThen run the interactive setup:
codymasterThis gives you:
- The
cm/cody/codymasterCLI commands - Interactive platform installer (auto-detects your AI tools)
- Dashboard, task management, and all 34 skills
Works on Mac, Linux, and Windows. Requires Node.js 18+.
Method 1: Claude Code (Recommended)
Cody Master installs as a Claude Code plugin bundle — no npm, no separate server, nothing to maintain.
Step 1: Add the Marketplace
Open your terminal and run:
claude plugin marketplace add tody-agent/codymasterStep 2: Install All 34 Skills
One command installs everything:
claude plugin install cm@codymasterAll 34 skills ship as a single plugin:
| Domain | Skills |
|---|---|
| 🔧 Engineering | cm-tdd, cm-debugging, cm-quality-gate, cm-test-gate, cm-code-review |
| ⚙️ Operations | cm-safe-deploy, cm-identity-guard, cm-git-worktrees, cm-terminal, cm-secret-shield, cm-safe-i18n |
| 🎨 Product | cm-planning, cm-brainstorm-idea, cm-ux-master, cm-ui-preview, cm-dockit, cm-readit, cm-project-bootstrap, cm-jtbd |
| 📈 Growth | cm-content-factory, cm-ads-tracker, cro-methodology |
| 🎯 Orchestration | cm-execution, cm-continuity, cm-skill-chain, cm-skill-index, cm-skill-mastery, cm-deep-search, cm-how-it-work |
| 🖥️ Workflow | cm-start, cm-dashboard, cm-status |
Step 3: Verify
claude plugin listYou should see cm listed as installed.
One-Liner Alternative
If you prefer to see all commands at once without navigating menus:
bash <(curl -fsSL https://raw.githubusercontent.com/tody-agent/codymaster/main/install.sh) --claudeMethod 2: Gemini CLI / Google Antigravity
Option A: Auto-installer (Recommended)
bash <(curl -fsSL https://raw.githubusercontent.com/tody-agent/codymaster/main/install.sh) --antigravityThis automatically clones the repo and copies all 34 skills to ~/.gemini/antigravity/skills/.
Option B: Manual clone + copy
# Clone once
git clone --depth 1 https://github.com/tody-agent/codymaster.git ~/.cody-master
# Copy skills to Antigravity
cp -r ~/.cody-master/skills/* ~/.gemini/antigravity/skills/TIP
GEMINI.md: Add skill references to your project's GEMINI.md:
@~/.gemini/antigravity/skills/cm-skill-index/SKILL.md
@~/.gemini/antigravity/skills/cm-continuity/SKILL.md
@~/.gemini/antigravity/skills/cm-start/SKILL.mdMethod 3: Cursor
In Cursor Agent chat, run:
/add-plugin cmOr search for codymaster in the Cursor plugin marketplace.
Method 4: Codex
Tell Codex:
Fetch and follow instructions from https://raw.githubusercontent.com/tody-agent/codymaster/main/.codex/INSTALL.mdMethod 6: Aider
bash <(curl -fsSL https://raw.githubusercontent.com/tody-agent/codymaster/main/install.sh) --aiderSkills will be copied to ~/.aider/skills/.
Method 7: Continue.dev
bash <(curl -fsSL https://raw.githubusercontent.com/tody-agent/codymaster/main/install.sh) --continueSkills will be copied to ~/.continue/rules/.
Method 8: Amazon Q CLI
bash <(curl -fsSL https://raw.githubusercontent.com/tody-agent/codymaster/main/install.sh) --amazon-qSkills will be copied to ~/.aws/amazonq/skills/.
Method 9: Amp
bash <(curl -fsSL https://raw.githubusercontent.com/tody-agent/codymaster/main/install.sh) --ampSkills will be copied to ~/.amp/skills/.
Method 10: Manual / Any Platform
Clone the repo and copy skills directly:
# Clone once
git clone https://github.com/tody-agent/codymaster.git ~/.cody-master
# Copy to your platform's skills directory
cp -r ~/.cody-master/skills/* ~/.gemini/antigravity/skills/ # Gemini
cp -r ~/.cody-master/skills/* .gemini/skills/ # Project-local
cp -r ~/.cody-master/skills/* .cursor/skills/ # Cursor
cp -r ~/.cody-master/skills/* .codex/skills/ # Codex
cp -r ~/.cody-master/skills/* .opencode/skills/ # OpenCodeFirst Steps After Installation
Run the interactive onboarding tour — it takes ~2 minutes and shows every skill:
/cm:demoThen use any command by name:
| Command | What it does |
|---|---|
/cm:plan | Brainstorm + architecture + task plan |
/cm:build | TDD implementation (red → green → refactor) |
/cm:debug | 4-phase root cause analysis |
/cm:review | Code review + quality gate |
/cm:deploy | Safe multi-gate deployment |
/cm:ux | UX design + prototyping |
/cm:content | AI content factory |
/cm:bootstrap | New project setup |
Skills also activate automatically when relevant — just describe what you want and the right skill engages.
Updating
# NPM (Universal)
npm update -g codymaster
# Claude Code
claude plugin update cm@codymaster
# Gemini CLI / Antigravity — re-run the installer
bash <(curl -fsSL https://raw.githubusercontent.com/tody-agent/codymaster/main/install.sh) --antigravity
# Or update the clone and re-copy
cd ~/.cody-master && git pull && cp -r skills/* ~/.gemini/antigravity/skills/Troubleshooting
❌ "Plugin not found" or marketplace error
Make sure your Claude Code CLI is up to date:
claude --version
# Should be 1.0 or laterThen retry:
claude plugin marketplace add tody-agent/codymaster❌ Skill not activating
Try invoking explicitly:
Use the cm-planning skill for this taskCheck that the plugin is installed:
claude plugin list❌ curl installer not working
Download and inspect the script manually:
curl -fsSL https://raw.githubusercontent.com/tody-agent/codymaster/main/install.sh -o install.sh
bash install.sh --claudeNext Steps
- Using Skills → — Learn how to invoke and customize skills
- Skills Library → — Browse all 34+ available skills
- Dashboard Guide → — Task tracking with the Kanban board