# subagentdispatch > Replay-mode managed-agents for legal, finance, and small-business. Built on Cloudflare Workers + Neon + the Anthropic Agent SDK. Every demo on this site replays a recorded cassette — zero ANTHROPIC_API_KEY, zero tokens at runtime. ## Vertical meta ## Canonical surfaces - https://www.subagentdispatch.com - https://www.subagentdispatch.com/customize (HTML, animated) - https://www.subagentdispatch.com/customize/team - https://www.subagentdispatch.com/customize/enterprise - https://www.subagentdispatch.com/customize/experiments ## Markdown siblings (for agents) - https://www.subagentdispatch.com/customize.md — Agent builder + replay demos. - https://www.subagentdispatch.com/customize/team.md — Multi-agent team builder with lead/worker/postprocessor tiers. - https://www.subagentdispatch.com/customize/enterprise.md — Industry-specific agent + team configurations. - https://www.subagentdispatch.com/customize/experiments.md — Anthropic research publications index. - https://www.subagentdispatch.com/docs.md — index of every internal design doc ## Replay corpus The cassettes available on this site: - Diligence-grid (legal) — Legal-risk triage for a B2B SaaS acquisition. Cassette: cassettes/legal/diligence-grid.har.json - Contract-redline (legal) — Flag 3 material issues in an MSA clause + propose redlines. Cassette: cassettes/legal/contract-redline.har.json - Earnings-reviewer (finance) — Pre-print brief for an enterprise SaaS Q1. Cassette: cassettes/finance/earnings-reviewer.har.json - KYC-screener (finance) — Vet a BVI-incorporated B2B prospect with undisclosed UBO. Cassette: cassettes/finance/kyc-screener.har.json - Ticket-deflector (small-business) — Triage a refund-after-cancel support ticket. Cassette: cassettes/small-business/ticket-deflector.har.json - CI-failure-triage (developer-tools) — Classify a recurring OOM in the payments suite + propose next action. Cassette: cassettes/developer-tools/ci-failure-triage.har.json Run the same content locally via: npm run replay:seed npm run demo:legal:diligence npm run demo:finance:earnings npm run demo:smb:ticket-deflector ## API - Replay SSE (the headline): https://www.subagentdispatch.com/api/v1/replay// e.g. curl https://www.subagentdispatch.com/api/v1/replay/legal/diligence-grid Streams a recorded Anthropic SSE response from R2. No API key. Zero tokens at runtime. Response carries x-replay-source: cassette and x-replay-tokens-spent: 0. - Cassette listing: https://www.subagentdispatch.com/api/v1/cassettes — JSON list of every cassette on this site. - Fleet manifest: https://www.subagentdispatch.com/api/v1/fleet — JSON list of every live subagent* site with discovery surfaces. - Search: https://www.subagentdispatch.com/api/v1/search?q=… - OpenAPI: https://www.subagentdispatch.com/api/v1/openapi - MCP Server (HTTP/SSE): https://www.subagentdispatch.com/api/mcp - Legacy vendor SaaS surface: https://www.subagentdispatch.com/api/v1/vendors, /api/v1/feed, /api/v1/content/:slug ## Replay architecture (read this first if you're an agent) - Recording boundary: the Cloudflare Worker that wraps the Anthropic SDK - Cassette format: HAR 1.2 + an _anthropic extension for SSE chunks - Match key: method + url + sha256(normalized body) — stripping request_id, user_id, opaque ids (UUID, msg_*, toolu_*), and ISO timestamps - Modes via REPLAY_MODE: live | record | replay - CI default: replay with onMiss=fail. Hand-seeded golden corpus. See https://www.subagentdispatch.com/docs/replay-architecture.md for the full design. ## Fleet This site is one of a growing fleet of subagent* domains. Currently live: - https://www.subagentdispatch.com (chassis) - https://www.subagentlegal.com - https://www.subagentfinance.com - https://www.subagentengineering.com Discovery: https://www.subagentdispatch.com/agents.json lists all fleet members. ## How to consume - HTML pages animate the replay demos via app/components/replay-hero.tsx - Markdown siblings (above) carry the same content, agent-friendly - llms.txt (this file) is the entry point