---
name: brochures
description: "End-to-end pipeline for producing print-ready A4 estate-agent property brochures, with a single-entry orchestrator that skips upstream steps whose outputs already exist: extract brand from the agent's website, extract property assets from the listing URL, lay out the brochure, and satisfy print constraints for pixel-perfect PDF."
tools: []
metadata: {"platform":{"optional":true,"embed":["admin"]}}
---

# Real Agent — Brochures

End-to-end estate-agent brochure pipeline. From an agent website URL and a property listing URL, the skills produce a print-ready A4 PDF brochure plus the live HTML used to author it. The pipeline is idempotent: each upstream step is skipped when its output already exists on disk for the requested source.

## When to Activate

The user wants to produce a property brochure — either end-to-end from a listing URL, or from pre-staged photos and a brand pack.

## Skills

| Skill | Purpose |
|-------|---------|
| `make-brochure` | Single-entry orchestrator — brand → property → A4 brochure, skipping upstream steps whose outputs already exist |
| `brand-design` | Extract brand identity from an agent website URL into a brand pack (DESIGN.md, light/dark logos, description.md) |
| `property-extract` | Stage property assets from a listing URL (photos, floorplans, EPC, structured metadata) |
| `property-brochure` | Lay out an A4 brochure from a brand pack + property assets (HTML + per-page print snapshots + recompressed PDF) |
| `a4-print-documents` | Print constraints for A4 HTML documents — glassmorphism survival, page margins, full-bleed, whitespace discipline |
| `property-socials` | Generate Open Graph / social-share images (landscape, square, portrait JPGs) for a published property page, branded to match the brochure |
| `property-market-report` | A4 print-ready area market report branded with the agent's design tokens, illustrated by up to 10 featured property listings |

## Commands

`/make-brochure <agent-url-or-brand-dir> <listing-url-or-assets-dir>` — run the full pipeline.

## Tools Used

No MCP server. Skills operate via existing platform tools (Bash, Read, Write, Edit, Glob, Grep, WebFetch) plus the Playwright MCP plugin for headless rendering, screenshot capture, and print-to-PDF. The image encoder is `cwebp` (libwebp); the PDF recompressor is Ghostscript (`gs`).

## References

Each skill loads its own reference files on demand. The brochure folio template lives at `skills/property-brochure/references/template.html`.
