📄

pdf

Risque faible ⚡ Contient des scripts

معالجة مستندات PDF باستخدام Claude

Également disponible depuis: DYAI2025,sickn33,Cam10001110101,92Bilal26,ZhanlinCui,K-Dense-AI,davila7,Azeem-2,anthropics,92Bilal26,ArtemisAI,AutumnsGrove

هل تحتاج لاستخراج البيانات من ملفات PDF، أو تعبئة النماذج، أو دمج المستندات؟ يمكن لـ Claude قراءة ملفات PDF وإنشائها وتعديلها باستخدام مكتبات Python وأدوات سطر الأوامر.

Prend en charge: Claude Codex Code(CC)
🥉 73 Bronze
1

Télécharger le ZIP du skill

2

Importer dans Claude

Allez dans Paramètres → Capacités → Skills → Importer un skill

3

Activez et commencez à utiliser

Tester

Utilisation de "pdf". Read document.pdf and tell me what it contains

Résultat attendu:

  • Document: document.pdf (12 pages)
  • Contains: Invoice #2024-001 for Acme Corp
  • Metadata: Created 2024-12-15, Author: J. Smith
  • No fillable form fields detected
  • Extracted 3 tables (financial summary on page 5)

Utilisation de "pdf". Fill out my application form

Résultat attendu:

  • Analyzed form fields: 12 text fields, 3 checkboxes, 2 radio groups
  • Filled 17 fields with provided values
  • Output saved to: filled_application.pdf
  • Validation: All fields populated correctly

Audit de sécurité

Risque faible
v4 • 1/16/2026

Legitimate PDF manipulation toolkit containing documentation and Python scripts using standard PDF libraries (pypdf, pdfplumber, reportlab). Static findings are false positives: 143 patterns detected in markdown files are code examples in documentation, not executable code. The Python scripts in scripts/ directory are standard PDF processing utilities with no malicious behavior.

13
Fichiers analysés
2,192
Lignes analysées
1
résultats
4
Total des audits

Score de qualité

59
Architecture
100
Maintenabilité
85
Contenu
20
Communauté
90
Sécurité
91
Conformité aux spécifications

Ce que vous pouvez construire

استخراج البيانات من الأوراق البحثية

استخراج الجداول والنصوص من الأوراق البحثية للتحليل أو المرجعية

تعبئة نماذج PDF تلقائياً

إكمال النماذج من خلال توفير قيم الحقول عبر تكوين JSON

معالجة وثائق العقود

تقسيم العقود متعددة الصفحات، واستخراج البنود، ودمج الإصدارات المعدلة

Essayez ces prompts

استخراج أساسي
Read the PDF at [file.pdf] and tell me how many pages it has, then extract all the text
استخراج الجداول
Extract all tables from [report.pdf] and save them to a CSV file
تعبئة النماذج
Fill out the form in [application.pdf] using these field values: name=John Smith, email=john@example.com
تجميع المستندات
Merge all PDFs in the [input] folder into one file, then split it into separate files by chapter

Bonnes pratiques

  • استخدم pdfplumber لاستخراج النص، وpypdf لمعالجة المستندات، وqpdf لعمليات سطر الأوامر
  • استخرج الجداول مع الإحداثيات عندما تكون الدقة مهمة للمعالجة اللاحقة
  • قسم ملفات PDF الكبيرة قبل معالجتها لتجنب مشاكل الذاكرة

Éviter

  • لا تنسخ النص ولصقه يدوياً عندما يكون الاستخراج البرمجي أسرع
  • لا تخلط بين حقول النماذج القابلة للتعبئة ومربعات النص المرئية (تتطلب طرقاً مختلفة)
  • لا تحاول تحرير ملفات PDF المصممة للطباعة (استخدم سير عمل الطباعة إلى PDF بدلاً من ذلك)

Foire aux questions

ما الأدوات التي تدعم هذه المهارة؟
Works with Claude, Codex, and Claude Code. Requires Python environment with pypdf and pdfplumber installed.
ما حزم Python التي أحتاجها؟
Install pypdf, pdfplumber, reportlab, and pdf2image via pip. Some CLI tools require poppler-utils.
كيف يمكنني تعبئة نماذج PDF القابلة للتعبئة؟
Run extract_form_field_info.py to list fields, create field_values.json with data, then run fill_fillable_fields.py.
هل بياناتي آمنة عند معالجة ملفات PDF؟
Yes. All processing happens locally on your machine. No data is sent to external servers.
لماذا يكون استخراج النص فارغاً لملف PDF الخاص بي؟
Your PDF may be a scanned image. Use pytesseract with pdf2image for OCR, or convert to images first.
كيف يختلف هذا عن أدوات PDF الأخرى؟
This skill provides Claude with structured workflows including validation, coordinate mapping, and form handling.