paperless
Interact with Paperless-NGX document management system via ppls CLI. Search, retrieve, upload, and organize documents.
Best use case
paperless is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Interact with Paperless-NGX document management system via ppls CLI. Search, retrieve, upload, and organize documents.
Teams using paperless should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/paperless/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How paperless Compares
| Feature / Agent | paperless | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Interact with Paperless-NGX document management system via ppls CLI. Search, retrieve, upload, and organize documents.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Paperless-NGX CLI Search and manage documents in Paperless-NGX using `ppls`. ## Setup ```bash npm install -g @nickchristensen/ppls ppls config set hostname http://your-paperless-host ppls config set token your-api-token ``` ## Searching Documents ```bash # By name ppls documents list --name-contains "invoice" --json # By date range ppls documents list --created-after 2024-01-01 --created-before 2024-12-31 --json # By tag (OR — any of these tags) ppls documents list --tag 5 --tag 12 --json # By tag (AND — must have all) ppls documents list --tag-all 5,12 --json # Exclude tags ppls documents list --tag-not 3 --json # By correspondent ppls documents list --correspondent 7 --json # By document type ppls documents list --document-type 2 --json # Documents missing metadata ppls documents list --no-correspondent --json ppls documents list --no-tag --json # Recently added/modified ppls documents list --added-after 2024-06-01 --json ppls documents list --modified-after 2024-06-01 --json # Combine filters ppls documents list --correspondent 7 --created-after 2024-01-01 --tag 5 --json ``` ## Viewing & Downloading ```bash # Get full document details (includes OCR content) ppls documents show 1234 --json # Download single document ppls documents download 1234 --output ~/Downloads/doc.pdf # Download multiple documents ppls documents download 1234 5678 --output-dir ~/Downloads # Download original (pre-processed) version ppls documents download 1234 --original ``` ## Uploading Documents ```bash # Simple upload (Paperless auto-processes) ppls documents add scan.pdf # With metadata ppls documents add receipt.pdf \ --title "Store Receipt" \ --correspondent 5 \ --document-type 2 \ --tag 10 ``` ## Managing Metadata ```bash # List tags/correspondents/document-types ppls tags list --json ppls correspondents list --json ppls document-types list --json # Create new ppls tags add "Tax 2024" --color "#ff0000" ppls correspondents add "New Vendor" ppls document-types add "Contract" # Update document metadata ppls documents update 1234 --title "New Title" --correspondent 5 --tag 10 ``` ## Tips - **Always use `--json`** for AI/automation — it's the most parseable format - **Date formats:** `YYYY-MM-DD` or full ISO 8601 - **IDs are numeric** — use `list --json` commands to find them - **Filters are repeatable:** `--tag 1 --tag 2` or `--tag 1,2` both work - **Pagination:** Use `--page` and `--page-size` for large result sets ## Links - [ppls on GitHub](https://github.com/NickChristensen/ppls) - [Paperless-NGX Docs](https://docs.paperless-ngx.com/)
Related Skills
paperless-ngx
Interact with Paperless-ngx document management system via REST API. Use when users want to search, upload, download, organize documents, manage tags, correspondents, or document types in their Paperless-ngx instance.
portfolio-watcher
Monitor stock/crypto holdings, get price alerts, track portfolio performance
portainer
Control Docker containers and stacks via Portainer API. List containers, start/stop/restart, view logs, and redeploy stacks from git.
portable-tools
Build cross-device tools without hardcoding paths or account names
polymarket
Trade prediction markets on Polymarket. Analyze odds, place bets, track positions, automate alerts, and maximize returns from event outcomes. Covers sports, politics, entertainment, and more.
polymarket-traiding-bot
No description provided.
polymarket-analysis
Analyze Polymarket prediction markets for trading edges. Pair Cost arbitrage, whale tracking, sentiment analysis, momentum signals, user profile tracking. No execution.
polymarket-agent
Autonomous prediction market agent - analyzes markets, researches news, and identifies trading opportunities
polymarket-5
Query Polymarket prediction markets. Use for questions about prediction markets, betting odds, market prices, event probabilities, or when user asks about Polymarket data.
polymarket-4
Query Polymarket prediction markets. Use for questions about prediction markets, betting odds, market prices, event probabilities, or when user asks about Polymarket data.
polymarket-3
Query Polymarket prediction market odds and events via CLI. Search for markets, get current prices, list events by category. Supports sports betting (NFL, NBA, soccer/EPL, Champions League), politics, crypto, elections, geopolitics. Real money markets = more accurate than polls. No API key required. Use when asked about odds, probabilities, predictions, or "what are the chances of X".
polymarket-2
Query Polymarket prediction markets - check odds, trending markets, search events, track prices.