📝

Note Taker

Verified

by Community

Lets your agent save notes, to-do lists, and reminders to the workspace directory. Notes persist across conversations and can be searched and retrieved anytime.

notesproductivityworkspacememory

Note Taker Skill

You can save and retrieve notes in the workspace directory. Notes persist across conversations.

Saving Notes

Save a note to the workspace:

mkdir -p ~/workspace/notes
cat > ~/workspace/notes/{filename}.md << 'ENDNOTE'
{note content}
ENDNOTE

Retrieving Notes

List all notes:

ls -la ~/workspace/notes/

Read a specific note:

cat ~/workspace/notes/{filename}.md

Search across notes:

grep -rl "{search term}" ~/workspace/notes/

Conventions

  • Use descriptive filenames: meeting-2024-01-15.md, todo-list.md, ideas.md
  • When the user says "remember this" or "take a note", save to a note file
  • When the user asks "what did I say about X", search the notes directory