learn-about-omc
Analyze your OMC usage patterns and get personalized recommendations
npx skills add majiayu000/claude-skill-registry --skill learn-about-omc-yeachan-heo-oh-my-claudecode --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Learn About OMC Analyzes your oh-my-claudecode usage and provides tailored recommendations to improve your workflow. ## What It Does 1. Reads token tracking from `~/.omc/state/token-tracking.jsonl` 2. Reads session history from `.omc/state/session-history.json` 3. Analyzes agent usage patterns 4. Identifies underutilized features 5. Recommends configuration changes ## Implementation ### Step 1: Gather Data ```bash # Check for token tracking data TOKEN_FILE="$HOME/.omc/state/token-tracking.jsonl" SESSION_FILE=".omc/state/session-history.json" CONFIG_FILE="$HOME/.claude/.omc-config.json" echo "📊 Analyzing OMC Usage..." echo "" # Check what data is available HAS_TOKENS=false HAS_SESSIONS=false HAS_CONFIG=false if [[ -f "$TOKEN_FILE" ]]; then HAS_TOKENS=true TOKEN_COUNT=$(wc -l < "$TOKEN_FILE") echo "Token records found: $TOKEN_COUNT" fi if [[ -f "$SESSION_FILE" ]]; then HAS_SESSIONS=true SESSION_COUNT=$(cat "$SESSION_FILE" | jq '.sessions | length' 2>/dev/null || echo "0") echo "Sessions found: $SESSION_COUNT" fi if [[ -f "$CONFIG_FILE" ]]; then HAS_CONFIG=true DEFAULT_MODE=$(cat "$CONFIG_FILE" | jq -r '.defaultExecutionMode // "not set"') echo "Default execution mode: $DEFAULT_MOD
- What It Does
- Implementation
- Step 1: Gather Data
- Step 2: Analyze Agent Usage (if token data exists)
- Step 3: Generate Recommendations
- Step 4: Output Report
- Graceful Degradation
- Example Output
Check for token tracking data echo "📊 Analyzing OMC Usage..." echo "" Check what data is available if [[ -f "$TOKEN_FILE" ]]; then echo "Token records found: $TOKEN_COUNT" fi if [[ -f "$SESSION_FILE" ]]; then echo "Sessions found: $SESSION_COUNT" if [[ -f "$CONFIG_FILE" ]]; then
What does the learn-about-omc skill do?
Analyze your OMC usage patterns and get personalized recommendations
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill learn-about-omc-yeachan-heo-oh-my-claudecode --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
