note_skill
- TypeScript
9k
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill yeachan-heo/oh-my-claudecode --skill note- SKILL.md1.9 KB
Overview
This skill saves important context to a persistent in-repo notepad file so key facts survive conversation compaction. It provides simple commands to append, view, prune, and clear notes across three durable sections: Priority, Working Memory, and MANUAL. Use it to keep critical project facts, debugging breadcrumbs, and permanent team info accessible across agent sessions.
How this skill works
The skill creates and updates a .omc/notepad.md file and parses command flags to determine where to store content. It timestamps Working Memory entries, enforces a 500-character limit for Priority Context, and loads Priority and recent Working Memory entries automatically at session start. Commands allow showing contents, pruning older working entries, and clearing temporary notes while preserving priority and MANUAL entries.
When to use it
- Save short, critical facts that must always load at session start (Priority).
- Record session-specific findings, errors, or debugging steps (Working Memory).
- Store permanent references like team contacts, secrets locations, or deployment notes (MANUAL).
- Quickly capture context before a session compaction or agent handoff.
- Inspect or prune accumulated ephemeral notes to avoid bloat.
Best practices
- Keep Priority Context concise (under 500 characters) to avoid eating context budget.
- Use timestamps and short sentences in Working Memory for readable debugging trails.
- Reserve MANUAL for long-lived entries that should never be auto-pruned.
- Prune Working Memory regularly (older than 7 days) to reduce noise.
- Confirm saved content with the --show command after critical updates.
Example use cases
- Add a quick note about a reproducible bug encountered during testing.
- Mark the project package manager or important config paths in Priority so agents always know them.
- Store an internal contact email or deployment URL in MANUAL for future lookups.
- Log step-by-step troubleshooting notes across a debugging session.
- Clear ephemeral notes after a release while keeping permanent documentation intact.
FAQ
Use the --manual flag to append content to the MANUAL section, which is never auto-pruned.
What happens if Priority exceeds 500 characters?
The skill warns you that the Priority Context is too long so you can shorten it and avoid context budget issues.
Can I view the current notepad?
Yes. Use the --show flag to display the full notepad contents.