Creates, searches, and manages notes in Bear via the 'grizzly' CLI.
This skill allows you to manage your notes in Bear, a popular note-taking app for macOS. It uses the grizzly command-line tool to provide a programmatic interface to your notes.
The bear-notes skill leverages the grizzly CLI to perform various actions in Bear.
You can create a new note by piping content to the grizzly create command.
echo "This is the content of my new note." | grizzly create --title "My Note Title" --tag "work"
To open a specific note, you will need its unique ID.
grizzly open-note --id "NOTE_ID"
You can add more content to an existing note using the add-text command.
echo "This is additional text." | grizzly add-text --id "NOTE_ID" --mode append