{
  "schemaVersion": "1.0",
  "item": {
    "slug": "paperless",
    "name": "Paperless",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/NickChristensen/paperless",
    "canonicalUrl": "https://clawhub.ai/NickChristensen/paperless",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/paperless",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=paperless",
    "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"
    },
    "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",
    "agentPageUrl": "https://openagent3.xyz/skills/paperless/agent",
    "manifestUrl": "https://openagent3.xyz/skills/paperless/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/paperless/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 CLI",
        "body": "Search and manage documents in Paperless-NGX using ppls."
      },
      {
        "title": "Setup",
        "body": "npm install -g @nickchristensen/ppls\nppls config set hostname http://your-paperless-host\nppls config set token your-api-token"
      },
      {
        "title": "Searching Documents",
        "body": "# By name\nppls documents list --name-contains \"invoice\" --json\n\n# By date range\nppls documents list --created-after 2024-01-01 --created-before 2024-12-31 --json\n\n# By tag (OR — any of these tags)\nppls documents list --tag 5 --tag 12 --json\n\n# By tag (AND — must have all)\nppls documents list --tag-all 5,12 --json\n\n# Exclude tags\nppls documents list --tag-not 3 --json\n\n# By correspondent\nppls documents list --correspondent 7 --json\n\n# By document type\nppls documents list --document-type 2 --json\n\n# Documents missing metadata\nppls documents list --no-correspondent --json\nppls documents list --no-tag --json\n\n# Recently added/modified\nppls documents list --added-after 2024-06-01 --json\nppls documents list --modified-after 2024-06-01 --json\n\n# Combine filters\nppls documents list --correspondent 7 --created-after 2024-01-01 --tag 5 --json"
      },
      {
        "title": "Viewing & Downloading",
        "body": "# Get full document details (includes OCR content)\nppls documents show 1234 --json\n\n# Download single document\nppls documents download 1234 --output ~/Downloads/doc.pdf\n\n# Download multiple documents\nppls documents download 1234 5678 --output-dir ~/Downloads\n\n# Download original (pre-processed) version\nppls documents download 1234 --original"
      },
      {
        "title": "Uploading Documents",
        "body": "# Simple upload (Paperless auto-processes)\nppls documents add scan.pdf\n\n# With metadata\nppls documents add receipt.pdf \\\n  --title \"Store Receipt\" \\\n  --correspondent 5 \\\n  --document-type 2 \\\n  --tag 10"
      },
      {
        "title": "Managing Metadata",
        "body": "# List tags/correspondents/document-types\nppls tags list --json\nppls correspondents list --json\nppls document-types list --json\n\n# Create new\nppls tags add \"Tax 2024\" --color \"#ff0000\"\nppls correspondents add \"New Vendor\"\nppls document-types add \"Contract\"\n\n# Update document metadata\nppls documents update 1234 --title \"New Title\" --correspondent 5 --tag 10"
      },
      {
        "title": "Tips",
        "body": "Always use --json for AI/automation — it's the most parseable format\nDate formats: YYYY-MM-DD or full ISO 8601\nIDs are numeric — use list --json commands to find them\nFilters are repeatable: --tag 1 --tag 2 or --tag 1,2 both work\nPagination: Use --page and --page-size for large result sets"
      },
      {
        "title": "Links",
        "body": "ppls on GitHub\nPaperless-NGX Docs"
      }
    ],
    "body": "Paperless-NGX CLI\n\nSearch and manage documents in Paperless-NGX using ppls.\n\nSetup\nnpm install -g @nickchristensen/ppls\nppls config set hostname http://your-paperless-host\nppls config set token your-api-token\n\nSearching Documents\n# By name\nppls documents list --name-contains \"invoice\" --json\n\n# By date range\nppls documents list --created-after 2024-01-01 --created-before 2024-12-31 --json\n\n# By tag (OR — any of these tags)\nppls documents list --tag 5 --tag 12 --json\n\n# By tag (AND — must have all)\nppls documents list --tag-all 5,12 --json\n\n# Exclude tags\nppls documents list --tag-not 3 --json\n\n# By correspondent\nppls documents list --correspondent 7 --json\n\n# By document type\nppls documents list --document-type 2 --json\n\n# Documents missing metadata\nppls documents list --no-correspondent --json\nppls documents list --no-tag --json\n\n# Recently added/modified\nppls documents list --added-after 2024-06-01 --json\nppls documents list --modified-after 2024-06-01 --json\n\n# Combine filters\nppls documents list --correspondent 7 --created-after 2024-01-01 --tag 5 --json\n\nViewing & Downloading\n# Get full document details (includes OCR content)\nppls documents show 1234 --json\n\n# Download single document\nppls documents download 1234 --output ~/Downloads/doc.pdf\n\n# Download multiple documents\nppls documents download 1234 5678 --output-dir ~/Downloads\n\n# Download original (pre-processed) version\nppls documents download 1234 --original\n\nUploading Documents\n# Simple upload (Paperless auto-processes)\nppls documents add scan.pdf\n\n# With metadata\nppls documents add receipt.pdf \\\n  --title \"Store Receipt\" \\\n  --correspondent 5 \\\n  --document-type 2 \\\n  --tag 10\n\nManaging Metadata\n# List tags/correspondents/document-types\nppls tags list --json\nppls correspondents list --json\nppls document-types list --json\n\n# Create new\nppls tags add \"Tax 2024\" --color \"#ff0000\"\nppls correspondents add \"New Vendor\"\nppls document-types add \"Contract\"\n\n# Update document metadata\nppls documents update 1234 --title \"New Title\" --correspondent 5 --tag 10\n\nTips\nAlways use --json for AI/automation — it's the most parseable format\nDate formats: YYYY-MM-DD or full ISO 8601\nIDs are numeric — use list --json commands to find them\nFilters are repeatable: --tag 1 --tag 2 or --tag 1,2 both work\nPagination: Use --page and --page-size for large result sets\nLinks\nppls on GitHub\nPaperless-NGX Docs"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/NickChristensen/paperless",
    "publisherUrl": "https://clawhub.ai/NickChristensen/paperless",
    "owner": "NickChristensen",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/paperless",
    "downloadUrl": "https://openagent3.xyz/downloads/paperless",
    "agentUrl": "https://openagent3.xyz/skills/paperless/agent",
    "manifestUrl": "https://openagent3.xyz/skills/paperless/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/paperless/agent.md"
  }
}