
Setup
- 388 installs
- 38.3k repo stars
- Updated August 4, 2026
- yeachan-heo/oh-my-claudecode
setup is a Claude Code skill that routes oh-my-claudecode install, doctor, and MCP configuration requests to the correct OMC flow for developers who need a unified onboarding entrypoint.
About
setup is a level-2 oh-my-claudecode skill that exposes `/oh-my-claudecode:setup` as the single configuration entrypoint for Claude Code sessions. The skill inspects only the first CLI argument and delegates to one of three flows: a full setup wizard (`omc-setup`), installation diagnostics (`omc-doctor`), or MCP server configuration (`mcp-setup`). Supported invocations include `/oh-my-claudecode:setup`, `/oh-my-claudecode:setup doctor`, `/oh-my-claudecode:setup mcp`, and `/oh-my-claudecode:setup wizard --local`, while legacy slash commands remain for compatibility. Developers reach for setup when onboarding a new machine, repairing a broken OMC install, or wiring MCP servers before running multi-agent workflows. The routing design prevents misrouted setup questions and keeps documentation aligned on one canonical command instead of three separate entrypoints. Terminal users can also run `omc setup` or `omc doctor` from the npm CLI path after installing oh-my-claudecode.
- Tool support
Setup by the numbers
- 388 all-time installs (skills.sh)
- +6 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #113 of 782 Skill Development skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/yeachan-heo/oh-my-claudecode --skill setupAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 388 |
|---|---|
| repo stars | ★ 38.3k |
| Last updated | August 4, 2026 |
| Repository | yeachan-heo/oh-my-claudecode ↗ |
How do you configure oh-my-claudecode setup in Claude Code?
Specialized Claude Code extension
Who is it for?
Developers installing or repairing oh-my-claudecode in Claude Code who want one slash command for wizard, doctor, and MCP flows.
Skip if: Developers who only need application feature code without OMC plugin installation, MCP wiring, or Claude Code orchestration setup.
When should I use this skill?
User asks to install, update, diagnose, or configure MCP for oh-my-claudecode or mentions `/oh-my-claudecode:setup`.
What you get
Routed OMC setup wizard, doctor diagnostics, or MCP configuration session with compatible legacy command mapping.
- Routed setup wizard session
- Doctor diagnostic report
- MCP server configuration
By the numbers
- Level-2 skill with 3 routed setup flows: wizard, doctor, and MCP
- Supports 4 primary invocations: setup, setup doctor, setup mcp, setup wizard --local
Files
Setup
Use /oh-my-claudecode:setup as the unified setup/configuration entrypoint.
Usage
/oh-my-claudecode:setup # full setup wizard
/oh-my-claudecode:setup doctor # installation diagnostics
/oh-my-claudecode:setup mcp # MCP server configuration
/oh-my-claudecode:setup wizard --local # explicit wizard pathRouting
Process the request by the first argument only so install/setup questions land on the right flow immediately:
- No argument,
wizard,local,global, or--force-> route to/oh-my-claudecode:omc-setupwith the same remaining args doctor-> route to/oh-my-claudecode:omc-doctorwith everything after thedoctortokenmcp-> route to/oh-my-claudecode:mcp-setupwith everything after themcptoken
Examples:
/oh-my-claudecode:setup --local # => /oh-my-claudecode:omc-setup --local
/oh-my-claudecode:setup doctor --json # => /oh-my-claudecode:omc-doctor --json
/oh-my-claudecode:setup mcp github # => /oh-my-claudecode:mcp-setup githubNotes
/oh-my-claudecode:omc-setup,/oh-my-claudecode:omc-doctor, and/oh-my-claudecode:mcp-setupremain valid compatibility entrypoints.- Prefer
/oh-my-claudecode:setupin new documentation and user guidance.
Task: {{ARGUMENTS}}
Related skills
How it compares
Pick setup over individual omc-setup or mcp-setup skills when you want one documented entrypoint that auto-routes install, diagnostics, and MCP configuration.
FAQ
What does oh-my-claudecode setup route?
The setup skill routes the first argument of `/oh-my-claudecode:setup` to omc-setup (wizard/local/global/--force), omc-doctor (doctor), or mcp-setup (mcp), keeping legacy slash commands working.
How do you run OMC installation diagnostics?
Run `/oh-my-claudecode:setup doctor` inside Claude Code; setup forwards arguments to `/oh-my-claudecode:omc-doctor`, including optional flags like `--json` for machine-readable output.