Back to skills
SkillHub ClubShip Full StackFull Stack
note
Save notes to notepad.md for compaction resilience
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Stars
10,395
Hot score
99
Updated
March 20, 2026
Overall rating
C5.0
Composite score
5.0
Best-practice grade
A85.2
Install command
npx @skill-hub/cli install yeachan-heo-oh-my-claudecode-note
Repository
Yeachan-Heo/oh-my-claudecode
Skill path: skills/note
Save notes to notepad.md for compaction resilience
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: Yeachan-Heo.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install note into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/Yeachan-Heo/oh-my-claudecode before adding note to shared team environments
- Use note for development workflows
Works across
Claude CodeCodex CLIGemini CLIOpenCode
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
--- name: note description: Save notes to notepad.md for compaction resilience --- # Note Skill Save important context to `.omc/notepad.md` that survives conversation compaction. ## Usage | Command | Action | |---------|--------| | `/oh-my-claudecode:note <content>` | Add to Working Memory with timestamp | | `/oh-my-claudecode:note --priority <content>` | Add to Priority Context (always loaded) | | `/oh-my-claudecode:note --manual <content>` | Add to MANUAL section (never pruned) | | `/oh-my-claudecode:note --show` | Display current notepad contents | | `/oh-my-claudecode:note --prune` | Remove entries older than 7 days | | `/oh-my-claudecode:note --clear` | Clear Working Memory (keep Priority + MANUAL) | ## Sections ### Priority Context (500 char limit) - **Always** injected on session start - Use for critical facts: "Project uses pnpm", "API in src/api/client.ts" - Keep it SHORT - this eats into your context budget ### Working Memory - Timestamped session notes - Auto-pruned after 7 days - Good for: debugging breadcrumbs, temporary findings ### MANUAL - Never auto-pruned - User-controlled permanent notes - Good for: team contacts, deployment info ## Examples ``` /oh-my-claudecode:note Found auth bug in UserContext - missing useEffect dependency /oh-my-claudecode:note --priority Project uses TypeScript strict mode, all files in src/ /oh-my-claudecode:note --manual Contact: [email protected] for backend questions /oh-my-claudecode:note --show /oh-my-claudecode:note --prune ``` ## Behavior 1. Creates `.omc/notepad.md` if it doesn't exist 2. Parses the argument to determine section 3. Appends content with timestamp (for Working Memory) 4. Warns if Priority Context exceeds 500 chars 5. Confirms what was saved ## Integration Notepad content is automatically loaded on session start: - Priority Context: ALWAYS loaded - Working Memory: Loaded if recent entries exist This helps survive conversation compaction without losing critical context.