# Send Bear Notes to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bear-notes",
    "name": "Bear Notes",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/steipete/bear-notes",
    "canonicalUrl": "https://clawhub.ai/steipete/bear-notes",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/bear-notes",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bear-notes",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "bear-notes",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T10:51:33.023Z",
      "expiresAt": "2026-05-07T10:51:33.023Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bear-notes",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bear-notes",
        "contentDisposition": "attachment; filename=\"bear-notes-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "bear-notes"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/bear-notes"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bear-notes",
    "downloadUrl": "https://openagent3.xyz/downloads/bear-notes",
    "agentUrl": "https://openagent3.xyz/skills/bear-notes/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bear-notes/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bear-notes/agent.md"
  }
}
```
## Documentation

### 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:

Open Bear → Help → API Token → Copy Token
Save it: echo "YOUR_TOKEN" > ~/.config/grizzly/token

### Common Commands

Create a note

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

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

Append text to a note

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

List all tags

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

Search notes (via open-tag)

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):

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

Example ~/.config/grizzly/config.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)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: steipete
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T10:51:33.023Z
- Expires at: 2026-05-07T10:51:33.023Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bear-notes)
- [Send to Agent page](https://openagent3.xyz/skills/bear-notes/agent)
- [JSON manifest](https://openagent3.xyz/skills/bear-notes/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bear-notes/agent.md)
- [Download page](https://openagent3.xyz/downloads/bear-notes)