Manage AI notes in ~/Compost/AI-Notes - read existing notes, list recent documents, and write new implementation plans (specifications, plans, design documents). Auto-triggers when reading from or writing to notes, specifications, or plans.
IMPORTANT: Use the notes.ts script for all AI notes operations.
# Script location
~/.claude/skills/ai-notes/notes.ts
Generate correct file paths for new notes:
# Single document
deno run -A ~/.claude/skills/ai-notes/notes.ts generate "<title>"
# => ~/Compost/AI-Notes/2025-12/24-0821-<title>.md
# Multiple documents (returns directory path)
deno run -A ~/.claude/skills/ai-notes/notes.ts generate "<title>" --multiple
# => ~/Compost/AI-Notes/2025-12/24-0821-<title>/
List notes ordered by file path (newest first) with H1 titles:
# List all notes
deno run -A ~/.claude/skills/ai-notes/notes.ts list
# List 10 most recent notes
deno run -A ~/.claude/skills/ai-notes/notes.ts list --limit 10
# Pagination: skip first 10, show next 10
deno run -A ~/.claude/skills/ai-notes/notes.ts list --limit 10 --offset 10
Output format: Each line shows the full path and the first H1 heading from the file:
/path/to/note.md: タイトル
~/Compost/AI-Notes/{year}-{month}/{day}-{hour}{minutes}-{title}.md{day}-{hour}{minutes}-{title}/{number}-{title}.mdWhen user requests reading from notes:
notes.ts list --limit 20 to get recent documents~/Compost/AI-Notes/**/*{keyword}*.mdSearch priority:
notes.ts list to see recent notes~/Compost/AI-NotesGoogle Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.
Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.
Use when you need to control Slack from OpenClaw via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
Manage Apple Reminders via remindctl CLI (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.
Manage Trello boards, lists, and cards via the Trello REST API.
Category:productivity