# Send Paperless-ngx to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/paperless-ngx",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=paperless-ngx",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Paperless-ngx Skill

Manage documents in Paperless-ngx via its REST API using HTTP requests.

### Configuration

Requires environment variables:

PAPERLESS_URL: Base URL (e.g., https://paperless.example.com)
PAPERLESS_TOKEN: API token from Paperless-ngx settings

### Authentication

Include token in all requests:

Authorization: Token $PAPERLESS_TOKEN

### Search Documents

curl -s "$PAPERLESS_URL/api/documents/?query=invoice" \\
  -H "Authorization: Token $PAPERLESS_TOKEN"

Filter options: correspondent__id, document_type__id, tags__id__in, created__date__gte, created__date__lte, added__date__gte.

### Get Document Details

curl -s "$PAPERLESS_URL/api/documents/{id}/" \\
  -H "Authorization: Token $PAPERLESS_TOKEN"

### Download Document

# Original file
curl -s "$PAPERLESS_URL/api/documents/{id}/download/" \\
  -H "Authorization: Token $PAPERLESS_TOKEN" -o document.pdf

# Archived (OCR'd) version
curl -s "$PAPERLESS_URL/api/documents/{id}/download/?original=false" \\
  -H "Authorization: Token $PAPERLESS_TOKEN" -o document.pdf

### Upload Document

curl -s "$PAPERLESS_URL/api/documents/post_document/" \\
  -H "Authorization: Token $PAPERLESS_TOKEN" \\
  -F "document=@/path/to/file.pdf" \\
  -F "title=Document Title" \\
  -F "correspondent=1" \\
  -F "document_type=2" \\
  -F "tags=3" \\
  -F "tags=4"

Optional fields: title, created, correspondent, document_type, storage_path, tags (repeatable), archive_serial_number, custom_fields.

### Update Document Metadata

curl -s -X PATCH "$PAPERLESS_URL/api/documents/{id}/" \\
  -H "Authorization: Token $PAPERLESS_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{"title": "New Title", "correspondent": 1, "tags": [1, 2]}'

### Delete Document

curl -s -X DELETE "$PAPERLESS_URL/api/documents/{id}/" \\
  -H "Authorization: Token $PAPERLESS_TOKEN"

### Tags

# List tags
curl -s "$PAPERLESS_URL/api/tags/" -H "Authorization: Token $PAPERLESS_TOKEN"

# Create tag
curl -s -X POST "$PAPERLESS_URL/api/tags/" \\
  -H "Authorization: Token $PAPERLESS_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{"name": "Important", "color": "#ff0000"}'

### Correspondents

# List correspondents
curl -s "$PAPERLESS_URL/api/correspondents/" -H "Authorization: Token $PAPERLESS_TOKEN"

# Create correspondent
curl -s -X POST "$PAPERLESS_URL/api/correspondents/" \\
  -H "Authorization: Token $PAPERLESS_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{"name": "ACME Corp"}'

### Document Types

# List document types
curl -s "$PAPERLESS_URL/api/document_types/" -H "Authorization: Token $PAPERLESS_TOKEN"

# Create document type
curl -s -X POST "$PAPERLESS_URL/api/document_types/" \\
  -H "Authorization: Token $PAPERLESS_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{"name": "Invoice"}'

### Bulk Operations

curl -s -X POST "$PAPERLESS_URL/api/documents/bulk_edit/" \\
  -H "Authorization: Token $PAPERLESS_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{
    "documents": [1, 2, 3],
    "method": "add_tag",
    "parameters": {"tag": 5}
  }'

Methods: set_correspondent, set_document_type, add_tag, remove_tag, delete, reprocess.

### Task Status

After upload, check task status:

curl -s "$PAPERLESS_URL/api/tasks/?task_id={uuid}" \\
  -H "Authorization: Token $PAPERLESS_TOKEN"

### Response Handling

List endpoints return {"count": N, "results": [...]} with pagination
Single objects return the object directly
Use ?page=2 for pagination
Add ?ordering=-created for sorting (prefix - for descending)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: OskarStark
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/paperless-ngx)
- [Send to Agent page](https://openagent3.xyz/skills/paperless-ngx/agent)
- [JSON manifest](https://openagent3.xyz/skills/paperless-ngx/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/paperless-ngx/agent.md)
- [Download page](https://openagent3.xyz/downloads/paperless-ngx)