通过 ppls CLI 与 Paperless-NGX 文档管理系统交互。搜索、检索、上传和组织文档。
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install paperless或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install paperless⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/paperless/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: paperless description: Interact with Paperless-NGX document management system via ppls CLI. Search, retrieve, upload, and organize documents. emoji: 📄 metadata: {"clawdbot":{"requires":{"bins":["ppls"],"env":["PPLS_HOSTNAME","PPLS_TOKEN"]},"install":[{"id":"node","kind":"node","package":"@nickchristensen/ppls","bins":["ppls"],"label":"Install ppls CLI (npm/bun)"}]}} ---
Search and manage documents in Paperless-NGX using ppls.
npm install -g @nickchristensen/ppls
ppls config set hostname http://your-paperless-host
ppls config set token your-api-token
# 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
# 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
# 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
# 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
--json for AI/automation — it's the most parseable formatYYYY-MM-DD or full ISO 8601list --json commands to find them--tag 1 --tag 2 or --tag 1,2 both work--page and --page-size for large result sets安装 无纸化 后,可以对 AI 说这些话来触发它
Help me get started with Paperless
Explains what Paperless does, walks through the setup, and runs a quick demo based on your current project
Use Paperless to interact with Paperless-NGX document management system via ppls CLI
Invokes Paperless with the right parameters and returns the result directly in the conversation
What can I do with Paperless in my documents & notes workflow?
Lists the top use cases for Paperless, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/paperless/ 目录(个人级,所有项目可用),或 .claude/skills/paperless/(项目级)。重启 AI 客户端后,用 /paperless 主动调用,或让 AI 根据上下文自动发现并使用。
无纸化 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
无纸化 可免费安装使用。请查阅仓库了解许可证信息。
通过 ppls CLI 与 Paperless-NGX 文档管理系统交互。搜索、检索、上传和组织文档。
无纸化 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my documents & notes tasks using Paperless
Identifies repetitive steps in your workflow and sets up Paperless to handle them automatically