From digital-printing
Set or replace PDF metadata — title, author, subject, keywords. Useful for cataloguing scanned documents or standardizing batch outputs. Triggers on phrases like "set the title of this PDF", "write metadata", "tag this PDF with author/keywords".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin digital-printingThis skill uses the workspace's default tool permissions.
Set the standard PDF metadata fields.
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.
Set the standard PDF metadata fields.
<input> (after backup) or <input>-tagged.pdf. Confirm with user.exiftool writes both the Info dictionary and XMP cleanly.
exiftool \
-Title="Quarterly Report" \
-Author="Daniel Rosehill" \
-Subject="Internal review" \
-Keywords="quarterly,2026,review" \
-overwrite_original_in_place=false \
-o output.pdf input.pdf
exiftool output.pdf | grep -E "Title|Author|Subject|Keywords"
PDF with new metadata. Original preserved (unless user explicitly asked to overwrite).