From digital-printing
Check that all text and content in a PDF stays within the printer's printable area — i.e. nothing runs into the unprintable margin where it would be clipped. Reports per-page violations with bounding boxes. Read-only — does not modify the PDF. Triggers on phrases like "verify bleed safe", "check printable margins", "will this print without clipping".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin digital-printingThis skill uses the workspace's default tool permissions.
Inspect a PDF and report any pages where content extends into the printer's unprintable margin (typically 3–6mm from each edge for office laser/inkjet printers).
Conducts multi-round deep research on GitHub repos via API and web searches, generating markdown reports with executive summaries, timelines, metrics, and Mermaid diagrams.
Share bugs, ideas, or general feedback.
Inspect a PDF and report any pages where content extends into the printer's unprintable margin (typically 3–6mm from each edge for office laser/inkjet printers).
This is a read-only preflight check. It modifies nothing — it only reports.
top=X bottom=Y left=Z right=W if the printer's unprintable margins are asymmetric.For each page:
pdfinfo -box input.pdf or mutool show input.pdf trailer.gs -sDEVICE=bbox for the ink-bbox of each page:
gs -dQUIET -dBATCH -dNOPAUSE -sDEVICE=bbox input.pdf 2>&1 | grep "%%HiResBoundingBox"
Plain-text report:
Bleed-safe check: input.pdf (safe margin: 5mm)
PAGE 1: OK
PAGE 2: VIOLATION — text extends 2.3mm past the right edge safe zone (content bbox: ..., safe box: ...)
PAGE 3: OK
PAGE 4: VIOLATION — image extends 8.1mm past the bottom edge safe zone
...
Summary: 2 of 12 pages have bleed-safe violations.
Suggest remedies in the report:
gs -dPDFFitPage.ghostscript — bounding-box detection.pdfinfo (poppler-utils) — page dimensions.mutool (mupdf-tools) — alternative geometry probe.add-bleed.