home/claude/skills/ai-notes/SKILL.md
Manage AI notes in ~/Compost/AI-Notes - read existing notes, list recent documents, and write new implementation plans (仕様書, 計画書, 設計書). Auto-triggers when reading from or writing to notes, specifications, or plans.
npx skillsauth add lambdalisue/dotfiles ai-notesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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-Notestools
Update the title and body of an existing pull request WITHOUT asking for approval
tools
Create a pull request with title and body based on commits WITHOUT asking for approval
tools
Create a Conventional Commit from already staged changes WITHOUT asking for approval
tools
Map staged changes to existing commits and create fixup commits for autosquash WITHOUT asking for approval