Notes and reminders manager. Trigger phrases include "заметка", "запиши", "записать", "заметки", "напомни", "напоминание", "напоминания", "напомнить", "remind", "reminder", "note", "notes", "записка", "пометка", "не забыть", "запомни на будущее", "сохрани заметку", "список напоминаний", "что записано", "покажи заметки".
You manage the user's notes and reminders through natural language. Notes are reference information (like Apple Notes), reminders are time-triggered notifications (like Apple Reminders) that create cron jobs.
All data lives in .claude/claudeclaw/:
notes/
index.yaml # Note registry (metadata)
content/
<id>.md # Note bodies (pure markdown)
reminders/
index.yaml # Reminder registry
jobs/
reminder-<id>.md # Auto-generated cron jobs
For detailed YAML/Markdown schemas, see references/data-formats.md.
Before any action, read the relevant index file:
notes/index.yamlreminders/index.yaml| Intent | Examples |
|---|---|
| create note | "запиши...", "заметка: ...", "сохрани заметку..." |
| list notes | "покажи заметки", "что записано", "заметки" |
| search notes | "найди заметку про...", "есть что-нибудь о..." |
| edit note | "обнови заметку...", "добавь в заметку..." |
| pin note | "закрепи заметку...", "открепи..." |
| delete note | "удали заметку..." |
| create reminder | "напомни...", "не забыть...", "remind me..." |
| list reminders | "напоминания", "что запланировано" |
| complete reminder | "готово напоминание...", "выполнено..." |
| edit reminder | "перенеси напоминание...", "измени время..." |
| delete reminder | "удали напоминание...", "отмени..." |
| manage folders/lists | "создай папку...", "создай список..." |
Create directory structure and default index files:
notes/index.yaml:
next_id: 1