Branded pdf
Portable, standalone Zo Computer skills you can install, reuse, and share.
npx -y skills add thevibethinker/vibe-thinker-skills --skill branded-pdfAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generate clean, professional PDFs with dual-logo headers, customizable styling, and well-spaced typography. Ideal for technical briefs, partnership documents, proposals, and branded memos. Takes markdown content and outputs polished PDFs.
SKILL.md
3.1 KB, as published. Nobody here has run it
Branded PDF Generator
Generate professional PDFs with dual-logo headers and clean typography.
Prerequisites
- Python 3
reportlabinstalled in the environment
pip install reportlab
Quick Start
python3 Skills/branded-pdf/scripts/generate_pdf.py \
--input content.md \
--output document.pdf \
--left-logo logo1.png \
--right-logo logo2.png \
--title "Document Title"
Features
- Dual-logo header: Left and right logos for partnership/co-branded documents
- Single-logo mode: Use
--logofor centered single logo - Markdown input: Supports headers (##, ###), bold, italic, paragraphs
- Customizable styling: Colors, font sizes, margins
- Smart pagination: Headers stay with their content (no orphans)
Usage
Basic (markdown file input)
python3 Skills/branded-pdf/scripts/generate_pdf.py \
--input brief.md \
--output brief.pdf
With logos and title override
python3 Skills/branded-pdf/scripts/generate_pdf.py \
--input brief.md \
--output brief.pdf \
--left-logo company-a.png \
--right-logo company-b.png \
--title "Company A × Company B" \
--subtitle "Technical Brief"
Single centered logo
python3 Skills/branded-pdf/scripts/generate_pdf.py \
--input memo.md \
--output memo.pdf \
--logo company.png
Custom styling
python3 Skills/branded-pdf/scripts/generate_pdf.py \
--input doc.md \
--output doc.pdf \
--primary-color "#2563eb" \
--text-color "#1f2937" \
--body-size 11 \
--heading-size 16
CLI Reference
| Argument | Description | Default |
|---|---|---|
--input | Input markdown file (required) | - |
--output | Output PDF path (required) | - |
--left-logo | Left header logo (PNG/JPG) | None |
--right-logo | Right header logo (PNG/JPG) | None |
--logo | Single centered logo | None |
--title | Document title (overrides markdown) | From markdown H1 |
--subtitle | Subtitle below title | None |
--author | Author line | None |
--author-detail | Second author line (credentials) | None |
--primary-color | Heading color (hex) | #1a1a1a |
--text-color | Body text color (hex) | #333333 |
--body-size | Body font size (pt) | 12 |
--heading-size | H2 font size (pt) | 15 |
--margin | Page margins (inches) | 0.75 |
Input Format
The input markdown should use:
## Section Titlefor major sections (H2)### Subsectionfor subsections (H3)**bold**for emphasis- Regular paragraphs separated by blank lines
The first # Title in the markdown becomes the document title unless --title is specified.
Examples
See assets/example-input.md for a sample input file.