note

Append timestamped notes to .omc/notepad.md with priority and pruning.

Updated Feb 20, 2026
One-click install
npx skills add https://github.com/ssccio/cc-on-web-base --skill note-ssccio
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: note
Source: https://github.com/ssccio/cc-on-web-base/tree/main/skills/note
Command: npx skills add https://github.com/ssccio/cc-on-web-base --skill note-ssccio

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The note skill solves context loss during conversation compaction by ensuring important information is saved to durable notepad storage that can be reloaded on the next session.

Core Features & Use Cases

  • Priority Context (always injected): Stores short, critical facts (up to a 500-character limit) so they are automatically loaded on session start.
  • Working Memory (timestamped, pruned): Records time-scoped notes that help with debugging and temporary findings, then prunes entries older than 7 days.
  • MANUAL (never pruned): Keeps user-controlled permanent notes that are never automatically removed, such as contacts and deployment details.
  • Section-aware saving: Automatically routes content into the correct section based on flags like priority, manual, or default.

Quick Start

Use the note skill to save a key finding into Working Memory by issuing a request like: /oh-my-claudecode:note Found auth bug in UserContext - missing useEffect dependency.

Frequently Asked Questions about note

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I preserve debugging context across conversation compactions?

You preserve debugging context by saving critical findings as timestamped entries into durable notepad storage, ensuring transient breadcrumbs survive session resets and reload automatically.

What's the best way to keep permanent reference notes from being lost during context compaction?

Keep permanent reference notes by saving them into a manual storage section that is never automatically pruned, ensuring deployment details and contacts persist indefinitely across sessions.

How does priority context memory work for always-on facts?

Priority context memory stores short critical facts up to a 500-character limit so they are automatically injected on session start, ensuring always-on facts are immediately available without manual retrieval.

Does working memory automatically prune old debugging breadcrumbs?

Yes, working memory automatically prunes timestamped debugging breadcrumbs older than 7 days, keeping the notepad file optimized while retaining recent temporary findings for active workflows.

Can I use a notepad file to store both temporary and permanent deployment details?

You can store both temporary and permanent deployment details by routing content into different sections, separating 7-day pruned working memory from never-pruned manual notes within the same file.

Why does context compaction cause loss of critical debugging breadcrumbs?

Context compaction causes loss of critical debugging breadcrumbs because it summarizes or discards older conversation history, destroying transient findings unless they are explicitly saved to durable notepad storage.