🎯

bear-notes

🎯Skill

from steipete/clawdis

VibeIndex|
What it does

Manages Bear notes via CLI, enabling creation, searching, and manipulation of notes using the grizzly tool on macOS.

πŸ“¦

Part of

steipete/clawdis(48 items)

bear-notes

Installation

npm installInstall npm package
npm install -g openclaw@latest
git cloneClone repository
git clone https://github.com/openclaw/openclaw.git
pnpmRun with pnpm
pnpm install
πŸ“– Extracted from docs: steipete/clawdis
11Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Create, search, and manage Bear notes via grizzly CLI.

Overview

# Bear Notes

Use grizzly to create, read, and manage notes in Bear on macOS.

Requirements

  • Bear app installed and running
  • For some operations (add-text, tags, open-note --selected), a Bear app token (stored in ~/.config/grizzly/token)

Getting a Bear Token

For operations that require a token (add-text, tags, open-note --selected), you need an authentication token:

  1. Open Bear β†’ Help β†’ API Token β†’ Copy Token
  2. Save it: echo "YOUR_TOKEN" > ~/.config/grizzly/token

Common Commands

Create a note

```bash

echo "Note content here" | grizzly create --title "My Note" --tag work

grizzly create --title "Quick Note" --tag inbox < /dev/null

```

Open/read a note by ID

```bash

grizzly open-note --id "NOTE_ID" --enable-callback --json

```

Append text to a note

```bash

echo "Additional content" | grizzly add-text --id "NOTE_ID" --mode append --token-file ~/.config/grizzly/token

```

List all tags

```bash

grizzly tags --enable-callback --json --token-file ~/.config/grizzly/token

```

Search notes (via open-tag)

```bash

grizzly open-tag --name "work" --enable-callback --json

```

Options

Common flags:

  • --dry-run β€” Preview the URL without executing
  • --print-url β€” Show the x-callback-url
  • --enable-callback β€” Wait for Bear's response (needed for reading data)
  • --json β€” Output as JSON (when using callbacks)
  • --token-file PATH β€” Path to Bear API token file

Configuration

Grizzly reads config from (in priority order):

  1. CLI flags
  2. Environment variables (GRIZZLY_TOKEN_FILE, GRIZZLY_CALLBACK_URL, GRIZZLY_TIMEOUT)
  3. .grizzly.toml in current directory
  4. ~/.config/grizzly/config.toml

Example ~/.config/grizzly/config.toml:

```toml

token_file = "~/.config/grizzly/token"

callback_url = "http://127.0.0.1:42123/success"

timeout = "5s"

```

Notes

  • Bear must be running for commands to work
  • Note IDs are Bear's internal identifiers (visible in note info or via callbacks)
  • Use --enable-callback when you need to read data back from Bear
  • Some operations require a valid token (add-text, tags, open-note --selected)

More from this repository10

🎯
gog🎯Skill

Manages Gmail, Calendar, Drive, Contacts, Sheets, and Docs via CLI with OAuth-based Google Workspace interactions.

🎯
weather🎯Skill

Retrieves current weather and forecasts for any location using free services, with multiple output formats and no API key required.

🎯
summarize🎯Skill

Quickly summarizes URLs, local files, and YouTube links using AI models with flexible extraction options.

🎯
coding-agent🎯Skill

Runs coding agents like Claude Code or Codex in bash with PTY support, enabling programmatic control and background processing.

🎯
mcporter🎯Skill

Streamlines interaction with MCP servers through CLI, enabling listing, configuration, authentication, and direct tool calls via HTTP or stdio.

🎯
apple-reminders🎯Skill

Manages Apple Reminders via CLI, enabling listing, adding, editing, completing, and deleting tasks with flexible date and list filtering.

🎯
nano-pdf🎯Skill

Edits PDFs using natural language instructions, allowing precise page-level modifications with simple CLI commands.

🎯
gifgrep🎯Skill

Searches and downloads GIFs from Tenor/Giphy with a CLI/TUI, enabling preview, extraction, and easy sharing.

🎯
obsidian🎯Skill

Automates interactions with Obsidian vaults, enabling searching, creating, moving, and managing Markdown notes via obsidian-cli.

🎯
peekaboo🎯Skill

Automates macOS UI interactions by capturing screens, targeting elements, driving input, and managing apps via a powerful CLI tool.