Oh-my-claudecode setup
Use first for install/update routing — sends setup, doctor, or MCP requests to the correct OMC setup flow
install
source · Clone the upstream repo
git clone https://github.com/Yeachan-Heo/oh-my-claudecode
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Yeachan-Heo/oh-my-claudecode "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/setup" ~/.claude/skills/yeachan-heo-oh-my-claudecode-setup && rm -rf "$T"
manifest:
skills/setup/SKILL.mdsource content
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 path
Routing
Process the request by the first argument only so install/setup questions land on the right flow immediately:
- No argument,
,wizard
,local
, orglobal
-> route to--force
with the same remaining args/oh-my-claudecode:omc-setup
-> route todoctor
with everything after the/oh-my-claudecode:omc-doctor
tokendoctor
-> route tomcp
with everything after the/oh-my-claudecode:mcp-setup
tokenmcp
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 github
Notes
,/oh-my-claudecode:omc-setup
, and/oh-my-claudecode:omc-doctor
remain valid compatibility entrypoints./oh-my-claudecode:mcp-setup- Prefer
in new documentation and user guidance./oh-my-claudecode:setup
Task: {{ARGUMENTS}}