Agent skill

learn-about-omc

Analyze your OMC usage patterns and get personalized recommendations

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/analysis/learn-about-omc-yeachan-heo-oh-my-claudecode/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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's inside
Steps it walks through
  1. What It Does
  2. Implementation
  3. Step 1: Gather Data
  4. Step 2: Analyze Agent Usage (if token data exists)
  5. Step 3: Generate Recommendations
  6. Step 4: Output Report
  7. Graceful Degradation
  8. Example Output
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going