browser-demo-builder

browser-demo-builder is a skill for Claude Code, Codex from tough-tongue/toughtongue-skills. It costs 110 tokens per session (1,797 once invoked), scanned A, original, MIT.

A skill for recording repeatable browser demo steps for a Tough Tongue AI scenario. It finds stable page selectors, saves the actions for replay, and verifies the flow with a live session.

In plain words
What is it for?
Building deterministic product demos with browser actions such as clicking, typing, and moving through pages. It requires the ttai MCP server.
Why use it?
It turns a browser demonstration into fixed steps that can replay without AI processing for every click.

Skill for Claude CodeCodex

Written for Claude Code and Codex: when-to-use in frontmatter, but also agents/openai.yaml present.

Part of the toughtongue plugin — 5 skills, 1 MCP server shipped together

Good fit Building deterministic product demos with browser actions such as clicking, typing, and moving through pages. It requires the ttai MCP server.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tough-tongue/toughtongue-skills/browser-demo-builder
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add tough-tongue/toughtongue-skills --skill browser-demo-builder
Clone the repo
git clone --depth 1 https://github.com/tough-tongue/toughtongue-skills

Made for: Claude Code, Codex.

Or install toughtongue, the plugin that ships this one along with the rest of its 5 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for browser-demo-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/tough-tongue/toughtongue-skills/browser-demo-builder/github.svg)](https://agentmods.dev/skills/tough-tongue/toughtongue-skills/browser-demo-builder)
Your own site
<a href="https://agentmods.dev/skills/tough-tongue/toughtongue-skills/browser-demo-builder"><img src="https://agentmods.dev/badge/skills/tough-tongue/toughtongue-skills/browser-demo-builder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for browser-demo-builder

Your own site · 80×15
<a href="https://agentmods.dev/skills/tough-tongue/toughtongue-skills/browser-demo-builder"><img src="https://agentmods.dev/badge/skills/tough-tongue/toughtongue-skills/browser-demo-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,797 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00110 $0.01797
Opus 5 $0.00055 $0.00898
Sonnet 5 $0.00022 $0.00359
Haiku 4.5 $0.00011 $0.00180

Measured 3d ago against content hash 80402fa83703, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

browser-demo-builder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/browser-demo-builder/SKILL.md · 157 lines

How it starts

The opening of the file, as written. The whole thing — 157 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Browser Demo Builder

Interview → walk the flow → harvest selectors → write steps via ttai:update_scenario → verify with a live session. One run produces a deterministic demo flow the voice agent replays instantly, with zero AI processing per click.

How steps execute (context you must respect): each recorded action replays through the replay engine using its exact selector — no AI calls. If a selector breaks, ONE AI-driven retry is attempted using the action's description + method + arguments. A step aborts at the first action that fails both, and the agent is told which action broke. So: selectors must be stable, and every description must work as a standalone retry prompt.

Reference files (load on demand):

Prerequisites

Load ttai-agent (features/mcp) before any ttai: call (prefix ttai:; some clients show mcp__ttai__update_scenario).

  • A way to inspect the demo app's pages: your agent's browser automation if available, or the user's own browser DevTools console using the snippets in references/selector-guide.md.

Workflow

Phase 1 — Interview

Ask the user (one round; skip anything already stated):

  1. Target app — the product URL the demo walks through.
  2. Login — does the demo need an authenticated session? If yes, plan the auth setup in Phase 4. Sandbox/demo credentials only if any values get typed by steps — they are stored in plaintext scenario config.
  3. The flow, screen by screen — have the user narrate the demo exactly as a salesperson would click through it. Each screen transition is a candidate step boundary.
  4. Demo data — names, amounts, dates. Push hard to FIX every value and bake it into the actions. %placeholders% (substituted from the step command's variables param) add a failure mode — use them only when a value genuinely varies per session.
  5. Simplify — flag anything state-dependent or flaky (date pickers, auto-assigned resources, optional fields) and propose dropping it. A shorter deterministic demo beats a longer brittle one.
  6. Target scenario — an existing scenario (find the ID via ttai:list_scenarios) or a new one via ttai:create_scenario with the browser tool enabled. Also decide where capture milestones belong (max ~3 per demo).

Read the full file on GitHub · 157 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago Changed · +7 lines 80402fa83703
  2. 12d ago First seen · 150 lines · 110 tokens per session scan A 6092223c310d

Subscribe to this mod's changes

browser-demo-builder is a skill published in the GitHub repository tough-tongue/toughtongue-skills (7 stars, last pushed today), licensed MIT. It adds 110 tokens to every session and 1,797 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

e2e-testing-patterns

Master end-to-end testing with Playwright and Cypress to build reliable test suites that catch bugs, improve confidence, and enable fast deployment. Use when implementing E2E tests, debugging flaky tests, or establishing testing standards.

wshobson/agents · 51 tokens

browser-testing-with-devtools

Tests in real browsers via Chrome DevTools MCP. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture console errors, analyze network requests, profile performance, or verify visual output with real runtime data. Requires the chrome-devtools MCP server to be…

addyosmani/agent-skills · 68 tokens

playwright-recording

Record browser interactions as video using Playwright. Use for capturing demo videos, app walkthroughs, and UI flows for Remotion videos. Triggers include recording a demo, capturing browser video, screen recording a website, or creating walkthrough footage.

calesthio/OpenMontage · 53 tokens

website-to-video

Capture a general website/URL and turn it into a HyperFrames video (site tour, showcase, or social clip from the site's own visuals). Uses headless Chrome screenshots + brand assets. Use when intent is general — portfolio/blog/landing-page showcase or social clip from the site. NOT for: product/SaaS launch or promo (→…

calesthio/OpenMontage · 154 tokens

ai-web-scraping-scrapegraph

AI-powered web scraping - extract data using natural language prompts.

gooseworks-ai/goose-skills · 21 tokens

browser-automation-notte

Browser automation - control browser sessions, scrape pages, and run AI agents.

gooseworks-ai/goose-skills · 20 tokens