multiAI Summary Pending
setup
Use first for install/update routing — sends setup, doctor, or MCP requests to the correct OMC setup flow
15,270 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/setup/SKILL.md --create-dirs "https://raw.githubusercontent.com/Yeachan-Heo/oh-my-claudecode/main/skills/setup/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/setup/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How setup Compares
| Feature / Agent | setup | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Use first for install/update routing — sends setup, doctor, or MCP requests to the correct OMC setup flow
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Setup
Use `/oh-my-claudecode:setup` as the unified setup/configuration entrypoint.
## Usage
```bash
/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`, `global`, or `--force` -> route to `/oh-my-claudecode:omc-setup` with the same remaining args
- `doctor` -> route to `/oh-my-claudecode:omc-doctor` with everything after the `doctor` token
- `mcp` -> route to `/oh-my-claudecode:mcp-setup` with everything after the `mcp` token
Examples:
```bash
/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`, `/oh-my-claudecode:omc-doctor`, and `/oh-my-claudecode:mcp-setup` remain valid compatibility entrypoints.
- Prefer `/oh-my-claudecode:setup` in new documentation and user guidance.
Task: {{ARGUMENTS}}