PDF Skill
When To Use
- Read or review PDF content where layout and visuals matter.
- Create PDFs programmatically with reliable formatting.
- Fill and validate interactive PDF forms.
- Validate final rendering before delivery.
Workflow
- Prefer visual review: render PDF pages to PNGs and inspect them.
- Use
pdftoppm from the bundled runtime or system Poppler when available.
- If unavailable, install Poppler or ask the user to review the output locally.
- Use
reportlab to generate PDFs when creating new documents.
- Use
pdfplumber or pypdf for text extraction and quick checks; do not rely on text extraction for layout fidelity.
- After each meaningful update, re-render pages and verify alignment, spacing, and legibility.
Fill And Validate AcroForms
Visual review alone is not a correctness check for a fillable PDF. A page /Widget annotation can render a value from its appearance stream while the canonical /AcroForm/Fields tree is missing or contains a stale value.
- Keep the result interactive by default; set
flatten=True only when the user explicitly requests a completed, static form. Preserve the source PDF, and do not flatten a signed PDF without an explicit workflow decision.
- Inspect both representations before filling: enumerate fields from
reader.get_fields() and /Widget annotations from every page's /Annots, following /Parent and /Kids. If a widget and a canonical field have the same name but are distinct objects with no /Parent relationship, do not call reattach_fields() blindly: it can create a second top-level field with the same name. Report the ambiguity or produce a static result.
- Recover genuinely orphaned widgets, fill all pages, and write the result with
pypdf:
from pypdf import PdfReader, PdfWriter
from pypdf.generic import NameObject
reader = PdfReader(input_pdf)
writer = PdfWriter()
writer.clone_document_from_reader(reader)
# Restores widgets that are missing from /AcroForm/Fields.
writer.reattach_fields()
fields = writer.get_fields() or {}
missing = set(expected_values) - set(fields)
if missing:
raise ValueError(f"Form fields not found after repair: {sorted(missing)}")
values_to_write = dict(expected_values)
if flatten:
# Paint every existing value before removing every widget.
values_to_write = {
name: field.get("/V", "/Off" if field.get("/FT") == "/Btn" else "")
for name, field in fields.items()
}
values_to_write.update(expected_values)
writer.update_page_form_field_values(
None, values_to_write, auto_regenerate=False, flatten=flatten
)
if flatten:
# pypdf's flatten=True paints appearances but does not remove widgets.
writer.remove_annotations(subtypes="/Widget")
writer.root_object.pop(NameObject("/AcroForm"), None)
with open(output_pdf, "wb") as stream:
writer.write(stream)
- Reopen the written PDF before delivery. For an interactive result, require every expected field to be present in
get_fields() with the expected /V, enumerate page widgets again, and confirm their effective /V (the widget value or inherited /Parent value) agrees. Confirm each updated widget has a non-empty /AP /N appearance and render the final pages to catch stale or clipped appearances. Do not rely on /NeedAppearances or a successful PNG render as proof that logical field data was updated.
- For a flattened result, require zero
/Widget annotations and no remaining /AcroForm field tree after reopening, then render the final pages. Keep an editable copy when the user may need to revise the form.
Temp And Output Conventions
- Use
tmp/pdfs/ for intermediate files; delete them when done.
- Write final artifacts under
output/pdf/ when working in this repo.
- Keep filenames stable and descriptive.
Dependencies
Prefer the Codex bundled workspace/runtime dependencies when available. The primary runtime is expected to include:
- Python packages:
reportlab, pdfplumber, pypdf
- Rendering tools:
pdftoppm and pdfinfo from Poppler
If a dependency is missing, install only what is needed.
Python packages:
uv pip install reportlab pdfplumber pypdf
If uv is unavailable:
python3 -m pip install reportlab pdfplumber pypdf
System tools for rendering:
# macOS (Homebrew)
brew install poppler
# Ubuntu/Debian
sudo apt-get install -y poppler-utils
If installation is not possible in this environment, tell the user which dependency is missing and how to install it locally.
Environment
No required environment variables.
Rendering Command
pdftoppm -png "$INPUT_PDF" "$OUTPUT_PREFIX"
Quality Expectations
- Maintain polished visual design: consistent typography, spacing, margins, and section hierarchy.
- Avoid rendering issues: clipped text, overlapping elements, broken tables, black squares, or unreadable glyphs.
- Charts, tables, and images must be sharp, aligned, and clearly labeled.
- Use ASCII hyphens only. Avoid U+2011 and other Unicode dashes.
- Citations and references must be human-readable; never leave tool tokens or placeholder strings.
Final Checks
- Do not deliver until the latest PNG inspection shows zero visual or formatting defects.
- Confirm headers, footers, page numbering, and section transitions look polished.
- Keep intermediate files organized or remove them after final approval.
1---2name: pdf3description: Read, create, inspect, render, and verify PDF files where visual layout matters, including fillable AcroForms. Use Poppler rendering plus Python tools such as reportlab, pdfplumber, and pypdf for generation and extraction.4---56# PDF Skill78## When To Use910- Read or review PDF content where layout and visuals matter.11- Create PDFs programmatically with reliable formatting.12- Fill and validate interactive PDF forms.13- Validate final rendering before delivery.1415## Workflow16171. Prefer visual review: render PDF pages to PNGs and inspect them.18 - Use `pdftoppm` from the bundled runtime or system Poppler when available.19 - If unavailable, install Poppler or ask the user to review the output locally.202. Use `reportlab` to generate PDFs when creating new documents.213. Use `pdfplumber` or `pypdf` for text extraction and quick checks; do not rely on text extraction for layout fidelity.224. After each meaningful update, re-render pages and verify alignment, spacing, and legibility.2324## Fill And Validate AcroForms2526Visual review alone is not a correctness check for a fillable PDF. A page `/Widget` annotation can render a value from its appearance stream while the canonical `/AcroForm/Fields` tree is missing or contains a stale value.27281. Keep the result interactive by default; set `flatten=True` only when the user explicitly requests a completed, static form. Preserve the source PDF, and do not flatten a signed PDF without an explicit workflow decision.292. Inspect both representations before filling: enumerate fields from `reader.get_fields()` and `/Widget` annotations from every page's `/Annots`, following `/Parent` and `/Kids`. If a widget and a canonical field have the same name but are distinct objects with no `/Parent` relationship, do not call `reattach_fields()` blindly: it can create a second top-level field with the same name. Report the ambiguity or produce a static result.303. Recover genuinely orphaned widgets, fill all pages, and write the result with `pypdf`:3132```python33from pypdf import PdfReader, PdfWriter34from pypdf.generic import NameObject3536reader = PdfReader(input_pdf)37writer = PdfWriter()38writer.clone_document_from_reader(reader)3940# Restores widgets that are missing from /AcroForm/Fields.41writer.reattach_fields()42fields = writer.get_fields() or {}43missing = set(expected_values) - set(fields)44if missing:45 raise ValueError(f"Form fields not found after repair: {sorted(missing)}")4647values_to_write = dict(expected_values)48if flatten:49 # Paint every existing value before removing every widget.50 values_to_write = {51 name: field.get("/V", "/Off" if field.get("/FT") == "/Btn" else "")52 for name, field in fields.items()53 }54 values_to_write.update(expected_values)5556writer.update_page_form_field_values(57 None, values_to_write, auto_regenerate=False, flatten=flatten58)5960if flatten:61 # pypdf's flatten=True paints appearances but does not remove widgets.62 writer.remove_annotations(subtypes="/Widget")63 writer.root_object.pop(NameObject("/AcroForm"), None)6465with open(output_pdf, "wb") as stream:66 writer.write(stream)67```68694. Reopen the written PDF before delivery. For an interactive result, require every expected field to be present in `get_fields()` with the expected `/V`, enumerate page widgets again, and confirm their effective `/V` (the widget value or inherited `/Parent` value) agrees. Confirm each updated widget has a non-empty `/AP` `/N` appearance and render the final pages to catch stale or clipped appearances. Do not rely on `/NeedAppearances` or a successful PNG render as proof that logical field data was updated.705. For a flattened result, require zero `/Widget` annotations and no remaining `/AcroForm` field tree after reopening, then render the final pages. Keep an editable copy when the user may need to revise the form.7172## Temp And Output Conventions7374- Use `tmp/pdfs/` for intermediate files; delete them when done.75- Write final artifacts under `output/pdf/` when working in this repo.76- Keep filenames stable and descriptive.7778## Dependencies7980Prefer the Codex bundled workspace/runtime dependencies when available. The primary runtime is expected to include:8182- Python packages: `reportlab`, `pdfplumber`, `pypdf`83- Rendering tools: `pdftoppm` and `pdfinfo` from Poppler8485If a dependency is missing, install only what is needed.8687Python packages:8889```bash90uv pip install reportlab pdfplumber pypdf91```9293If `uv` is unavailable:9495```bash96python3 -m pip install reportlab pdfplumber pypdf97```9899System tools for rendering:100101```bash102# macOS (Homebrew)103brew install poppler104105# Ubuntu/Debian106sudo apt-get install -y poppler-utils107```108109If installation is not possible in this environment, tell the user which dependency is missing and how to install it locally.110111## Environment112113No required environment variables.114115## Rendering Command116117```bash118pdftoppm -png "$INPUT_PDF" "$OUTPUT_PREFIX"119```120121## Quality Expectations122123- Maintain polished visual design: consistent typography, spacing, margins, and section hierarchy.124- Avoid rendering issues: clipped text, overlapping elements, broken tables, black squares, or unreadable glyphs.125- Charts, tables, and images must be sharp, aligned, and clearly labeled.126- Use ASCII hyphens only. Avoid U+2011 and other Unicode dashes.127- Citations and references must be human-readable; never leave tool tokens or placeholder strings.128129## Final Checks130131- Do not deliver until the latest PNG inspection shows zero visual or formatting defects.132- Confirm headers, footers, page numbering, and section transitions look polished.133- Keep intermediate files organized or remove them after final approval.