
Nutrient Document Processing
- 6.1k installs
- 238k repo stars
- Updated August 5, 2026
- affaan-m/everything-claude-code
nutrient-document-processing is an agent skill for Nutrient DWS API を使用してドキュメントの処理、変換、OCR、抽出、編集、署名、フォーム入力を行います。PDF、DOCX、XLSX、PPTX、HTML、画像に対応しています。
About
Nutrient DWS API を使用してドキュメントの処理 変換 OCR 抽出 編集 署名 フォーム入力を行います PDF DOCX XLSX PPTX HTML 画像に対応しています name nutrient-document-processing description Nutrient DWS API を使用してドキュメントの処理 変換 OCR 抽出 編集 署名 フォーム入力を行います PDF DOCX XLSX PPTX HTML 画像に対応しています Nutrient Document Processing Nutrient DWS Processor API https www nutrient io api でドキュメントを処理します フォーマット変換 テキストとテーブルの抽出 スキャンされたドキュメントの OCR PII の編集 ウォーターマークの追加 デジタル署名 PDF フォームの入力が可能です セットアップ nutrient io https dashboard nutrient io sign_up product processor で無料の API キーを取得してください bash export NUTRIENT_API_KEY pdf_live_ すべてのリクエストは https api nutrient io build に instructions JSON フィールドを含むマルチパート POST として送信されます 操作 ドキュメントの変換 bash DOCX から 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 から 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 から PDF へ curl X POST https api nutrient io build H Authorization Bearer NUTRIENT_API_KEY F
- Nutrient Document Processing
- 検索可能な PDF への OCR(100以上の言語をサポート)
- フォーマット間でのドキュメント変換(PDF、DOCX、XLSX、PPTX、HTML、画像)
- PDF からテキスト、テーブル、キー値ペアの抽出
- スキャンされたドキュメントまたは画像の OCR
Nutrient Document Processing by the numbers
- 6,096 all-time installs (skills.sh)
- +222 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #107 of 2,203 Security skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
nutrient-document-processing capabilities & compatibility
- Capabilities
- nutrient document processing · 検索可能な pdf への ocr(100以上の言語をサポート) · フォーマット間でのドキュメント変換(pdf、docx、xlsx、pptx、html、画像) · pdf からテキスト、テーブル、キー値ペアの抽出 · スキャンされたドキュメントまたは画像の ocr
- Use cases
- documentation
What nutrient-document-processing says it does
--- name: nutrient-document-processing description: Nutrient DWS API を使用してドキュメントの処理、変換、OCR、抽出、編集、署名、フォーム入力を行います。PDF、DOCX、XLSX、PPTX、HTML、画像に対応しています。 --- # Nutri
npx skills add https://github.com/affaan-m/everything-claude-code --skill nutrient-document-processingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 6.1k |
|---|---|
| repo stars | ★ 238k |
| Security audit | 3 / 3 scanners passed |
| Last updated | August 5, 2026 |
| Repository | affaan-m/everything-claude-code ↗ |
When should developers use nutrient-document-processing and what problem does it solve?
Nutrient DWS API を使用してドキュメントの処理、変換、OCR、抽出、編集、署名、フォーム入力を行います。PDF、DOCX、XLSX、PPTX、HTML、画像に対応しています。
Who is it for?
Developers working with nutrient-document-processing patterns described in the skill documentation.
Skip if: Skip when cached docs are empty or the task is outside the skill's documented scope.
When should I use this skill?
Nutrient DWS API を使用してドキュメントの処理、変換、OCR、抽出、編集、署名、フォーム入力を行います。PDF、DOCX、XLSX、PPTX、HTML、画像に対応しています。
What you get
Grounded guidance and workflows from SKILL.md for nutrient-document-processing.
- Converted documents
- Extracted text and tables
- Redacted or signed PDFs
By the numbers
- Supports 6 input families: PDF, DOCX, XLSX, PPTX, HTML, and images
Files
Nutrient Document Processing
Nutrient DWS Processor API でドキュメントを処理します。フォーマット変換、テキストとテーブルの抽出、スキャンされたドキュメントの OCR、PII の編集、ウォーターマークの追加、デジタル署名、PDF フォームの入力が可能です。
セットアップ
[nutrient.io](https://dashboard.nutrient.io/sign_up/?product=processor) で無料の API キーを取得してください
export NUTRIENT_API_KEY="pdf_live_..."すべてのリクエストは https://api.nutrient.io/build に instructions JSON フィールドを含むマルチパート POST として送信されます。
操作
ドキュメントの変換
# DOCX から 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 から 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 から PDF へ
curl -X POST https://api.nutrient.io/build \
-H "Authorization: Bearer $NUTRIENT_API_KEY" \
-F "index.html=@index.html" \
-F 'instructions={"parts":[{"html":"index.html"}]}' \
-o output.pdfサポートされている入力形式: PDF、DOCX、XLSX、PPTX、DOC、XLS、PPT、PPS、PPSX、ODT、RTF、HTML、JPG、PNG、TIFF、HEIC、GIF、WebP、SVG、TGA、EPS。
テキストとデータの抽出
# プレーンテキストの抽出
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":"text"}}' \
-o output.txt
# テーブルを Excel として抽出
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":"xlsx"}}' \
-o tables.xlsxスキャンされたドキュメントの OCR
# 検索可能な PDF への OCR(100以上の言語をサポート)
curl -X POST https://api.nutrient.io/build \
-H "Authorization: Bearer $NUTRIENT_API_KEY" \
-F "scanned.pdf=@scanned.pdf" \
-F 'instructions={"parts":[{"file":"scanned.pdf"}],"actions":[{"type":"ocr","language":"english"}]}' \
-o searchable.pdf言語: ISO 639-2 コード(例: eng、deu、fra、spa、jpn、kor、chi_sim、chi_tra、ara、hin、rus)を介して100以上の言語をサポートしています。english や german などの完全な言語名も機能します。サポートされているすべてのコードについては、完全な OCR 言語表を参照してください。
機密情報の編集
# パターンベース(SSN、メール)
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"}],"actions":[{"type":"redaction","strategy":"preset","strategyOptions":{"preset":"social-security-number"}},{"type":"redaction","strategy":"preset","strategyOptions":{"preset":"email-address"}}]}' \
-o redacted.pdf
# 正規表現ベース
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"}],"actions":[{"type":"redaction","strategy":"regex","strategyOptions":{"regex":"\\b[A-Z]{2}\\d{6}\\b"}}]}' \
-o redacted.pdfプリセット: social-security-number、email-address、credit-card-number、international-phone-number、north-american-phone-number、date、time、url、ipv4、ipv6、mac-address、us-zip-code、vin。
ウォーターマークの追加
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"}],"actions":[{"type":"watermark","text":"CONFIDENTIAL","fontSize":72,"opacity":0.3,"rotation":-45}]}' \
-o watermarked.pdfデジタル署名
# 自己署名 CMS 署名
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"}],"actions":[{"type":"sign","signatureType":"cms"}]}' \
-o signed.pdfPDF フォームの入力
curl -X POST https://api.nutrient.io/build \
-H "Authorization: Bearer $NUTRIENT_API_KEY" \
-F "form.pdf=@form.pdf" \
-F 'instructions={"parts":[{"file":"form.pdf"}],"actions":[{"type":"fillForm","formFields":{"name":"Jane Smith","email":"jane@example.com","date":"2026-02-06"}}]}' \
-o filled.pdfMCP サーバー(代替)
ネイティブツール統合には、curl の代わりに MCP サーバーを使用します:
{
"mcpServers": {
"nutrient-dws": {
"command": "npx",
"args": ["-y", "@nutrient-sdk/dws-mcp-server"],
"env": {
"NUTRIENT_DWS_API_KEY": "YOUR_API_KEY",
"SANDBOX_PATH": "/path/to/working/directory"
}
}
}
}使用タイミング
- フォーマット間でのドキュメント変換(PDF、DOCX、XLSX、PPTX、HTML、画像)
- PDF からテキスト、テーブル、キー値ペアの抽出
- スキャンされたドキュメントまたは画像の OCR
- ドキュメントを共有する前の PII の編集
- ドラフトまたは機密文書へのウォーターマークの追加
- 契約または合意書へのデジタル署名
- プログラムによる PDF フォームの入力
リンク
Related skills
Forks & variants (1)
Nutrient Document Processing has 1 known copy in the catalog totaling 1.4k installs. They canonicalize to this original listing.
- affaan-m - 1.4k installs
How it compares
Choose nutrient-document-processing when you need a managed document API for conversion, OCR, and compliance actions instead of self-hosted LibreOffice or Tesseract scripts.
FAQ
What does nutrient-document-processing do?
Nutrient DWS API を使用してドキュメントの処理、変換、OCR、抽出、編集、署名、フォーム入力を行います。PDF、DOCX、XLSX、PPTX、HTML、画像に対応しています。
When should I invoke nutrient-document-processing?
Nutrient DWS API を使用してドキュメントの処理、変換、OCR、抽出、編集、署名、フォーム入力を行います。PDF、DOCX、XLSX、PPTX、HTML、画像に対応しています。
Where is the source documentation?
Ground claims in SKILL.md excerpts and linked reference files from the cached docs.
Is Nutrient Document Processing safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.