From digital-printing
Bundle one or more print-ready PDFs into a single "print job" folder with a manifest, ready to hand to a digital printer or share with collaborators. Triggers on phrases like "create a print job", "bundle these PDFs", "make a job folder for the printer".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin digital-printingThis skill uses the workspace's default tool permissions.
Group multiple finished PDFs into a single, named folder with a manifest describing the job.
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.
Group multiple finished PDFs into a single, named folder with a manifest describing the job.
2026-04-27-family-photo-book. If not given, auto-generate from date + first PDF name.upload-to-printing-folder's config ($CLAUDE_USER_DATA/digital-printing/config.json); falls back to ~/Documents/Printing/ if no config.<parent>/<job-name>/
├── manifest.json
├── README.md
└── files/
├── 01-cover.pdf
├── 02-body.pdf
└── 03-appendix.pdf
Files are copied (not moved) and prefixed with a 2-digit ordinal so they sort in print order.
{
"job_name": "2026-04-27-family-photo-book",
"created": "2026-04-27T14:32:00+03:00",
"printer": "Office Depot — Talpiot",
"notes": "Duplex, 120gsm matte, 2 copies, spiral bound long edge",
"files": [
{
"order": 1,
"filename": "01-cover.pdf",
"source_path": "/home/user/work/cover-final.pdf",
"pages": 1,
"page_size": "A4",
"verified": {
"bleed_safe": true,
"fonts_embedded": true,
"checked_at": "2026-04-27T14:30:00+03:00"
}
}
]
}
Auto-generated human-readable summary — printer name, notes, file list with page counts. This is what you'd hand to the print shop.
<parent>/<job-name>/files/.files/ with ordinal prefix.pdfinfo for page count and size.manifest.json and README.md.verify-bleed-safe etc. on the source files first (or invoke the print-prep-orchestrator agent).Path to the new job folder. Suggest share-job-folder as the natural next step.