---
name: note
description: Persistent Omagy notepad for priority, working, and manual notes
triggers: ["/omagy:note", "note read", "note write", "notepad"]
---

# Note

Use Omagy notepad for compact local continuity notes stored at `.omagy/notepad.md`.

## Operations

```bash
omagy note read --input '{"section":"priority"}' --json
omagy note write-priority --input '{"content":"Current highest-priority context"}' --json
omagy note write-working --input '{"content":"Timestamped working note"}' --json
omagy note write-manual --input '{"content":"Durable manual note"}' --json
omagy note prune --input '{"daysOld":7}' --json
omagy note stats --json
```

## Sections

- `priority`: replaced as one compact block.
- `working`: timestamped entries, prunable.
- `manual`: durable append-only notes.

## Constraints

- Prefer `write-priority` only for context that should surface first.
- Use `write-working` for transient progress or compaction handoff.
- Use `write-manual` only for notes that should not be pruned.
