{
  "schemaVersion": "1.0",
  "item": {
    "slug": "paperless-ngx",
    "name": "Paperless-ngx",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/OskarStark/paperless-ngx",
    "canonicalUrl": "https://clawhub.ai/OskarStark/paperless-ngx",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/paperless-ngx",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=paperless-ngx",
    "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-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/paperless-ngx"
    },
    "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/paperless-ngx",
    "agentPageUrl": "https://openagent3.xyz/skills/paperless-ngx/agent",
    "manifestUrl": "https://openagent3.xyz/skills/paperless-ngx/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/paperless-ngx/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": "Paperless-ngx Skill",
        "body": "Manage documents in Paperless-ngx via its REST API using HTTP requests."
      },
      {
        "title": "Configuration",
        "body": "Requires environment variables:\n\nPAPERLESS_URL: Base URL (e.g., https://paperless.example.com)\nPAPERLESS_TOKEN: API token from Paperless-ngx settings"
      },
      {
        "title": "Authentication",
        "body": "Include token in all requests:\n\nAuthorization: Token $PAPERLESS_TOKEN"
      },
      {
        "title": "Search Documents",
        "body": "curl -s \"$PAPERLESS_URL/api/documents/?query=invoice\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\"\n\nFilter options: correspondent__id, document_type__id, tags__id__in, created__date__gte, created__date__lte, added__date__gte."
      },
      {
        "title": "Get Document Details",
        "body": "curl -s \"$PAPERLESS_URL/api/documents/{id}/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\""
      },
      {
        "title": "Download Document",
        "body": "# Original file\ncurl -s \"$PAPERLESS_URL/api/documents/{id}/download/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" -o document.pdf\n\n# Archived (OCR'd) version\ncurl -s \"$PAPERLESS_URL/api/documents/{id}/download/?original=false\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" -o document.pdf"
      },
      {
        "title": "Upload Document",
        "body": "curl -s \"$PAPERLESS_URL/api/documents/post_document/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" \\\n  -F \"document=@/path/to/file.pdf\" \\\n  -F \"title=Document Title\" \\\n  -F \"correspondent=1\" \\\n  -F \"document_type=2\" \\\n  -F \"tags=3\" \\\n  -F \"tags=4\"\n\nOptional fields: title, created, correspondent, document_type, storage_path, tags (repeatable), archive_serial_number, custom_fields."
      },
      {
        "title": "Update Document Metadata",
        "body": "curl -s -X PATCH \"$PAPERLESS_URL/api/documents/{id}/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"title\": \"New Title\", \"correspondent\": 1, \"tags\": [1, 2]}'"
      },
      {
        "title": "Delete Document",
        "body": "curl -s -X DELETE \"$PAPERLESS_URL/api/documents/{id}/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\""
      },
      {
        "title": "Tags",
        "body": "# List tags\ncurl -s \"$PAPERLESS_URL/api/tags/\" -H \"Authorization: Token $PAPERLESS_TOKEN\"\n\n# Create tag\ncurl -s -X POST \"$PAPERLESS_URL/api/tags/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"Important\", \"color\": \"#ff0000\"}'"
      },
      {
        "title": "Correspondents",
        "body": "# List correspondents\ncurl -s \"$PAPERLESS_URL/api/correspondents/\" -H \"Authorization: Token $PAPERLESS_TOKEN\"\n\n# Create correspondent\ncurl -s -X POST \"$PAPERLESS_URL/api/correspondents/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"ACME Corp\"}'"
      },
      {
        "title": "Document Types",
        "body": "# List document types\ncurl -s \"$PAPERLESS_URL/api/document_types/\" -H \"Authorization: Token $PAPERLESS_TOKEN\"\n\n# Create document type\ncurl -s -X POST \"$PAPERLESS_URL/api/document_types/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"Invoice\"}'"
      },
      {
        "title": "Bulk Operations",
        "body": "curl -s -X POST \"$PAPERLESS_URL/api/documents/bulk_edit/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"documents\": [1, 2, 3],\n    \"method\": \"add_tag\",\n    \"parameters\": {\"tag\": 5}\n  }'\n\nMethods: set_correspondent, set_document_type, add_tag, remove_tag, delete, reprocess."
      },
      {
        "title": "Task Status",
        "body": "After upload, check task status:\n\ncurl -s \"$PAPERLESS_URL/api/tasks/?task_id={uuid}\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\""
      },
      {
        "title": "Response Handling",
        "body": "List endpoints return {\"count\": N, \"results\": [...]} with pagination\nSingle objects return the object directly\nUse ?page=2 for pagination\nAdd ?ordering=-created for sorting (prefix - for descending)"
      }
    ],
    "body": "Paperless-ngx Skill\n\nManage documents in Paperless-ngx via its REST API using HTTP requests.\n\nConfiguration\n\nRequires environment variables:\n\nPAPERLESS_URL: Base URL (e.g., https://paperless.example.com)\nPAPERLESS_TOKEN: API token from Paperless-ngx settings\nAuthentication\n\nInclude token in all requests:\n\nAuthorization: Token $PAPERLESS_TOKEN\n\nCore Operations\nSearch Documents\ncurl -s \"$PAPERLESS_URL/api/documents/?query=invoice\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\"\n\n\nFilter options: correspondent__id, document_type__id, tags__id__in, created__date__gte, created__date__lte, added__date__gte.\n\nGet Document Details\ncurl -s \"$PAPERLESS_URL/api/documents/{id}/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\"\n\nDownload Document\n# Original file\ncurl -s \"$PAPERLESS_URL/api/documents/{id}/download/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" -o document.pdf\n\n# Archived (OCR'd) version\ncurl -s \"$PAPERLESS_URL/api/documents/{id}/download/?original=false\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" -o document.pdf\n\nUpload Document\ncurl -s \"$PAPERLESS_URL/api/documents/post_document/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" \\\n  -F \"document=@/path/to/file.pdf\" \\\n  -F \"title=Document Title\" \\\n  -F \"correspondent=1\" \\\n  -F \"document_type=2\" \\\n  -F \"tags=3\" \\\n  -F \"tags=4\"\n\n\nOptional fields: title, created, correspondent, document_type, storage_path, tags (repeatable), archive_serial_number, custom_fields.\n\nUpdate Document Metadata\ncurl -s -X PATCH \"$PAPERLESS_URL/api/documents/{id}/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"title\": \"New Title\", \"correspondent\": 1, \"tags\": [1, 2]}'\n\nDelete Document\ncurl -s -X DELETE \"$PAPERLESS_URL/api/documents/{id}/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\"\n\nOrganization Endpoints\nTags\n# List tags\ncurl -s \"$PAPERLESS_URL/api/tags/\" -H \"Authorization: Token $PAPERLESS_TOKEN\"\n\n# Create tag\ncurl -s -X POST \"$PAPERLESS_URL/api/tags/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"Important\", \"color\": \"#ff0000\"}'\n\nCorrespondents\n# List correspondents\ncurl -s \"$PAPERLESS_URL/api/correspondents/\" -H \"Authorization: Token $PAPERLESS_TOKEN\"\n\n# Create correspondent\ncurl -s -X POST \"$PAPERLESS_URL/api/correspondents/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"ACME Corp\"}'\n\nDocument Types\n# List document types\ncurl -s \"$PAPERLESS_URL/api/document_types/\" -H \"Authorization: Token $PAPERLESS_TOKEN\"\n\n# Create document type\ncurl -s -X POST \"$PAPERLESS_URL/api/document_types/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"Invoice\"}'\n\nBulk Operations\ncurl -s -X POST \"$PAPERLESS_URL/api/documents/bulk_edit/\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"documents\": [1, 2, 3],\n    \"method\": \"add_tag\",\n    \"parameters\": {\"tag\": 5}\n  }'\n\n\nMethods: set_correspondent, set_document_type, add_tag, remove_tag, delete, reprocess.\n\nTask Status\n\nAfter upload, check task status:\n\ncurl -s \"$PAPERLESS_URL/api/tasks/?task_id={uuid}\" \\\n  -H \"Authorization: Token $PAPERLESS_TOKEN\"\n\nResponse Handling\nList endpoints return {\"count\": N, \"results\": [...]} with pagination\nSingle objects return the object directly\nUse ?page=2 for pagination\nAdd ?ordering=-created for sorting (prefix - for descending)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/OskarStark/paperless-ngx",
    "publisherUrl": "https://clawhub.ai/OskarStark/paperless-ngx",
    "owner": "OskarStark",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/paperless-ngx",
    "downloadUrl": "https://openagent3.xyz/downloads/paperless-ngx",
    "agentUrl": "https://openagent3.xyz/skills/paperless-ngx/agent",
    "manifestUrl": "https://openagent3.xyz/skills/paperless-ngx/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/paperless-ngx/agent.md"
  }
}