PDF Brand Covers Automation
Automates the addition of custom "Caligrafía Mágica" branding (introductory cover with logo and ending page) to any PDF documents.
Install
mkdir -p .claude/skills/pdf-brand-covers-automation && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15641" && unzip -o skill.zip -d .claude/skills/pdf-brand-covers-automation && rm skill.zipInstalls to .claude/skills/pdf-brand-covers-automation
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Automates the addition of custom "Caligrafía Mágica" branding (introductory cover with logo and ending page) to any PDF documents.About this skill
PDF Brand Covers Automation Skill
This skill explains how the agent can automatically brand a PDF document with the "Caligrafía Mágica" elements.
🎯 Purpose
To automatically append a brand-new title cover with the Caligrafía Mágica logo, and a final thank you page to existing PDF documents.
📥 Required Assets
The process relies on assets/caligrafia_magica_logo.png being present in the workspace root. Do not delete this file.
🧰 Usage Instructions
You can fulfill branding tasks from the command line interface using cli.py:
python cli.py --input path/to/document.pdf --output path/to/branded_document.pdf --add-covers
You can also combine this with logic to delete pages or redact text:
python cli.py --input math_test.pdf --output branded_math_test.pdf --add-covers --redact-text "Borrador"
⚙️ Core Logic
If operating within another python script, you can import and call:
from core.pdf_processor import add_covers
add_covers("source.pdf", "destination.pdf", logo_path="assets/caligrafia_magica_logo.png")