setup_skill
- TypeScript
9.3k
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
3 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill yeachan-heo/oh-my-claudecode --skill setup- SKILL.md1.2 KB
Overview
This skill provides a unified setup entrypoint for installation, diagnostics, and MCP configuration of the Teams-first Multi-agent orchestration for Claude Code. It standardizes how users invoke the setup flow, run health checks, and configure the MCP server across local and global environments. Use this single command to simplify onboarding and troubleshooting.
How this skill works
The skill routes the first CLI argument to one of three internal flows: a full setup wizard, a diagnostic doctor, or an MCP configuration routine. Calling without arguments or with wizard/local/global/--force delegates to the omc-setup flow; doctor and mcp route to omc-doctor and mcp-setup respectively. The routing preserves existing compatibility entrypoints while encouraging the new unified command.
When to use it
- Onboarding a new developer or environment to Claude Code orchestration
- Running installation diagnostics to detect missing dependencies or misconfiguration
- Configuring or reconfiguring the MCP server for multi-agent coordination
- Switching between local and global setup modes or forcing a re-run
- As the recommended entrypoint in new documentation and scripts
Best practices
- Use /oh-my-claudecode:setup as the primary command in docs and scripts to avoid fragmentation
- Run doctor before reporting issues to capture environment diagnostics
- Prefer explicit flags (wizard, --local, --force) when reproducing setups across machines
- Keep legacy entrypoints available for compatibility but migrate references to the unified setup
- Automate setup invocation in CI by passing non-interactive arguments where supported
Example use cases
- Run a full interactive setup for a fresh developer machine: /oh-my-claudecode:setup
- Execute installation diagnostics on a CI agent or developer laptop: /oh-my-claudecode:setup doctor
- Configure MCP server for a local development cluster: /oh-my-claudecode:setup mcp
- Force a global reconfiguration in a shared environment: /oh-my-claudecode:setup --force
- Explicitly launch the local wizard path for reproducible onboarding: /oh-my-claudecode:setup wizard --local
FAQ
Yes. /oh-my-claudecode:omc-setup, /oh-my-claudecode:omc-doctor, and /oh-my-claudecode:mcp-setup remain valid for compatibility.
Which argument triggers the MCP configuration flow?
Use the mcp argument: /oh-my-claudecode:setup mcp to route to the MCP setup routine.