aimeat-protocol: Skill for Claude Code

.claude/skills/aimeat-frontend-verify/SKILL.md

aimeat-frontend-verify is a skill for Claude Code from miikkij/aimeat-protocol. It costs 0 tokens per session (2,176 once invoked), scanned A, original, MIT.

A set of AIMEAT frontend rules for styling code and checking completed browser changes with Playwright, a tool that drives a real web browser.

In plain words
What is it for?
Use it after changing frontend views, components, JavaScript, CSS, translations, or HTML to verify authentication, dialogs, live data, edits, and deletes at three screen sizes.
Why use it?
It replaces unreliable test-suite checks and visual guesswork with checks of real interactions, layouts, network activity, and browser repainting.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is miikkij/aimeat-protocol's own configuration. It tells Claude Code how to work on aimeat-protocol itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything aimeat-protocol configures →

Reuse

Borrowing it

Nothing to install: this file belongs to miikkij/aimeat-protocol. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/miikkij/aimeat-protocol/main/.claude/skills/aimeat-frontend-verify/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/miikkij/aimeat-protocol

Made for: Claude Code.

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 aimeat-frontend-verify

README.md
[![agentmods](https://agentmods.dev/badge/skills/miikkij/aimeat-protocol/aimeat-frontend-verify/github.svg)](https://agentmods.dev/skills/miikkij/aimeat-protocol/aimeat-frontend-verify)
Your own site
<a href="https://agentmods.dev/skills/miikkij/aimeat-protocol/aimeat-frontend-verify"><img src="https://agentmods.dev/badge/skills/miikkij/aimeat-protocol/aimeat-frontend-verify/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 aimeat-frontend-verify

Your own site · 80×15
<a href="https://agentmods.dev/skills/miikkij/aimeat-protocol/aimeat-frontend-verify"><img src="https://agentmods.dev/badge/skills/miikkij/aimeat-protocol/aimeat-frontend-verify.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,176 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00000 $0.02176
Opus 5 $0.00000 $0.01088
Sonnet 5 $0.00000 $0.00435
Haiku 4.5 $0.00000 $0.00218

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

Security

Grade A, and why

aimeat-frontend-verify 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.

.claude/skills/aimeat-frontend-verify/SKILL.md · 87 lines

How it starts

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

Verifying a finished frontend change

Do not write or run the .spec.ts Playwright suite (pnpm test:playwright:*). It is unreliable. Drive a real browser through the Playwright MCP server (.mcp.json) instead.

Trigger: a completed change to public/views/, public/components/, public/js/, public/css/, public/locales/, or a *.html page, or a published single-file AIMEAT app (aimeat_app_publish). Mid-development is not the trigger; done is.

Against the running dev server (pnpm dev, port 40050): navigate to the page, reach the authenticated state, perform the real interactions, and confirm the expected result actually happens. Elements appear, data persists, edits and deletes take effect.

If you could not drive the browser (MCP unavailable, server down, no credentials), say so. Do not report it as working.

Measure, don't glance

Mandatory when the surface has a dialog or overlay, or reads live data. A clean console, compiling JS and one screenshot at one size are proxies, and proxies generalise badly: an overlay verified only at 390px shipped rendering below the footer on desktop, and an app reported as "0 console errors" was repainting its open dialog every second.

Run all three and report the numbers.

  1. Three viewports, every interactive surface: 390x844, 1280x900, and 1280x460. The short one catches centring and overlay bugs (clipped top, unscrollable, rendered below the page). At each: scrollWidth - clientWidth === 0, dialog top edge >= 0, close control reachable. When the overflow is not zero, do not guess the culprit; list it. The element whose right edge passes the viewport is usually not the one you expect (a flex or grid item whose automatic min-width is its content, so a horizontally scrolling strip inside it holds the whole page open):
    () => { const w = document.documentElement.clientWidth; const out = [];
      document.querySelectorAll('body *').forEach(el => { const r = el.getBoundingClientRect();
        if (r.right > w + 2 && r.width > 0 && getComputedStyle(el).position !== 'fixed')
          out.push((el.id ? '#' + el.id : '') + '.' + String(el.className).slice(0, 36) + ' r=' + Math.round(r.right)); });
      return out.slice(0, 12); }
    
    The outermost entry is the one to fix (min-width: 0 on the item, align-items: stretch on a column container); the rest are its children. → docs/pitfalls.md §30
  2. Live channel connected, dialog open, count repaints: MutationObserver on the open panel's content node, 20 seconds while other activity happens on the account. Expected zero. Above zero means a live event is repainting what the user is reading.
  3. Network log after 60 idle seconds: a repeating full listing is a bug even when nothing visibly breaks. It is an unintended poll.

Read the full file on GitHub · 87 lines

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 · +21 lines fca657b72876
  2. 10d ago First seen · 66 lines · 0 tokens per session scan A 4337ae442738

Subscribe to this mod's changes

aimeat-frontend-verify is a skill published in the GitHub repository miikkij/aimeat-protocol (7 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,176 tokens. 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

figma-to-webui

Recreate Figma design frames as production-ready Chromium WebUI code following Chrome's Lit-element architecture and styling guidelines. Use when asked to create WebUI code from a Figma frame URL.

chromium/chromium · 44 tokens

generate-token-map

Maps all Figma design tokens from figma-variables.md to their equivalent C++ (Views) identifiers, CSS (WebUI) variables, and Clank (Android) resource attributes/macros/methods in Chromium, and saves the formatted mapping table to the assets directory of the Chrome Design System project. Use this skill when asked to…

chromium/chromium · 81 tokens

agent-canvas

Interactive element picker for web pages. Opens a browser with click-to-select UI overlay. Use when you need to let users visually select DOM elements, identify element selectors, or get detailed element information interactively. Triggers on "select an element", "pick element", "let me choose", "which element", or…

majiayu000/claude-skill-registry · 83 tokens

clone-website

Reverse-engineer and clone a website in one shot — extracts assets, CSS, and content section-by-section and proactively dispatches parallel builder agents in worktrees as it goes. Use this whenever the user wants to clone, replicate, rebuild, reverse-engineer, or copy any website. Also triggers on phrases like "make a…

vibeeval/vibecosystem · 93 tokens

responsiveness-check

Test website responsiveness across viewport widths using browser automation. Resizes a single session through breakpoints, screenshots each width, and detects layout transitions (column changes, nav switches, overflow). Produces comparison reports showing exactly where layouts break. Trigger with 'responsiveness…

jezweb/claude-skills · 85 tokens

aster-ui-demo

How to demo UI work the way Claude does it, never with throwaway HTML mockups. Build the change in the real webview, verify it in the browser harness, open the live dev server for the user to click through, and run the real test suites. Use when the user asks for a demo, a preview, or "let me see" any UI change in the…

Zfinix/aster · 87 tokens