The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Tyrekick listing page.
Kick the tyres before you ship it. Get people you trust to review your AI-built prototype — and let your coding agent act on what they say.
Reviewers pin comments directly on the live page — no account, no training. Your coding agent pulls them back over MCP with the exact element, its visible text, the section heading, and any page errors attached, fixes what was flagged, and marks it resolved. The reviewer's pin turns green with a note. You never retype feedback into a prompt again.

▶ Try the live demo · Quickstart · Docs · "The Outer Loop" — why this exists
Real footage: that comment was pinned on the live demo, fixed by an agent, and the pin turned green — no retyping, no tracker, no accounts.
The widget is a single ~14 KB (gzipped) script with zero dependencies, rendered in Shadow DOM so it can't fight your page. There is no Tyrekick backend, no accounts, and nothing phones home — feedback POSTs straight from the reviewer's browser to a destination you own. It exists for the moment an agent-built prototype needs more than one pair of eyes: instead of pasting screenshots into group chats and losing the replies, every comment arrives structured, versioned, and pinned to the exact spot.
Pins stay on the page after you leave a comment (dimmed until you interact) — hover one to see its text, click it to open the thread right there, with reply, retry, and discard actions at the pin. Reviewers also get a comment drawer (a right-hand overview listing every pin with its text — click one to jump back to that spot, or hide pins entirely), draft recovery, and full keyboard/touch support (Cmd/Ctrl+Enter sends). With persist: true (the default), localStorage is only used to recover unsent work across reloads — comments that couldn't be delivered come back after a reload with Retry and Discard buttons, re-pinned to the element they were about even if the window size changed.
Agents: installing Tyrekick into a project? Use the
make-reviewableskill — one sentence and it hosts the page if needed, picks a destination, deploys the worker, installs the widget, wires MCP, and drafts the ask to send reviewers — or followAGENTS.mdstep by step.
Full documentation lives in docs/: quickstart · getting started · configuration · the reviewer experience · destinations · the agent loop · payload reference · troubleshooting & FAQ
Sharing a prototype publicly? Start with taking a prototype public, then the per-capability guides: rate limiting · shared review · AI auto-reply.
The fastest path is a Discord channel you control — the taster that proves feedback flows somewhere you own. The full product (persistence, statuses, your agent closing the loop over MCP) lives on the worker destination below.
One command (from your project folder):
It asks for your webhook URL, injects the script tag, and sends a test comment. Or by hand:
</body> on your prototype:The IIFE build auto-initialises from its own <script> tag's data-* attributes on DOMContentLoaded. Reviewers get a "Give feedback" button in the corner; each comment lands in your Discord channel as a readable message.
Only
data-webhookanddata-app-versionare required. Everything else is optional and falls back to the defaults in the configuration table.
Discord is the frictionless default, but if you want the data in storage you own, use a JSON transport (transport: "json", the default) pointed at an endpoint that persists the payload.
destinations/cloudflare for a deployable Worker that receives the v2 payload, validates it, and writes it to storage you control. It's a good place to add spam validation since the code is yours./api/feedback) and set webhook to that relative/same-origin URL. Same-origin means no CORS setup at all.Any CORS-enabled endpoint or form backend works too — with transport: "json", success is HTTP 2xx and, if a body is returned, it is not {"ok":false}.
The reason Tyrekick exists. With the Cloudflare Worker destination, feedback isn't just collected — your coding agent can pull it, act on it, and resolve it:
destinations/cloudflare):
"List the open feedback and fix what people flagged, then resolve it."
The agent gets five tools — list_feedback, get_feedback, triage_feedback, resolve_feedback, feedback_stats — and each item carries the element's visible text (greppable in your source), the nearest heading, the route, the viewport, and any uncaught page errors. A comment like "this button does nothing" arrives as:
That's a better bug report than most humans write. Full details in mcp/README.md.
By default a review is several private conversations: each reviewer sees their own pins, and the comments meet at your destination. Set a review key and the page itself becomes the shared surface — everyone sees everyone's pins, read-only, with attribution. Reviewers stop reporting the same thing four times.
Read this before switching it on. The key ships inside your page, so it is public to anyone holding the review link: anyone who can open the prototype can read every comment on it, including reviewer names. That is the right trade for a private link you sent to five people you trust, and the wrong one for a public URL. There is no per-reviewer identity to scope it more finely — reviewers never log in, which is the point. Rotate the secret to revoke access.
What it does and doesn't do:
projectName it was asked for. Set an explicit, stable
projectName — the document.title fallback will fork your feedback stream
the first time you edit the title.Set an Anthropic API key on your worker and each ingested comment gets one short, friendly acknowledgement — labelled 🤖, shown only in the reviewer's own thread — while the pin stays open (it acknowledges; it never claims to fix anything, and never resolves the pin). The model has no tools, so nothing inside a comment can make it take an action. Off by default.
Install from your registry and initialise explicitly (the ESM build does not auto-init):
The global (IIFE) equivalent is window.Tyrekick.init(config) / window.Tyrekick.destroy(). Calling init() twice without destroy() is a no-op and warns; a missing webhook or appVersion throws.
The IIFE build auto-inits by reading its own <script> tag via document.currentScript. That value is null whenever the tag is injected asynchronously (Next.js next/script, a React-rendered <script>, or any dynamic loader), so a plain CDN tag can silently fail to start. Two supported paths:
Set a global (works with any loader). Define it before the widget script runs:
The IIFE build reads window.tyrekickConfig first, then its own data-*, then falls back to any <script data-webhook> already in the DOM.
Call init() from a client component (recommended for Next.js App Router / React):
Every field of TyrekickConfig (see src/types.ts):
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
webhook | string | yes | — | Destination URL that receives the POST. |
appVersion | string | yes | — | Version string of the prototype under review. |
projectName | string | no | document.title | Human label for the project. |
position | "bottom-right" | "bottom-left" | no | "bottom-right" | Trigger button corner. |
accent | string | no | "#FFC53D" | Accent for the trigger, pins, and Send button. Text on the accent auto-contrasts (dark ink on light accents, white on dark). |
theme | "auto" | "light" | "dark" | no | "auto" | Widget colour scheme. "auto" follows the visitor's prefers-color-scheme at init and updates live when it changes. Use data-theme on the script tag for the auto-init build. |
branding | boolean | no | true | Show the "Built by Frontier Operations" footer. |
fields | { name?: boolean } | no | { name: true } | Toggle the optional reviewer-name input. |
transport | "json" | "discord" | no | "json" | How the payload is delivered (raw JSON vs. Discord message). |
persist | boolean | no | true | Use localStorage only for unsent recovery: draft text and failed comments that still need retry after a reload. Submitted comments are not kept in localStorage. No storage keys are read/written when false. |
reviewKey | string | no | — | Shared review (opt-in): every reviewer sees every other reviewer's pins, read-only. Must match TYREKICK_REVIEW_KEY on your Worker. The key ships in your page, so anyone with the review link can read every comment — right for a private link, wrong for a public URL. See shared review. |
captureErrors | boolean | no | true | Record the page's uncaught errors / unhandled rejections (via window "error" and "unhandledrejection" listeners — the console is never patched) and attach the last ≤5 to each payload as page_errors. Set data-capture-errors="false" on the script tag for the auto-init build. Input values are never captured anywhere, regardless of this flag. |
With transport: "json", the raw body POSTed to your webhook is exactly this shape (FeedbackPayload):
Field notes:
schema is always 2. id and session_id are UUIDs (id per comment, session_id once per page load).created_at is ISO-8601 with timezone. route is location.pathname + search + hash; url is location.href.body is the trimmed comment text; reviewer_name is string | null.anchor.x_pct / anchor.y_pct are percentages of the document dimensions at click time, to 1 decimal place. anchor.selector is a best-effort CSS selector (max 5 segments) of the deepest host-page element at the point, or null — never the widget's own nodes.anchor.element identifies the clicked element so a coding agent can map feedback back to source: lowercase tag, id / data-testid (testid) / role attributes (or null), visible text (trimmed, whitespace collapsed, ≤80 chars, null if empty), label (aria-label → alt → placeholder → title, ≤80 chars), and the viewport-relative bounding rect in integer px at click time. It is null when no element could be resolved. Privacy: for input/textarea/select, text is always null — form values are never captured.anchor.context places the click structurally: heading is the text of the nearest heading (h1–h6, walking ancestors and their preceding siblings, ≤80 chars) and landmark is a coarse path of up to 3 landmark ancestors (main, nav, header, footer, aside, section, article, form), innermost last, e.g. "main > section#pricing". Both are null when nothing is found; capture never throws.env adds the physical screen size (CSS px), dpr (devicePixelRatio, 2 decimals), dark (prefers-color-scheme: dark) and touch (pointer: coarse).page_errors is the last ≤5 uncaught errors / unhandled promise rejections seen this page load (each ≤200 chars, oldest first), collected via window listeners — the console is never patched. [] when there were none or captureErrors: false.With transport: "discord", this payload is instead formatted into a readable Discord message ({ content }) and that is POSTed.
This is deliberately a zero-backend tool. That comes with tradeoffs:
transport: "json" at the Cloudflare template and adding validation/rate-limiting there, or by sending to a private Discord channel that only your reviewers can reach. See docs/destinations for the hosting-based decision table.Please keep src/types.ts as the single source of truth — don't rename payload keys or config fields without a schema bump.
Re-rendering the demo GIF at the top of this README: node scripts/record-demo.mjs films the whole loop against a throwaway local worker and re-encodes it. See scripts/README.md — the film is scripted (and tweakable) in scripts/record-demo.mjs.
Tyrekick exists as a brand vehicle for Frontier Operations: a genuinely useful, open tool that makes gathering feedback on a prototype frictionless while proving a principle we care about — your reviewers' comments never route through us. There's no Frontier backend in the loop and nothing phones home; feedback goes from the reviewer's browser straight to a destination you own. Useful software, given away, that quietly demonstrates how we think about building.