소스 정보
- 저장소
- taracodlabs/aiden
- 최근 소스 활동
- 2026년 5월 6일 12:31
- 감지된 SKILL.md 언어
- 영어
- 스타
- 779
- 포크
- 140
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/taracodlabs/aiden --skill ocr-and-documents명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | ocr-and-documents |
| description | Extract text from PDFs, images, scans, Word docs (Python) |
| category | productivity |
| version | 1.0.0 |
| origin | aiden |
| license | Apache-2.0 |
| tags | ocr, pdf, image, text-extraction, documents, docx, scan, pymupdf, tesseract, pdf-parse |
Extract readable text from PDFs, scanned images, and Word documents using Python libraries available in most environments. No cloud API required.
.docx Word document programmaticallyimport fitz # pip install pymupdf
doc = fitz.open("document.pdf")
text = "\n\n".join(page.get_text() for page in doc)
print(text[:2000]) # preview first 2000 chars
doc.close()
// requires: npm install pdf-parse (already in DevOS dependencies)
const pdfParse = require('pdf-parse')
const fs = require('fs')
const data = await pdfParse(fs.readFileSync('document.pdf'))
console.log(data.text.slice(0, 2000))
console.log(`Pages: ${data.numpages}`)
Requires Tesseract installed: winget install UB-Mannheim.TesseractOCR
import pytesseract # pip install pytesseract
from PIL import Image # pip install Pillow
img = Image.open("scan.png")
text = pytesseract.image_to_string(img, lang="eng")
print(text)
import pytesseract
from PIL import Image, ImageFilter, ImageOps
img = Image.open("scan.jpg")
img = ImageOps.grayscale(img)
img = img.filter(ImageFilter.SHARPEN)
img = img.point(lambda p: 255 if p > 128 else 0) # binarize
text = pytesseract.image_to_string(img, config="--psm 6")
print(text)
from docx import Document # pip install python-docx
doc = Document("report.docx")
paras = [p.text for p in doc.paragraphs if p.text.strip()]
text = "\n".join(paras)
print(text)
import fitz
doc = fitz.open("big_report.pdf")
pages = range(4, 9) # pages 5-9 (0-indexed)
text = "\n\n".join(doc[i].get_text() for i in pages)
print(text)
import pdfplumber # pip install pdfplumber
with pdfplumber.open("financial_report.pdf") as pdf:
for page in pdf.pages:
for table in page.extract_tables():
for row in table:
print("\t".join(str(cell or "") for cell in row))
"Read the text from this PDF contract" → Use step 1 (pymupdf) or step 2 (pdf-parse) depending on whether Python or Node is preferred.
"Extract the table from page 3 of this quarterly report PDF"
→ Use step 7 (pdfplumber) targeting pdf.pages[2] for page 3.
"Read the text from this scanned invoice image" → Use step 3 or 4 (Tesseract). For low-quality scans, use step 4 with preprocessing.
fitz) extracts only programmatically embedded text — it won't OCR scanned pageslang="hin" for Hindi, "deu" for GermanSOC 직업 분류 기준