{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dnote",
    "name": "Dnote",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/M1n-74316D65/dnote",
    "canonicalUrl": "https://clawhub.ai/M1n-74316D65/dnote",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/dnote",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dnote",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "_meta.json",
      "SKILL.md",
      "scripts/dnote.sh"
    ],
    "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": "dnote",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T15:40:27.919Z",
      "expiresAt": "2026-05-09T15:40:27.919Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dnote",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dnote",
        "contentDisposition": "attachment; filename=\"dnote-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "dnote"
      },
      "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/dnote"
    },
    "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/dnote",
    "agentPageUrl": "https://openagent3.xyz/skills/dnote/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dnote/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dnote/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": "Dnote Notes",
        "body": "Manage a personal knowledge base using Dnote CLI."
      },
      {
        "title": "Installation",
        "body": "# macOS/Linux auto-install\ncurl -s https://www.getdnote.com/install | sh\n\n# Or Homebrew\nbrew install dnote\n\n# Or download from: https://github.com/dnote/dnote/releases"
      },
      {
        "title": "Configuration",
        "body": "Dnote follows XDG directories:\n\nConfig: ~/.config/dnote/dnoterc\nDatabase: ~/.local/share/dnote/dnote.db\n\n# Example config file (~/.config/dnote/dnoterc)\neditor: vim\napiEndpoint: https://api.dnote.io\nenableUpgradeCheck: true\n\n# Or use local-only (no sync)\n# No config needed - works offline by default"
      },
      {
        "title": "Sync Setup (Optional)",
        "body": "# To sync across devices\ndnote login\n\n# Or local-only mode (no setup required)"
      },
      {
        "title": "Quick Start",
        "body": "# Add a note to a book\n{baseDir}/scripts/dnote.sh add cli \"git rebase -i HEAD~3\"\n\n# Pipe content to a note\necho \"docker system prune\" | {baseDir}/scripts/dnote.sh add docker\n\n# Search all notes\n{baseDir}/scripts/dnote.sh find \"docker compose\"\n\n# View recent notes\n{baseDir}/scripts/dnote.sh recent\n\n# List all books\n{baseDir}/scripts/dnote.sh books\n\n# View notes in a book\n{baseDir}/scripts/dnote.sh view cli\n\n# Get a specific note\n{baseDir}/scripts/dnote.sh get cli 1"
      },
      {
        "title": "Adding Notes",
        "body": "CommandDescriptionadd <book> <content>Add note to bookadd-stdin <book>Add from stdin (pipe-friendly)quick <content>Quick add to 'inbox' book"
      },
      {
        "title": "Retrieving Notes",
        "body": "CommandDescriptionview [book]List books or notes in bookget <book> <index>Get specific note by indexfind <query>Full-text search (use -b <book> to filter)recent [n]Show n most recent notes (default: 10)booksList all booksexport [book]Export notes as JSONconfigShow config and paths"
      },
      {
        "title": "Managing Notes",
        "body": "CommandDescriptionedit <id> [content]Edit note by IDmove <id> <book>Move note to different bookremove <id>Delete noteremove-book <book>Delete entire book"
      },
      {
        "title": "Sync & Info",
        "body": "CommandDescriptionsyncSync with Dnote serverstatusShow status and statsconfigShow config file locationsloginAuthenticate with server (native CLI)logoutRemove credentials (native CLI)"
      },
      {
        "title": "Collection IDs / Books",
        "body": "Use any book name (auto-created on first use)\nCommon book names: cli, docker, git, ideas, snippets, journal, inbox\nBooks are created automatically when you add the first note"
      },
      {
        "title": "Examples",
        "body": "# Capture a shell one-liner\n{baseDir}/scripts/dnote.sh add cli \"grep -r pattern . --include='*.py'\"\n\n# Save from command output\ngit log --oneline -10 | {baseDir}/scripts/dnote.sh add git\n\n# Quick capture to inbox\n{baseDir}/scripts/dnote.sh quick \"Remember to update README\"\n\n# Search for docker commands\n{baseDir}/scripts/dnote.sh find \"docker compose\"\n\n# Search within a specific book\n{baseDir}/scripts/dnote.sh find \"config\" -b cli\n\n# Get formatted note for AI context\n{baseDir}/scripts/dnote.sh get cli 1 --format raw\n\n# Export book for processing\n{baseDir}/scripts/dnote.sh export cli --json | jq '.notes[].content'\n\n# Recent notes across all books\n{baseDir}/scripts/dnote.sh recent 20\n\n# Search and export results\n{baseDir}/scripts/dnote.sh find \"postgres\" --json"
      },
      {
        "title": "Retrieve relevant notes for the current task:",
        "body": "# Search for related knowledge\n{baseDir}/scripts/dnote.sh find \"python argparse\"\n\n# Get full content of a specific note\n{baseDir}/scripts/dnote.sh get cli 5\n\n# Export entire book for context\n{baseDir}/scripts/dnote.sh export python"
      },
      {
        "title": "Auto-capture useful information:",
        "body": "# Save a discovered solution\n{baseDir}/scripts/dnote.sh add docker \"Multi-stage builds reduce image size\"\n\n# Save with timestamp\n{baseDir}/scripts/dnote.sh add journal \"$(date): Deployed v2.3 to production\""
      },
      {
        "title": "Daily Journal",
        "body": "# Create dated entry\n{baseDir}/scripts/dnote.sh add journal \"$(date +%Y-%m-%d): Started work on feature X\"\n\n# Review recent entries\n{baseDir}/scripts/dnote.sh view journal | head -20"
      },
      {
        "title": "Code Snippets",
        "body": "# Save with description\n{baseDir}/scripts/dnote.sh add python \"List comprehension: [x for x in items if x > 0]\"\n\n# Search when needed\n{baseDir}/scripts/dnote.sh find \"list comprehension\""
      },
      {
        "title": "Command Reference",
        "body": "# Build a CLI reference\ncurl -s https://api.example.com | {baseDir}/scripts/dnote.sh add api\n\n# Quick lookup\n{baseDir}/scripts/dnote.sh view api"
      },
      {
        "title": "Integration with Workflows",
        "body": "The skill provides helper functions for common patterns:\n\nFunctionUse Casednote:search <query>Find relevant context before answeringdnote:capture <book> <content>Save useful info discovered during taskdnote:recent [n]Review recently captured notesdnote:export-book <book>Load entire book into context"
      },
      {
        "title": "Config File",
        "body": "Create ~/.config/dnote/dnoterc:\n\neditor: code --wait      # or vim, nano, subl -w\napiEndpoint: https://api.dnote.io\nenableUpgradeCheck: true"
      },
      {
        "title": "Tips",
        "body": "Use specific book names: python, bash, docker, kubernetes, ideas\nSearch is full-text: Works across all note content\nIndexes are 1-based: First note is 1, not 0\nPipes work great: Capture command output directly\nSync optional: Works fully offline, sync when ready"
      },
      {
        "title": "Direct Dnote CLI",
        "body": "For operations not covered:\n\n# Interactive edit\ndnote edit 5\n\n# Rename book\ndnote edit oldname -n newname\n\n# Full sync\ndnote sync --full\n\n# Custom DB path\ndnote --dbPath /path/to/custom.db view\n\nDocs: https://www.getdnote.com/docs/cli/"
      }
    ],
    "body": "Dnote Notes\n\nManage a personal knowledge base using Dnote CLI.\n\nSetup\nInstallation\n# macOS/Linux auto-install\ncurl -s https://www.getdnote.com/install | sh\n\n# Or Homebrew\nbrew install dnote\n\n# Or download from: https://github.com/dnote/dnote/releases\n\nConfiguration\n\nDnote follows XDG directories:\n\nConfig: ~/.config/dnote/dnoterc\nDatabase: ~/.local/share/dnote/dnote.db\n# Example config file (~/.config/dnote/dnoterc)\neditor: vim\napiEndpoint: https://api.dnote.io\nenableUpgradeCheck: true\n\n# Or use local-only (no sync)\n# No config needed - works offline by default\n\nSync Setup (Optional)\n# To sync across devices\ndnote login\n\n# Or local-only mode (no setup required)\n\nQuick Start\n# Add a note to a book\n{baseDir}/scripts/dnote.sh add cli \"git rebase -i HEAD~3\"\n\n# Pipe content to a note\necho \"docker system prune\" | {baseDir}/scripts/dnote.sh add docker\n\n# Search all notes\n{baseDir}/scripts/dnote.sh find \"docker compose\"\n\n# View recent notes\n{baseDir}/scripts/dnote.sh recent\n\n# List all books\n{baseDir}/scripts/dnote.sh books\n\n# View notes in a book\n{baseDir}/scripts/dnote.sh view cli\n\n# Get a specific note\n{baseDir}/scripts/dnote.sh get cli 1\n\nCommands\nAdding Notes\nCommand\tDescription\nadd <book> <content>\tAdd note to book\nadd-stdin <book>\tAdd from stdin (pipe-friendly)\nquick <content>\tQuick add to 'inbox' book\nRetrieving Notes\nCommand\tDescription\nview [book]\tList books or notes in book\nget <book> <index>\tGet specific note by index\nfind <query>\tFull-text search (use -b <book> to filter)\nrecent [n]\tShow n most recent notes (default: 10)\nbooks\tList all books\nexport [book]\tExport notes as JSON\nconfig\tShow config and paths\nManaging Notes\nCommand\tDescription\nedit <id> [content]\tEdit note by ID\nmove <id> <book>\tMove note to different book\nremove <id>\tDelete note\nremove-book <book>\tDelete entire book\nSync & Info\nCommand\tDescription\nsync\tSync with Dnote server\nstatus\tShow status and stats\nconfig\tShow config file locations\nlogin\tAuthenticate with server (native CLI)\nlogout\tRemove credentials (native CLI)\nCollection IDs / Books\nUse any book name (auto-created on first use)\nCommon book names: cli, docker, git, ideas, snippets, journal, inbox\nBooks are created automatically when you add the first note\nExamples\n# Capture a shell one-liner\n{baseDir}/scripts/dnote.sh add cli \"grep -r pattern . --include='*.py'\"\n\n# Save from command output\ngit log --oneline -10 | {baseDir}/scripts/dnote.sh add git\n\n# Quick capture to inbox\n{baseDir}/scripts/dnote.sh quick \"Remember to update README\"\n\n# Search for docker commands\n{baseDir}/scripts/dnote.sh find \"docker compose\"\n\n# Search within a specific book\n{baseDir}/scripts/dnote.sh find \"config\" -b cli\n\n# Get formatted note for AI context\n{baseDir}/scripts/dnote.sh get cli 1 --format raw\n\n# Export book for processing\n{baseDir}/scripts/dnote.sh export cli --json | jq '.notes[].content'\n\n# Recent notes across all books\n{baseDir}/scripts/dnote.sh recent 20\n\n# Search and export results\n{baseDir}/scripts/dnote.sh find \"postgres\" --json\n\nUsing Notes in AI Context\nRetrieve relevant notes for the current task:\n# Search for related knowledge\n{baseDir}/scripts/dnote.sh find \"python argparse\"\n\n# Get full content of a specific note\n{baseDir}/scripts/dnote.sh get cli 5\n\n# Export entire book for context\n{baseDir}/scripts/dnote.sh export python\n\nAuto-capture useful information:\n# Save a discovered solution\n{baseDir}/scripts/dnote.sh add docker \"Multi-stage builds reduce image size\"\n\n# Save with timestamp\n{baseDir}/scripts/dnote.sh add journal \"$(date): Deployed v2.3 to production\"\n\nPatterns\nDaily Journal\n# Create dated entry\n{baseDir}/scripts/dnote.sh add journal \"$(date +%Y-%m-%d): Started work on feature X\"\n\n# Review recent entries\n{baseDir}/scripts/dnote.sh view journal | head -20\n\nCode Snippets\n# Save with description\n{baseDir}/scripts/dnote.sh add python \"List comprehension: [x for x in items if x > 0]\"\n\n# Search when needed\n{baseDir}/scripts/dnote.sh find \"list comprehension\"\n\nCommand Reference\n# Build a CLI reference\ncurl -s https://api.example.com | {baseDir}/scripts/dnote.sh add api\n\n# Quick lookup\n{baseDir}/scripts/dnote.sh view api\n\nIntegration with Workflows\n\nThe skill provides helper functions for common patterns:\n\nFunction\tUse Case\ndnote:search <query>\tFind relevant context before answering\ndnote:capture <book> <content>\tSave useful info discovered during task\ndnote:recent [n]\tReview recently captured notes\ndnote:export-book <book>\tLoad entire book into context\nConfig File\n\nCreate ~/.config/dnote/dnoterc:\n\neditor: code --wait      # or vim, nano, subl -w\napiEndpoint: https://api.dnote.io\nenableUpgradeCheck: true\n\nTips\nUse specific book names: python, bash, docker, kubernetes, ideas\nSearch is full-text: Works across all note content\nIndexes are 1-based: First note is 1, not 0\nPipes work great: Capture command output directly\nSync optional: Works fully offline, sync when ready\nDirect Dnote CLI\n\nFor operations not covered:\n\n# Interactive edit\ndnote edit 5\n\n# Rename book\ndnote edit oldname -n newname\n\n# Full sync\ndnote sync --full\n\n# Custom DB path\ndnote --dbPath /path/to/custom.db view\n\n\nDocs: https://www.getdnote.com/docs/cli/"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/M1n-74316D65/dnote",
    "publisherUrl": "https://clawhub.ai/M1n-74316D65/dnote",
    "owner": "M1n-74316D65",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dnote",
    "downloadUrl": "https://openagent3.xyz/downloads/dnote",
    "agentUrl": "https://openagent3.xyz/skills/dnote/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dnote/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dnote/agent.md"
  }
}