pptx-profile
>-
Works with
---
name: pptx-profile
description: >-
license: MIT
---
# Step 1 — Profile (pptx-profile)
Turn any `.pptx` into a **map of its real layouts** so the next steps can target
them precisely. This is the answer to *"what layouts does my template actually
have, and what is each one for?"*
```text
STEP 1 — PROFILE STEP 2 — AUTHOR STEP 3 — RENDER
pptx-profile pptx-author pptx-from-layouts
─────────────── ─────────────── ─────────────────
your-template.pptx slides.md (+ [HINT:]) slides.md + config
│ │ │
▼ ▼ ▼
catalog.py ──catalog.md──▶ write & lint ──slides──▶ generate.py ─▶ deck.pptx
└────────────────── config.json ───────────────────▲ (validated)
"what layouts do I "write slides that "fill the template's
have?" name real layouts" actual placeholders"
```
**You are here: Step 1.** Output feeds Steps 2 and 3.
## Dependencies
Python 3.10+ and **python-pptx** (`pip install python-pptx`). The config step
shells out to the sibling `pptx-from-layouts` skill, which ships in this repo.
## Run it
```bash
python scripts/catalog.py /path/to/your-template.pptx \
--name your-template --output-dir ./build
```
This writes two files into `./build`:
| File | For whom | Purpose |
|------|----------|---------|
| `your-template-layout-catalog.md` | **you / Step 2 author** | Human-readable menu of every hintable layout: its `[HINT:]` name, placeholders, and when to use it. |
| `your-template-config.json` | **Step 3 render engine** | Machine map of capability → real layout index/name. Passed to `generate.py --config`. |
Options: `--catalog-only` skips the config (catalog only); `--name` sets the
output basename (defaults to the filename).
## What the catalog gives you
The catalog's **Hintable layouts** table lists only layouts the engine knows how
to populate — every name there is a safe `[HINT:]` value. A collapsed section
lists *all* raw layouts in the file for reference. Each row shows the layout
index, the exact hint name to copy, its placeholders (e.g. `picture`, `body`,
`center-title`), and a one-line "when to use".
## Then what
1. **Step 2 — author:** open the catalog, write `slides.md` using
`[HINT: layout_name]` per slide, and lint with
`pptx-author/scripts/lint_hints.py slides.md --config your-template-config.json`.
2. **Step 3 — render:**
`pptx-from-layouts/scripts/generate.py slides.md -o deck.pptx
--template your-template.pptx --config your-template-config.json --validate`.
## Notes
- **You only profile a template once.** Reuse the catalog + config for every
future deck on that template.
- The bundled **Inner Chapter** template is already profiled (see
`templates/inner-chapter-config.json`) and is the default if you skip Step 1.
- For a fully automated, on-brand onboarding (brand colors, fonts, smoke-test),
the `pptx-template-onboarder` subagent wraps this step.More Performance skills
seo-audit
coreyhaines31/marketingskills
When the user wants to audit, review, or diagnose SEO issues on their site. Also use when the user mentions "SEO audit," "technical SEO," "why am I not ranking," "SEO issues," "on-page SEO," "meta tags review," "SEO health check," "my traffic dropped," "lost rankings," "not showing up in Google," "site isn't ranking," "Google update hit me," "page speed," "core web vitals," "crawl errors," or "indexing issues." Use this even if the user just says something vague like "my SEO is bad" or "help with SEO" — start with an audit. For building pages at scale to target keywords, see programmatic-seo. For adding structured data, see schema. For AI search optimization, see ai-seo.
competitor-profiling
coreyhaines31/marketingskills
When the user wants to research, profile, or analyze competitors from their URLs. Also use when the user mentions 'competitor profile,' 'competitor research,' 'competitor analysis,' 'profile this competitor,' 'analyze competitor,' 'competitive intelligence,' 'competitor deep dive,' 'who are my competitors,' 'competitor landscape,' 'competitor dossier,' 'competitive audit,' or 'research these competitors.' Input is a list of competitor URLs. Output is structured competitor profile markdown files. For creating comparison/alternative pages from profiles, see competitors. For sales-specific battle cards, see sales-enablement.
vercel-optimize
vercel-labs/agent-skills
Use for Vercel cost and performance optimization on deployed projects, especially Next.js, SvelteKit, Nuxt, and limited Astro apps. Collect Vercel metrics, usage, project config, and code scan results first; investigate only metric-backed candidates; produce ranked recommendations grounded in verified files and version-aware Vercel/framework docs. Trigger for Vercel bill reduction, slow or expensive routes, caching opportunities, Function Invocations, Build Minutes, Fast Data Transfer, Core Web Vitals, Bot Management, Fluid compute, or cost breakdown requests.

