{
  "schemaVersion": "1.0",
  "item": {
    "slug": "joplin",
    "name": "joplin",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/davek-dev/joplin",
    "canonicalUrl": "https://clawhub.ai/davek-dev/joplin",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/joplin",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=joplin",
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/joplin"
    },
    "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/joplin",
    "agentPageUrl": "https://openagent3.xyz/skills/joplin/agent",
    "manifestUrl": "https://openagent3.xyz/skills/joplin/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/joplin/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": "Joplin CLI Skill",
        "body": "Use joplin CLI to interact with Joplin notes."
      },
      {
        "title": "⚠️ Important: Use CLI, Not SQL",
        "body": "Always use the joplin CLI for editing notes. Do not modify the SQLite database directly unless absolutely necessary. Direct database edits can cause sync conflicts and data loss."
      },
      {
        "title": "Setup",
        "body": "If Joplin is not configured with WebDAV, configure it:\n\njoplin config sync.target 6\njoplin config sync.6.path \"https://your-webdav-server/path\"\njoplin config sync.6.username \"your-username\"\njoplin config sync.6.password \"your-password\"\njoplin sync"
      },
      {
        "title": "List Notebooks and Notes",
        "body": "joplin ls                          # List notebooks\njoplin ls \"Notebook Name\"          # List notes in a notebook\njoplin status                      # Show sync status and note counts\njoplin ls -l                       # List with IDs"
      },
      {
        "title": "Read Note",
        "body": "joplin cat <note-id>               # Display note content\njoplin cat \"Note Title\"            # Also works with title\njoplin note <note-id>              # Open note in editor"
      },
      {
        "title": "Create Note",
        "body": "joplin mknote \"Note Title\"         # Create note in default notebook\njoplin mknote \"Note Title\" --notebook \"Notebook Name\"\njoplin mkbook \"New Notebook\"       # Create new notebook\n\nTip: Always ask the user which notebook to use. Use:\n\njoplin use — shows current notebook\njoplin use \"Notebook Name\" — switch to a notebook\njoplin ls — see all notebooks"
      },
      {
        "title": "Edit Note",
        "body": "joplin edit --note <note-id>       # Edit note in editor\njoplin set <note-id> title \"New title\"  # Change note title"
      },
      {
        "title": "Delete Note",
        "body": "joplin rmnote <note-id>            # Delete note\njoplin rmbook \"Notebook Name\"      # Delete notebook"
      },
      {
        "title": "Move Notes Between Notebooks",
        "body": "joplin mv \"Note Title\" \"Target Notebook\""
      },
      {
        "title": "Todos",
        "body": "joplin todos                       # List all todos\njoplin todo <note-id>              # Toggle todo status\njoplin done <note-id>              # Mark as done\njoplin undone <note-id>            # Mark as not done"
      },
      {
        "title": "Sync",
        "body": "joplin sync                        # Sync with WebDAV server"
      },
      {
        "title": "Export",
        "body": "joplin export <note-id> --format md\njoplin export <note-id> --format html\njoplin export <note-id> --format pdf"
      },
      {
        "title": "Import",
        "body": "joplin import /path/to/note.md --notebook \"Notebook Name\""
      },
      {
        "title": "Search",
        "body": "Note: joplin search is only available in GUI mode. Use joplin ls and pipe to grep instead."
      },
      {
        "title": "All Joplin Commands",
        "body": "attach, batch, cat, config, cp, done, e2ee, edit, export, geoloc, help, \nimport, ls, mkbook, mknote, mktodo, mv, ren, restore, rmbook, rmnote, \nserver, set, share, status, sync, tag, todo, undone, use, version"
      },
      {
        "title": "Referencing Notes and Notebooks",
        "body": "A note or notebook can be referred to by:\n\nTitle: \"Note Title\"\nID: fe889 (get from joplin ls -l)\nShortcuts:\n\n$n — Currently selected note\n$b — Currently selected notebook\n$c — Currently selected item"
      },
      {
        "title": "Interactive Shell Mode",
        "body": "Joplin can run interactively (like a shell). Start with just joplin:\n\njoplin                          # Start interactive mode"
      },
      {
        "title": "Shell Commands (prefix with :)",
        "body": "CommandDescription:syncSync with WebDAV server:quit or :qExit Joplin:helpShow help:open <note-id>Open a note"
      },
      {
        "title": "Shell Mode Shortcuts",
        "body": "e — Edit current note\ni — Insert new note\nSpace — Select item\nEnter — Open note"
      },
      {
        "title": "Example Workflow",
        "body": "# Create a notebook\njoplin mkbook \"My notebook\"\n\n# Switch to it\njoplin use \"My notebook\"\n\n# Create a note\njoplin mknote \"My note\"\n\n# View notes with IDs\njoplin ls -l\n\n# Edit a note's title\njoplin set <note-id> title \"New title\""
      },
      {
        "title": "Kanban Notes (YesYouKan Plugin)",
        "body": "Some notebooks use the YesYouKan kanban plugin for visual kanban boards. These notes have a specific format that must be preserved when editing:"
      },
      {
        "title": "Kanban Format",
        "body": "# Notebook Name\n\n# Backlog\n\n## Task 1\n\nDescription here\n\n## Task 2\n\n\n\n# In progress\n\n## Another Task\n\nDetails\n\n\n\n# Done\n\n## Completed Task\n\nResult\n\n```kanban-settings\n# Do not remove this block\n\n### ⚠️ Kanban Formatting Rules\n\n1. **Always include the kanban-settings block** at the end of the note with the exact format:\n\n# Do not remove this block\n\n2. **Use `##` for task headings** (not `#`)\n\n3. **Keep column headings** as `# Backlog`, `# In progress`, `# Done`\n\n4. **Preserve blank lines** between tasks — these are visible in the kanban view\n\n5. **After editing a kanban note, always run `joplin sync`** to upload changes\n\n6. **Verify changes with `joplin cat <note-id>`** to ensure formatting is correct\n\n### Moving Tasks Between Columns\n\nWhen moving a task, simply move the `##` task section from one column to another."
      }
    ],
    "body": "Joplin CLI Skill\n\nUse joplin CLI to interact with Joplin notes.\n\n⚠️ Important: Use CLI, Not SQL\n\nAlways use the joplin CLI for editing notes. Do not modify the SQLite database directly unless absolutely necessary. Direct database edits can cause sync conflicts and data loss.\n\nSetup\n\nIf Joplin is not configured with WebDAV, configure it:\n\njoplin config sync.target 6\njoplin config sync.6.path \"https://your-webdav-server/path\"\njoplin config sync.6.username \"your-username\"\njoplin config sync.6.password \"your-password\"\njoplin sync\n\nCommon Commands\nList Notebooks and Notes\njoplin ls                          # List notebooks\njoplin ls \"Notebook Name\"          # List notes in a notebook\njoplin status                      # Show sync status and note counts\njoplin ls -l                       # List with IDs\n\nRead Note\njoplin cat <note-id>               # Display note content\njoplin cat \"Note Title\"            # Also works with title\njoplin note <note-id>              # Open note in editor\n\nCreate Note\njoplin mknote \"Note Title\"         # Create note in default notebook\njoplin mknote \"Note Title\" --notebook \"Notebook Name\"\njoplin mkbook \"New Notebook\"       # Create new notebook\n\n\nTip: Always ask the user which notebook to use. Use:\n\njoplin use — shows current notebook\njoplin use \"Notebook Name\" — switch to a notebook\njoplin ls — see all notebooks\nEdit Note\njoplin edit --note <note-id>       # Edit note in editor\njoplin set <note-id> title \"New title\"  # Change note title\n\nDelete Note\njoplin rmnote <note-id>            # Delete note\njoplin rmbook \"Notebook Name\"      # Delete notebook\n\nMove Notes Between Notebooks\njoplin mv \"Note Title\" \"Target Notebook\"\n\nTodos\njoplin todos                       # List all todos\njoplin todo <note-id>              # Toggle todo status\njoplin done <note-id>              # Mark as done\njoplin undone <note-id>            # Mark as not done\n\nSync\njoplin sync                        # Sync with WebDAV server\n\nExport\njoplin export <note-id> --format md\njoplin export <note-id> --format html\njoplin export <note-id> --format pdf\n\nImport\njoplin import /path/to/note.md --notebook \"Notebook Name\"\n\nSearch\n\nNote: joplin search is only available in GUI mode. Use joplin ls and pipe to grep instead.\n\nAll Joplin Commands\nattach, batch, cat, config, cp, done, e2ee, edit, export, geoloc, help, \nimport, ls, mkbook, mknote, mktodo, mv, ren, restore, rmbook, rmnote, \nserver, set, share, status, sync, tag, todo, undone, use, version\n\nReferencing Notes and Notebooks\n\nA note or notebook can be referred to by:\n\nTitle: \"Note Title\"\nID: fe889 (get from joplin ls -l)\nShortcuts:\n$n — Currently selected note\n$b — Currently selected notebook\n$c — Currently selected item\nInteractive Shell Mode\n\nJoplin can run interactively (like a shell). Start with just joplin:\n\njoplin                          # Start interactive mode\n\nShell Commands (prefix with :)\nCommand\tDescription\n:sync\tSync with WebDAV server\n:quit or :q\tExit Joplin\n:help\tShow help\n:open <note-id>\tOpen a note\nShell Mode Shortcuts\ne — Edit current note\ni — Insert new note\nSpace — Select item\nEnter — Open note\nExample Workflow\n# Create a notebook\njoplin mkbook \"My notebook\"\n\n# Switch to it\njoplin use \"My notebook\"\n\n# Create a note\njoplin mknote \"My note\"\n\n# View notes with IDs\njoplin ls -l\n\n# Edit a note's title\njoplin set <note-id> title \"New title\"\n\nKanban Notes (YesYouKan Plugin)\n\nSome notebooks use the YesYouKan kanban plugin for visual kanban boards. These notes have a specific format that must be preserved when editing:\n\nKanban Format\n# Notebook Name\n\n# Backlog\n\n## Task 1\n\nDescription here\n\n## Task 2\n\n\n\n# In progress\n\n## Another Task\n\nDetails\n\n\n\n# Done\n\n## Completed Task\n\nResult\n\n```kanban-settings\n# Do not remove this block\n\n\n### ⚠️ Kanban Formatting Rules\n\n1. **Always include the kanban-settings block** at the end of the note with the exact format:\n\n# Do not remove this block\n\n\n2. **Use `##` for task headings** (not `#`)\n\n3. **Keep column headings** as `# Backlog`, `# In progress`, `# Done`\n\n4. **Preserve blank lines** between tasks — these are visible in the kanban view\n\n5. **After editing a kanban note, always run `joplin sync`** to upload changes\n\n6. **Verify changes with `joplin cat <note-id>`** to ensure formatting is correct\n\n### Moving Tasks Between Columns\n\nWhen moving a task, simply move the `##` task section from one column to another."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/davek-dev/joplin",
    "publisherUrl": "https://clawhub.ai/davek-dev/joplin",
    "owner": "davek-dev",
    "version": "1.3.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/joplin",
    "downloadUrl": "https://openagent3.xyz/downloads/joplin",
    "agentUrl": "https://openagent3.xyz/skills/joplin/agent",
    "manifestUrl": "https://openagent3.xyz/skills/joplin/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/joplin/agent.md"
  }
}