Create, search, and manage Bear notes via grizzly CLI
Manage Bear notes from the terminal using grizzly.
go install github.com/tylerwince/grizzly/cmd/grizzly@latest
For operations requiring a token (add-text, tags):
echo "YOUR_TOKEN" > ~/.config/grizzly/tokenecho "Note content here" | grizzly create --title "My Note" --tag work
grizzly create --title "Quick Note" --tag inbox < /dev/null
grizzly open-note --id "NOTE_ID" --enable-callback --json
echo "Additional content" | grizzly add-text --id "NOTE_ID" --mode append --token-file ~/.config/grizzly/token
grizzly tags --enable-callback --json --token-file ~/.config/grizzly/token
grizzly open-tag --name "work" --enable-callback --json
--dry-run - Preview URL without executing--print-url - Show the x-callback-url--enable-callback - Wait for Bear's response--json - Output as JSON--token-file PATH - Path to Bear API tokenCreate ~/.config/grizzly/config.toml:
token_file = "~/.config/grizzly/token"
callback_url = "http://127.0.0.1:42123/success"
timeout = "5s"