skills/note-taking/SKILL.md
Create, read, update, and organize personal notes. Use when the user asks to take a note, jot something down, save information for later, or manage their notes.
npx skillsauth add aymenfurter/polyclaw note-takingInstall 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.
Manage the user's notes as plain text/markdown files in the data directory.
All notes are stored as plain .md files in the home (data) directory at ~/notes/.
Do NOT use a database, JSON blob, or any other structured format -- just simple files on disk.
This makes notes portable, grep-able, and easy to back up.
~/notes/
quick.md # Scratch pad for quick one-liners
ideas.md # Ideas and brainstorming
meetings/
2026-02-09.md # Meeting notes by date
projects/
<project-name>.md # Per-project notes
topics/
<topic>.md # Notes organized by topic
Create subdirectories as needed. Default to the top-level ~/notes/ for simple notes.
Determine the appropriate file based on context:
~/notes/quick.md~/notes/meetings/<date>.md~/notes/projects/<project>.md~/notes/topics/<topic>.mdEnsure the directory exists:
mkdir -p ~/notes/meetings ~/notes/projects ~/notes/topics
Append the note with a timestamp header:
echo -e "\n## $(date '+%Y-%m-%d %H:%M')\n\n<content>" >> ~/notes/<file>.md
Show a specific note file:
cat ~/notes/<file>.md
List all notes:
find ~/notes -name '*.md' -type f | sort
Search across all notes:
grep -rl "<search term>" ~/notes/
rm ~/notes/<file>.md
quick.md unless a better category is obvious.tools
Search the web for information using Playwright browser automation. Use when the user asks to find, look up, or research something online.
content-media
Summarize the content of a given URL. Use when the user provides a link and asks for a summary or key points.
development
Generate a daily briefing summarizing recent memory and relevant information. Use when the user asks for a morning briefing or daily summary.
testing
Get a concise summary of a Wikipedia article on any topic. Use when the user says: "summarize from wikipedia", "what is <topic>", "tell me about <topic>", "wikipedia summary of", "quick facts about"