원클릭으로
omc-default
Configure OMC in local project (.claude/CLAUDE.md)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Configure OMC in local project (.claude/CLAUDE.md)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Cancel active autopilot session
Deep analysis and investigation
Strategic planning with interview workflow
Self-referential loop until task completion with architect verification
Test-Driven Development enforcement skill - write tests first, always
Start a planning session with Planner
SOC 직업 분류 기준
| name | omc-default |
| description | Configure OMC in local project (.claude/CLAUDE.md) |
| user-invocable | true |
CRITICAL: This skill ALWAYS downloads fresh CLAUDE.md from GitHub to your local project. DO NOT use the Write tool - use bash curl exclusively.
Ensure the local project has a .claude directory:
# Create .claude directory in current project
mkdir -p .claude && echo "✅ .claude directory created" || echo "❌ Failed to create .claude directory"
Execute this bash command to download fresh CLAUDE.md to local project config:
# Download fresh CLAUDE.md to project-local .claude/
curl -fsSL "https://raw.githubusercontent.com/Yeachan-Heo/oh-my-claudecode/main/docs/CLAUDE.md" -o .claude/CLAUDE.md && \
echo "✅ CLAUDE.md downloaded successfully to .claude/CLAUDE.md" || \
echo "❌ Failed to download CLAUDE.md"
Note: The downloaded CLAUDE.md includes Context Persistence instructions with <remember> tags for surviving conversation compaction.
MANDATORY: Always run this command. Do NOT skip. Do NOT use Write tool.
FALLBACK if curl fails: Tell user to manually download from: https://raw.githubusercontent.com/Yeachan-Heo/oh-my-claudecode/main/docs/CLAUDE.md
The oh-my-claudecode plugin provides all hooks automatically via the plugin system. Verify the plugin is enabled:
grep -q "oh-my-claudecode" ~/.claude/settings.json && echo "Plugin enabled" || echo "Plugin NOT enabled"
If plugin is not enabled, instruct user:
Run:
claude /install-plugin oh-my-claudecodeto enable the plugin.
After completing all steps, report:
✅ OMC Project Configuration Complete
Note: This configuration is project-specific and won't affect other projects or global settings.
After installing oh-my-claudecode updates (via npm or plugin update), run /omc-default again in your project to get the latest CLAUDE.md configuration. This ensures you have the newest features and agent configurations.
/omc-default (this command): Creates ./.claude/CLAUDE.md in your current project/omc-default-global: Creates ~/.claude/CLAUDE.md for all projectsProject-scoped configuration takes precedence over global configuration.