announce
Use when a product or feature is ready to go public — after shipping, when the user says "announce it", "go live", "tell people about it", or wants a release…
Verify frontend changes end to end after editing a web app, instead of manually clicking through pages. Use this whenever you have changed UI code and need to confirm nothing broke: "verify my frontend", "check the site after these edits", "did my UI break", "did my changes
$ npx -y skills add ucsandman/marketing-studio --skill frontend-verify --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/frontend-verifyContext preview
The summary Claude sees to decide when to auto-load this skill.
Verify frontend changes end to end after editing a web app, instead of manually clicking through pages. Use this whenever you have changed UI code and need to confirm nothing broke: "verify my frontend", "check the site after these edits", "did my UI break", "did my changes
name: frontend-verify description: > Verify frontend changes end to end after editing a web app, instead of manually clicking through pages. Use this whenever you have changed UI code and need to confirm nothing broke: "verify my frontend", "check the site after these edits", "did my UI break", "did my changes break anything", "make sure these routes still work", "smoke test the app", "check for console errors", "validate the pages I touched". Works with Next.js (app and pages router), React, Vite, and any local dev server. Built to be token cheap: it reads console errors and failed network requests first and writes full page state to disk, so it only pulls a snapshot or a screenshot into context when a route actually fails. Use it before saying a frontend change is done.
The slow loop is: edit code, start the dev server, open a browser, click each page, watch the console, eyeball the layout, repeat. This skill does that pass programmatically with `@playwright/cli` running headless, and it does it without dumping every page state into the model context.
Reading a full accessibility snapshot or a screenshot into context on every route is the expensive part, not running the browser. So the order of operations is always cheapest signal first:
1. Console errors and failed network requests. Tiny text, catches most real breakage (crashed component, bad fetch, 500 from an API route). 2. Targeted text assertions. Ask the page "is the word Dashboard on screen", not "give me the whole DOM". 3. A snapshot written to disk, read back only for a route that already failed. 4. A screenshot, only as a last resort.
`verify-routes.mjs` runs steps 1 and 2 across all changed routes in one browser pass, writes the detail to disk, and prints a compact PASS / WARN / FAIL table. You read the table, then open detail files for flagged routes only. Do not read detail for routes that passed.
Almost never. Reach for one only when:
drawn on a canvas, so text and console checks cannot see the actual render.
styling) that text cannot describe.
For everything else, the console plus a text assertion tells you whether the page works. A screenshot tells you how it looks, which is a different and more expensive question.
Confirm the CLI is installed before running anything:
playwright-cli --help
If that fails, the user installs it once with (PowerShell):
npm install -g @playwright/cli@latest playwright-cli install-browser chrome-for-testing
It runs headless by default, so no window opens during a verify run.
git diff --name-only git diff --name-only --staged
Keep the files under the frontend (for Next.js that is `app/`, `pages/`, `components/`, `src/`). Ignore server only, config, and test files unless they back a route you are checking.
This is the judgment step. Map changed files to URLs:
`app/page.tsx` serves `/`. Strip route groups in parentheses, so `app/(marketing)/pricing/page.tsx` serves `/pricing`. A `[slug]` segment needs a real value, so pick one that exists (for example `/blog/hello-world`).
`pages/index.tsx` serves `/`.
that import it and check those:
git grep -l "PricingCard" -- "*.tsx" "*.jsx"
Then map those importing files to routes the same way. Walk up until you reach files that are actual routes.
If the route set is unclear, ask the user which routes the change should affect rather than crawling the whole site. Verify only what changed.
The config points at a base URL like `http://localhost:3000`. If nothing is serving there, start the dev server (for example `npm run dev`) in a separate terminal first, or ask the user to. `verify-routes.mjs` will report a navigation failure if the server is down, which is the signal to start it.
Create a small JSON config (shape below) listing the affected routes, then:
node <skill-path>/scripts/verify-routes.mjs verify.json
The script exits non zero if any route fails, so it slots into a chain that should stop on failure.
The script prints something like:
[PASS] / [FAIL] /pricing 2 JS console error(s); 1 request failure(s) [WARN] /play canvas route: accessibility tree is blind
That table plus `report.json` is usually all you need. Only open `.frontend-verify/<route>/detail.json` for a route marked FAIL or WARN. That file has the exact error lines and the failed request log. `console.txt` and `requests.txt` sit next to it if you want the raw capture.
For a failing route, after reading its `detail.json`:
file, do not stream it inline.
playwright-cli -s=fe-verify goto http://localhost:3000/pricing playwright-cli -s=fe-verify snapshot --filename snap.yml
playwright-cli -s=fe-verify --raw eval "document.querySelector('h1')?.innerText"Apply the rule above. If the route is canvas or PixiJS, or the bug is visual, take one screenshot and look. Otherwise stop, you already know if it works.
State, per route, PASS or FAIL and the reason, then a one line verdict. Do not r
An agent-driven local marketing studio. The bundled Claude Code plugin adds /marketing and /launch: the agent onboards your brand, films your app, writes the asset suite and review evidence into that product repo, then prepares guarded distribution to X,
Repo: ucsandman/marketing-studio
Use when a product or feature is ready to go public — after shipping, when the user says "announce it", "go live", "tell people about it", or wants a release…
Use when the user wants music, voiceover, narration, or a soundtrack added to a video asset, OR wants standalone generated audio for any purpose (e.g.…
Audit and fix the tells that software was vibe-coded / AI-generated, then give it a small distinctive identity, so it ships looking handcrafted and…
Use when the user wants a full launch video, hero video, or 20–60s product film combining product proof, brand, narration, music, and authored motion.
Take a developed project end-to-end through launch — domain, hosting, payments, email infra, algorithm-researched copy, and multi-platform distribution — with…
Use when the user wants a logo reveal / logo animation / brand intro video for any product (e.g. "/logo-reveal", "make a logo reveal for DashClaw", "animated…