agentsclimarketplace

Branded pdf

Skill thevibethinker/vibe-thinker-skills/branded-pdf

Portable, standalone Zo Computer skills you can install, reuse, and share.

Install
npx -y skills add thevibethinker/vibe-thinker-skills --skill branded-pdf

Assembled 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
  • reportlab installed 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 --logo for 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

ArgumentDescriptionDefault
--inputInput markdown file (required)-
--outputOutput PDF path (required)-
--left-logoLeft header logo (PNG/JPG)None
--right-logoRight header logo (PNG/JPG)None
--logoSingle centered logoNone
--titleDocument title (overrides markdown)From markdown H1
--subtitleSubtitle below titleNone
--authorAuthor lineNone
--author-detailSecond author line (credentials)None
--primary-colorHeading color (hex)#1a1a1a
--text-colorBody text color (hex)#333333
--body-sizeBody font size (pt)12
--heading-sizeH2 font size (pt)15
--marginPage margins (inches)0.75

Input Format

The input markdown should use:

  • ## Section Title for major sections (H2)
  • ### Subsection for 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.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.