nutrient-document-processing
Process, convert, OCR, extract, redact, sign, and fill documents using the Nutrient DWS API. Works with PDFs, DOCX, XLSX, PPTX, HTML, and images.
npx skills add mturac/everything-openai-codex --skill nutrient-document-processing --agent codex
Same command for any agent — swap --agent for claude-code, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Nutrient Document Processing > **Note:** This skill integrates with the Nutrient commercial API. Review their terms before use. Process documents with the [Nutrient DWS Processor API](https://www.nutrient.io/api/). Convert formats, extract text and tables, OCR scanned documents, redact PII, add watermarks, digitally sign, and fill PDF forms. ## Setup Get a free API key at **[nutrient.io](https://dashboard.nutrient.io/sign_up/?product=processor)** ```bash export NUTRIENT_API_KEY="pdf_live_..." ``` All requests go to `https://api.nutrient.io/build` as multipart POST with an `instructions` JSON field. ## Operations ### Convert Documents ```bash # DOCX to PDF curl -X POST https://api.nutrient.io/build \ -H "Authorization: Bearer $NUTRIENT_API_KEY" \ -F "document.docx=@document.docx" \ -F 'instructions={"parts":[{"file":"document.docx"}]}' \ -o output.pdf # PDF to DOCX curl -X POST https://api.nutrient.io/build \ -H "Authorization: Bearer $NUTRIENT_API_KEY" \ -F "document.pdf=@document.pdf" \ -F 'instructions={"parts":[{"file":"document.pdf"}],"output":{"type":"docx"}}' \ -o output.docx # HTML to PDF curl -X POST https://api.nutrient.io/build \ -H "Authorization: Bearer $NUTRIENT_API_
- Setup
- Operations
- Convert Documents
- Extract Text and Data
- OCR Scanned Documents
- Redact Sensitive Information
- Add Watermarks
- Digital Signatures
- Fill PDF Forms
- MCP Server (Alternative)
- When to Use
- Links
export NUTRIENT_API_KEY="pdf_live_..." DOCX to PDF curl -X POST https://api.nutrient.io/build \ PDF to DOCX HTML to PDF Extract plain text Extract tables as Excel OCR to searchable PDF (supports 100+ languages) Pattern-based (SSN, email) Regex-based
What does the nutrient-document-processing skill do?
Process, convert, OCR, extract, redact, sign, and fill documents using the Nutrient DWS API. Works with PDFs, DOCX, XLSX, PPTX, HTML, and images.
How do I install it?
Run `npx skills add mturac/everything-openai-codex --skill nutrient-document-processing --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From mturac/everything-openai-codex, a repository with 84 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
