{
  "schemaVersion": "1.0",
  "item": {
    "slug": "linkding",
    "name": "Linkding",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jmagar/linkding",
    "canonicalUrl": "https://clawhub.ai/jmagar/linkding",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/linkding",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linkding",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/linkding-api.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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "linkding",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T00:40:44.100Z",
      "expiresAt": "2026-05-12T00:40:44.100Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linkding",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linkding",
        "contentDisposition": "attachment; filename=\"linkding-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "linkding"
      },
      "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/linkding"
    },
    "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/linkding",
    "agentPageUrl": "https://openagent3.xyz/skills/linkding/agent",
    "manifestUrl": "https://openagent3.xyz/skills/linkding/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/linkding/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Linkding Bookmark Manager",
        "body": "Query and manage bookmarks via the Linkding REST API."
      },
      {
        "title": "Setup",
        "body": "Config: ~/.clawdbot/credentials/linkding/config.json\n\n{\n  \"url\": \"https://linkding.example.com\",\n  \"apiKey\": \"your-api-token\"\n}\n\nGet your API token from Linkding Settings page."
      },
      {
        "title": "List/Search Bookmarks",
        "body": "# List recent bookmarks\n./scripts/linkding-api.sh bookmarks\n\n# Search bookmarks\n./scripts/linkding-api.sh bookmarks --query \"python tutorial\"\n\n# List archived\n./scripts/linkding-api.sh bookmarks --archived\n\n# Filter by date\n./scripts/linkding-api.sh bookmarks --modified-since \"2025-01-01T00:00:00Z\""
      },
      {
        "title": "Create Bookmark",
        "body": "# Basic\n./scripts/linkding-api.sh create \"https://example.com\"\n\n# With metadata\n./scripts/linkding-api.sh create \"https://example.com\" \\\n  --title \"Example Site\" \\\n  --description \"A great resource\" \\\n  --tags \"reference,docs\"\n\n# Archive immediately\n./scripts/linkding-api.sh create \"https://example.com\" --archived"
      },
      {
        "title": "Check if URL Exists",
        "body": "./scripts/linkding-api.sh check \"https://example.com\"\n\nReturns existing bookmark data if found, plus scraped metadata."
      },
      {
        "title": "Update Bookmark",
        "body": "./scripts/linkding-api.sh update 123 --title \"New Title\" --tags \"newtag1,newtag2\""
      },
      {
        "title": "Archive/Unarchive",
        "body": "./scripts/linkding-api.sh archive 123\n./scripts/linkding-api.sh unarchive 123"
      },
      {
        "title": "Delete",
        "body": "./scripts/linkding-api.sh delete 123"
      },
      {
        "title": "Tags",
        "body": "# List all tags\n./scripts/linkding-api.sh tags\n\n# Create tag\n./scripts/linkding-api.sh tag-create \"mytag\""
      },
      {
        "title": "Bundles (saved searches)",
        "body": "# List bundles\n./scripts/linkding-api.sh bundles\n\n# Create bundle\n./scripts/linkding-api.sh bundle-create \"Work Resources\" \\\n  --search \"productivity\" \\\n  --any-tags \"work,tools\" \\\n  --excluded-tags \"personal\""
      },
      {
        "title": "Response Format",
        "body": "All responses are JSON. Bookmark object:\n\n{\n  \"id\": 1,\n  \"url\": \"https://example.com\",\n  \"title\": \"Example\",\n  \"description\": \"Description\",\n  \"notes\": \"Personal notes\",\n  \"is_archived\": false,\n  \"unread\": false,\n  \"shared\": false,\n  \"tag_names\": [\"tag1\", \"tag2\"],\n  \"date_added\": \"2020-09-26T09:46:23.006313Z\",\n  \"date_modified\": \"2020-09-26T16:01:14.275335Z\"\n}"
      },
      {
        "title": "Common Patterns",
        "body": "Save current page for later:\n\n./scripts/linkding-api.sh create \"$URL\" --tags \"toread\" --unread\n\nQuick search and display:\n\n./scripts/linkding-api.sh bookmarks --query \"keyword\" --limit 10 | jq -r '.results[] | \"\\(.title) - \\(.url)\"'\n\nBulk tag update: Update via API PATCH with new tag_names array."
      }
    ],
    "body": "Linkding Bookmark Manager\n\nQuery and manage bookmarks via the Linkding REST API.\n\nSetup\n\nConfig: ~/.clawdbot/credentials/linkding/config.json\n\n{\n  \"url\": \"https://linkding.example.com\",\n  \"apiKey\": \"your-api-token\"\n}\n\n\nGet your API token from Linkding Settings page.\n\nQuick Reference\nList/Search Bookmarks\n# List recent bookmarks\n./scripts/linkding-api.sh bookmarks\n\n# Search bookmarks\n./scripts/linkding-api.sh bookmarks --query \"python tutorial\"\n\n# List archived\n./scripts/linkding-api.sh bookmarks --archived\n\n# Filter by date\n./scripts/linkding-api.sh bookmarks --modified-since \"2025-01-01T00:00:00Z\"\n\nCreate Bookmark\n# Basic\n./scripts/linkding-api.sh create \"https://example.com\"\n\n# With metadata\n./scripts/linkding-api.sh create \"https://example.com\" \\\n  --title \"Example Site\" \\\n  --description \"A great resource\" \\\n  --tags \"reference,docs\"\n\n# Archive immediately\n./scripts/linkding-api.sh create \"https://example.com\" --archived\n\nCheck if URL Exists\n./scripts/linkding-api.sh check \"https://example.com\"\n\n\nReturns existing bookmark data if found, plus scraped metadata.\n\nUpdate Bookmark\n./scripts/linkding-api.sh update 123 --title \"New Title\" --tags \"newtag1,newtag2\"\n\nArchive/Unarchive\n./scripts/linkding-api.sh archive 123\n./scripts/linkding-api.sh unarchive 123\n\nDelete\n./scripts/linkding-api.sh delete 123\n\nTags\n# List all tags\n./scripts/linkding-api.sh tags\n\n# Create tag\n./scripts/linkding-api.sh tag-create \"mytag\"\n\nBundles (saved searches)\n# List bundles\n./scripts/linkding-api.sh bundles\n\n# Create bundle\n./scripts/linkding-api.sh bundle-create \"Work Resources\" \\\n  --search \"productivity\" \\\n  --any-tags \"work,tools\" \\\n  --excluded-tags \"personal\"\n\nResponse Format\n\nAll responses are JSON. Bookmark object:\n\n{\n  \"id\": 1,\n  \"url\": \"https://example.com\",\n  \"title\": \"Example\",\n  \"description\": \"Description\",\n  \"notes\": \"Personal notes\",\n  \"is_archived\": false,\n  \"unread\": false,\n  \"shared\": false,\n  \"tag_names\": [\"tag1\", \"tag2\"],\n  \"date_added\": \"2020-09-26T09:46:23.006313Z\",\n  \"date_modified\": \"2020-09-26T16:01:14.275335Z\"\n}\n\nCommon Patterns\n\nSave current page for later:\n\n./scripts/linkding-api.sh create \"$URL\" --tags \"toread\" --unread\n\n\nQuick search and display:\n\n./scripts/linkding-api.sh bookmarks --query \"keyword\" --limit 10 | jq -r '.results[] | \"\\(.title) - \\(.url)\"'\n\n\nBulk tag update: Update via API PATCH with new tag_names array."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jmagar/linkding",
    "publisherUrl": "https://clawhub.ai/jmagar/linkding",
    "owner": "jmagar",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/linkding",
    "downloadUrl": "https://openagent3.xyz/downloads/linkding",
    "agentUrl": "https://openagent3.xyz/skills/linkding/agent",
    "manifestUrl": "https://openagent3.xyz/skills/linkding/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/linkding/agent.md"
  }
}