Skip to main content Inicio Creadores sam42-lab everything-claude-code-kr nutrient-document-processing
nutrient-document-processing Nutrient DWS API를 사용해 문서를 처리, 변환, OCR, 추출, 비식별 처리, 서명, 입력합니다. PDF, DOCX, XLSX, PPTX, HTML, 이미지 형식을 지원합니다.
Ir a la instalación Skills Marketplace Descubre y explora habilidades de IA creadas por la comunidad.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Copiar promptMostrar detalles del prompt Un comando directo omite el prompt de revisión. Revisa el origen antes de ejecutarlo.
npx skills add https://github.com/SAM42-Lab/everything-claude-code-kr --skill nutrient-document-processingEl comando permanece en una sola línea. Desplázate horizontalmente para revisarlo antes de copiarlo.
¿Prefieres una copia local? Descarga los archivos que SkillsMP tiene disponibles ahora.
Descargar Zip Descargando... Ocupaciones relacionadas SOC
Basado en la clasificación ocupacional SOC
name nutrient-document-processing description Nutrient DWS API를 사용해 문서를 처리, 변환, OCR, 추출, 비식별 처리, 서명, 입력합니다. PDF, DOCX, XLSX, PPTX, HTML, 이미지 형식을 지원합니다. origin ECC
Nutrient 문서 처리
참고: 이 스킬은 Nutrient 상용 API와 연동됩니다. 사용 전에 서비스 약관을 확인하세요.
Nutrient DWS Processor API 로 문서를 처리합니다. 형식 변환, 텍스트 및 표 추출, 스캔 문서 OCR, 개인정보 비식별 처리, 워터마크 추가, 디지털 서명, PDF 폼 입력을 수행할 수 있습니다.
설정
nutrient.io 에서 무료 API 키를 발급받습니다.
export NUTRIENT_API_KEY="pdf_live_..."
모든 요청은 instructions JSON 필드를 포함한 multipart POST 형태로 https://api.nutrient.io/build에 전송됩니다.
작업 종류
문서 변환
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
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
curl -X POST https://api.nutrient.io/build \
-H \
-F \
-F \
-o output.pdf
"Authorization: Bearer $NUTRIENT_API_KEY "
"index.html=@index.html"
'instructions={"parts":[{"html":"index.html"}]}'
지원 입력 형식: 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
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
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 코드 기준 100개 이상의 언어를 지원합니다. 예: eng, deu, fra, spa, jpn, kor, chi_sim, chi_tra, ara, hin, rus. english, german 같은 전체 언어명도 사용할 수 있습니다. 전체 코드는 OCR 언어 지원 표 를 확인하세요.
민감 정보 비식별 처리
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
디지털 서명
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.pdf
PDF 폼 입력 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.pdf
MCP 서버 대안 도구에 네이티브로 통합하려면 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을 수행할 때
문서를 공유하기 전에 개인정보를 비식별 처리할 때
초안 또는 기밀 문서에 워터마크를 넣을 때
계약서나 합의서에 디지털 서명을 할 때
PDF 폼을 코드로 채울 때
링크