Token导航 LogoToken导航TokenDH.com
待分类敏感数据github未标认证来源可访问许可证需确认审计提醒

nutrient-document-processing营养文件处理

Agent Skill

nutrient-document-processing 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,015

周安装

164

GitHub Stars

6

下载量

1,299
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:nutrient-document-processing(营养文件处理)
来源仓库:https://github.com/pspdfkit-labs/nutrient-agent-skill
仓库路径:skills/nutrient-document-processing
安装命令:
npx skills add https://github.com/pspdfkit-labs/nutrient-agent-skill --skill nutrient-document-processing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pspdfkit-labs/nutrient-agent-skill --skill nutrient-document-processing

简介

nutrient-document-processing 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合项目协作管理。

  • 适用于围绕仓库状态、代码变更或协作事项进行信息组织与查询。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 安装前应确认权限范围、维护状态及是否涉及网络或系统操作。
  • 建议查阅原始 SKILL.md 获取详细用法和限制说明。

SKILL.md

Nutrient Document Processing

Use Nutrient DWS for managed document workflows where fidelity, compliance, or multi-step processing matters more than local-tool convenience.

Setup

  • Get a Nutrient DWS API key at https://dashboard.nutrient.io/sign_up/?product=processor.
  • Direct API calls use Authorization: Bearer $NUTRIENT_API_KEY. export NUTRIENT_API_KEY="nutr_sk_..."
  • MCP setups commonly use @nutrient-sdk/dws-mcp-server with NUTRIENT_DWS_API_KEY.
  • Scripts live in scripts/ relative to this SKILL.md. Use the directory containing this SKILL.md as the working directory: cd <directory containing this SKILL.md> && uv run scripts/<script>.py --help
  • Page ranges use start:end with 0-based indexes and end-exclusive semantics. Negative indexes count from the end.

When to use

  • Generate PDFs from HTML templates, uploaded assets, or remote URLs.
  • Convert Office, HTML, image, and PDF files between supported formats.
  • OCR scans and extract text, tables, or key-value pairs.
  • Redact PII, watermark, sign, fill forms, merge, split, rotate, flatten, or encrypt PDFs.
  • Produce delivery targets like PDF/A, PDF/UA, optimized PDFs, or linearized PDFs.
  • Check credits before large, batch, or AI-heavy runs.

Tool preference

  1. Prefer scripts/*.py for covered single-operation workflows.
  2. Use assets/templates/custom-workflow-template.py for multi-step jobs that should still run through the Python client.
  3. Use the modular references/ docs and direct API payloads for capabilities that do not yet have a dedicated helper script, especially HTML/URL generation and compliance tuning.
  4. Use local PDF utilities only for lightweight inspection. Use Nutrient when output fidelity or compliance matters.

Single-operation scripts

  • convert.py -> convert between pdf, pdfa, pdfua, docx, xlsx, pptx, png, jpeg, webp, html, and markdown
  • merge.py -> merge multiple files into one PDF
  • split.py -> split one PDF into multiple PDFs by page ranges
  • add-pages.py -> append blank pages
  • delete-pages.py -> remove specific pages
  • duplicate-pages.py -> reorder or duplicate pages into a new PDF
  • rotate.py -> rotate selected pages
  • ocr.py -> OCR scanned PDFs or images
  • extract-text.py -> extract text to JSON
  • extract-table.py -> extract tables
  • extract-key-value-pairs.py -> extract key-value pairs
  • watermark-text.py -> apply a text watermark
  • redact-ai.py -> detect and apply AI-powered redactions
  • sign.py -> digitally sign a local PDF
  • password-protect.py -> write encrypted output PDFs
  • optimize.py -> apply optimization and linearization-style options via JSON

Multi-Step Workflow Rule

Do not add new committed pipeline scripts under scripts/.

When the user asks for multiple operations in one run:

  1. Copy assets/templates/custom-workflow-template.py to a temporary location such as /tmp/ndp-workflow-<task>.py.
  2. Implement the combined workflow in that temporary script.
  3. Run it with uv run /tmp/ndp-workflow-<task>.py....
  4. Return generated output files.
  5. Delete the temporary script unless the user explicitly asks to keep it.

PDF Requirements

  • split.py requires a multi-page PDF and cannot extract ranges from a single-page document.
  • delete-pages.py must retain at least one page and cannot delete the entire document.
  • sign.py only accepts local file paths for the main PDF.

Decision rules

  • Prefer a helper script when one already covers the requested operation cleanly.
  • If you control the source markup, prefer HTML generation over browser print workflows.
  • Use remote file.url inputs when the source already lives at a stable URL and you want to avoid local uploads.
  • Use output.type for conversion and finalization targets. Use actions for transformations when building direct API payloads.
  • OCR before text extraction, key-value extraction, or semantic redaction on scans.
  • Prefer preset or regex redaction when the target is explicit. Use AI redaction only for contextual or natural-language requests.
  • Use the PDF manipulation reference for merge, split, rotate, flatten, and page-range workflows instead of inferring those payloads from conversion examples.
  • Treat PDF/A and PDF/UA as compliance targets, not cosmetic export formats. Choose the target up front and validate final artifacts when requirements are contractual.
  • For PDF/UA, clean born-digital inputs and structured HTML usually tag better than rasterized or flattened source PDFs.
  • For delivery optimization, linearize or optimize unsigned output artifacts instead of mutating already signed files.
  • When the user asks for multiple steps, keep destructive or final steps late in the sequence. Use the workflow recipes when ordering is ambiguous.

Anti-patterns

  • Do not OCR born-digital PDFs just because the task mentions extraction. Extract first and OCR only if the text layer is missing.
  • Do not flatten forms or annotations until the user confirms the artifact no longer needs to stay editable.
  • Do not sign, archive, or linearize intermediate working files. Keep those as final-delivery steps.
  • Do not promise PDF/A or PDF/UA compliance without a validation step when the requirement is contractual.
  • Do not commit temporary workflow scripts under scripts/.

Reference map

Read only what you need:

  • references/request-basics.md -> endpoint model, auth, multipart vs JSON, credits, limits, and errors
  • references/generation-and-conversion.md -> HTML/URL generation and format conversion
  • references/pdf-manipulation.md -> merge, split, page-range, rotate, and flatten workflows
  • references/extraction-and-ocr.md -> OCR, text extraction, tables, and key-value workflows
  • references/security-signing-and-forms.md -> redaction, watermarking, signatures, forms, and passwords
  • references/compliance-and-optimization.md -> PDF/A, PDF/UA, optimization, and linearization
  • references/workflow-recipes.md -> end-to-end sequencing patterns for common business document workflows

Rules

  • Fail fast when required arguments are missing.
  • Write outputs to explicit paths and print created files.
  • Do not log secrets.
  • All client methods are async and should run via asyncio.run(main()).
  • If import fails, install dependency with uv add nutrient-dws.

Security Hardening Addendum

  • Prefer a pinned, preinstalled MCP server binary over runtime package fetches.

- Preferred: npm i -g @nutrient-sdk/dws-mcp-server@<pinned-version> - Avoid unpinned runtime fetch in production paths.

  • Never store NUTRIENT_DWS_API_KEY in committed JSON config files.

- Use process env injection at runtime (shell/export, secrets manager, or host env).

  • Restrict file access with SANDBOX_PATH to the minimum required working directory.
  • Before enabling MCP mode in production, verify package provenance and lock version.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.22%
按下载量换算458

Claude

31.76%
按下载量换算413

Cursor

18.88%
按下载量换算245

Gemini CLI

9.29%
按下载量换算121

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills