โ† All skills
Tencent SkillHub ยท Productivity

Paperless-ngx Document Manager

Manage documents in Paperless-ngx - search, upload, tag, and retrieve.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage documents in Paperless-ngx - search, upload, tag, and retrieve.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/api.md, scripts/correspondents.mjs, scripts/download.mjs, scripts/get.mjs, scripts/list.mjs

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Paperless-ngx

Document management via Paperless-ngx REST API.

Configuration

Set environment variables in ~/.clawdbot/clawdbot.json: { "env": { "PAPERLESS_URL": "http://your-paperless-host:8000", "PAPERLESS_TOKEN": "your-api-token" } } Or configure via the skills entry (allows using apiKey shorthand): { "skills": { "entries": { "paperless-ngx": { "env": { "PAPERLESS_URL": "http://your-paperless-host:8000" }, "apiKey": "your-api-token" } } } } Get your API token from Paperless web UI: Settings โ†’ Users & Groups โ†’ [user] โ†’ Generate Token.

Quick Reference

TaskCommandSearch documentsnode {baseDir}/scripts/search.mjs "query"List recentnode {baseDir}/scripts/list.mjs [--limit N]Get documentnode {baseDir}/scripts/get.mjs <id> [--content]Upload documentnode {baseDir}/scripts/upload.mjs <file> [--title "..."] [--tags "a,b"]Download PDFnode {baseDir}/scripts/download.mjs <id> [--output path]List tagsnode {baseDir}/scripts/tags.mjsList typesnode {baseDir}/scripts/types.mjsList correspondentsnode {baseDir}/scripts/correspondents.mjs All scripts are in {baseDir}/scripts/.

Find a document

# Full-text search node {baseDir}/scripts/search.mjs "electricity bill december" # Filter by tag node {baseDir}/scripts/search.mjs --tag "tax-deductible" # Filter by document type node {baseDir}/scripts/search.mjs --type "Invoice" # Filter by correspondent node {baseDir}/scripts/search.mjs --correspondent "AGL" # Combine filters node {baseDir}/scripts/search.mjs "2025" --tag "unpaid" --type "Invoice"

Get document details

# Metadata only node {baseDir}/scripts/get.mjs 28 # Include OCR text content node {baseDir}/scripts/get.mjs 28 --content # Full content (no truncation) node {baseDir}/scripts/get.mjs 28 --content --full

Upload a document

# Basic upload (title auto-detected) node {baseDir}/scripts/upload.mjs /path/to/invoice.pdf # With metadata node {baseDir}/scripts/upload.mjs /path/to/invoice.pdf \ --title "AGL Electricity Jan 2026" \ --tags "unpaid,utility" \ --type "Invoice" \ --correspondent "AGL" \ --created "2026-01-15"

Download a document

# Download to current directory node {baseDir}/scripts/download.mjs 28 # Specify output path node {baseDir}/scripts/download.mjs 28 --output ~/Downloads/document.pdf # Get original (not archived/OCR'd version) node {baseDir}/scripts/download.mjs 28 --original

Manage metadata

# List all tags node {baseDir}/scripts/tags.mjs # List document types node {baseDir}/scripts/types.mjs # List correspondents node {baseDir}/scripts/correspondents.mjs # Create new tag node {baseDir}/scripts/tags.mjs --create "new-tag-name" # Create new correspondent node {baseDir}/scripts/correspondents.mjs --create "New Company Name"

Output Format

All scripts output JSON for easy parsing. Use jq for formatting: node {baseDir}/scripts/search.mjs "invoice" | jq '.results[] | {id, title, created}'

Advanced Usage

For complex queries or bulk operations, see references/api.md for direct API access patterns.

Troubleshooting

"PAPERLESS_URL not set" โ€” Add to ~/.clawdbot/clawdbot.json env section or export in shell. "401 Unauthorized" โ€” Check PAPERLESS_TOKEN is valid. Regenerate in Paperless UI if needed. "Connection refused" โ€” Verify Paperless is running and URL is correct (include port). Upload fails silently โ€” Check Paperless logs; file may be duplicate or unsupported format.

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Scripts2 Docs
  • SKILL.md Primary doc
  • references/api.md Docs
  • scripts/correspondents.mjs Scripts
  • scripts/download.mjs Scripts
  • scripts/get.mjs Scripts
  • scripts/list.mjs Scripts