omc-default-global
SolidConfigure OMC globally in ~/.claude/CLAUDE.md
AI & Automation 6 stars
1 forks Updated yesterday MIT
Install
Quality Score: 79/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# OMC Default Global
## Task: Configure OMC Default Mode (Global)
**CRITICAL**: This skill ALWAYS downloads fresh CLAUDE.md from GitHub to your global config. DO NOT use the Write tool - use bash curl exclusively.
### Step 1: Download Fresh CLAUDE.md (MANDATORY)
Execute this bash command to erase and download fresh CLAUDE.md to global config:
```bash
# Remove existing CLAUDE.md and download fresh from GitHub
rm -f ~/.claude/CLAUDE.md && \
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"
```
**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
### Step 2: Clean Up Legacy Hooks (if present)
Check if old manual hooks exist and remove them to prevent duplicates:
```bash
# Remove legacy bash hook scripts (now handled by plugin system)
rm -f ~/.claude/hooks/keyword-detector.sh
rm -f ~/.claude/hooks/stop-continuation.sh
rm -f ~/.claude/hooks/persistent-mode.sh
rm -f ~/.claude/hooks/session-start.sh
```
Check `~/.claude/settings.json` for manual hook entries. If the "hooks" key exists with UserPromptSubmit, Stop, or SessionStart entries pointing to bash scripts, inform the user:
> **Note**: Found legacy hooks in settings.js...
Details
- Author
- mazenyassergithub
- Repository
- mazenyassergithub/oh-my-claudecode
- Created
- 4 years ago
- Last Updated
- yesterday
- Language
- TypeScript
- License
- MIT
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
omc-default
Configure OMC in local project (.claude/CLAUDE.md)
6 Updated yesterday
mazenyassergithub AI & Automation Solid
omc-setup
One-time setup for oh-my-claudecode (the ONLY command you need to learn)
6 Updated yesterday
mazenyassergithub AI & Automation Featured
omc-setup
Install or refresh oh-my-claudecode for plugin, npm, and local-dev setups from the canonical setup flow
38,126 Updated today
Yeachan-Heo