{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bear-notes",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bear-notes",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/bear-notes",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Bear Notes",
        "body": "Use grizzly to create, read, and manage notes in Bear on macOS.\n\nRequirements\n\nBear app installed and running\nFor some operations (add-text, tags, open-note --selected), a Bear app token (stored in ~/.config/grizzly/token)"
      },
      {
        "title": "Getting a Bear Token",
        "body": "For operations that require a token (add-text, tags, open-note --selected), you need an authentication token:\n\nOpen Bear → Help → API Token → Copy Token\nSave it: echo \"YOUR_TOKEN\" > ~/.config/grizzly/token"
      },
      {
        "title": "Common Commands",
        "body": "Create a note\n\necho \"Note content here\" | grizzly create --title \"My Note\" --tag work\ngrizzly create --title \"Quick Note\" --tag inbox < /dev/null\n\nOpen/read a note by ID\n\ngrizzly open-note --id \"NOTE_ID\" --enable-callback --json\n\nAppend text to a note\n\necho \"Additional content\" | grizzly add-text --id \"NOTE_ID\" --mode append --token-file ~/.config/grizzly/token\n\nList all tags\n\ngrizzly tags --enable-callback --json --token-file ~/.config/grizzly/token\n\nSearch notes (via open-tag)\n\ngrizzly open-tag --name \"work\" --enable-callback --json"
      },
      {
        "title": "Options",
        "body": "Common flags:\n\n--dry-run — Preview the URL without executing\n--print-url — Show the x-callback-url\n--enable-callback — Wait for Bear's response (needed for reading data)\n--json — Output as JSON (when using callbacks)\n--token-file PATH — Path to Bear API token file"
      },
      {
        "title": "Configuration",
        "body": "Grizzly reads config from (in priority order):\n\nCLI flags\nEnvironment variables (GRIZZLY_TOKEN_FILE, GRIZZLY_CALLBACK_URL, GRIZZLY_TIMEOUT)\n.grizzly.toml in current directory\n~/.config/grizzly/config.toml\n\nExample ~/.config/grizzly/config.toml:\n\ntoken_file = \"~/.config/grizzly/token\"\ncallback_url = \"http://127.0.0.1:42123/success\"\ntimeout = \"5s\""
      },
      {
        "title": "Notes",
        "body": "Bear must be running for commands to work\nNote IDs are Bear's internal identifiers (visible in note info or via callbacks)\nUse --enable-callback when you need to read data back from Bear\nSome operations require a valid token (add-text, tags, open-note --selected)"
      }
    ],
    "body": "Bear Notes\n\nUse grizzly to create, read, and manage notes in Bear on macOS.\n\nRequirements\n\nBear app installed and running\nFor some operations (add-text, tags, open-note --selected), a Bear app token (stored in ~/.config/grizzly/token)\nGetting a Bear Token\n\nFor operations that require a token (add-text, tags, open-note --selected), you need an authentication token:\n\nOpen Bear → Help → API Token → Copy Token\nSave it: echo \"YOUR_TOKEN\" > ~/.config/grizzly/token\nCommon Commands\n\nCreate a note\n\necho \"Note content here\" | grizzly create --title \"My Note\" --tag work\ngrizzly create --title \"Quick Note\" --tag inbox < /dev/null\n\n\nOpen/read a note by ID\n\ngrizzly open-note --id \"NOTE_ID\" --enable-callback --json\n\n\nAppend text to a note\n\necho \"Additional content\" | grizzly add-text --id \"NOTE_ID\" --mode append --token-file ~/.config/grizzly/token\n\n\nList all tags\n\ngrizzly tags --enable-callback --json --token-file ~/.config/grizzly/token\n\n\nSearch notes (via open-tag)\n\ngrizzly open-tag --name \"work\" --enable-callback --json\n\nOptions\n\nCommon flags:\n\n--dry-run — Preview the URL without executing\n--print-url — Show the x-callback-url\n--enable-callback — Wait for Bear's response (needed for reading data)\n--json — Output as JSON (when using callbacks)\n--token-file PATH — Path to Bear API token file\nConfiguration\n\nGrizzly reads config from (in priority order):\n\nCLI flags\nEnvironment variables (GRIZZLY_TOKEN_FILE, GRIZZLY_CALLBACK_URL, GRIZZLY_TIMEOUT)\n.grizzly.toml in current directory\n~/.config/grizzly/config.toml\n\nExample ~/.config/grizzly/config.toml:\n\ntoken_file = \"~/.config/grizzly/token\"\ncallback_url = \"http://127.0.0.1:42123/success\"\ntimeout = \"5s\"\n\nNotes\nBear must be running for commands to work\nNote IDs are Bear's internal identifiers (visible in note info or via callbacks)\nUse --enable-callback when you need to read data back from Bear\nSome operations require a valid token (add-text, tags, open-note --selected)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/steipete/bear-notes",
    "publisherUrl": "https://clawhub.ai/steipete/bear-notes",
    "owner": "steipete",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}