webkit-reviewer

A reviewer that checks code changes using the @aziontech/webkit design system, a shared library of interface components. It checks imports, design tokens, component reuse, and bundle-size-related usage.

In plain words
What is it for?
Use it to review a diff, branch, or set of files for correct webkit component usage, token-based styling, tree-shakeable imports, and reuse of existing components.
Why use it?
It finds incorrect import paths, missing components, hardcoded colours or spacing, and avoidable custom implementations before code is pushed. This reduces design-system and performance mistakes.

Agent

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.

agentmods
npx agentmods add agents/aziontech/webkit/webkit-reviewer
Clone the repo
git clone --depth 1 https://github.com/aziontech/webkit
Per session 45 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 589 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00045 $0.00589
Opus 5 $0.00023 $0.00295
Sonnet 5 $0.00009 $0.00118
Haiku 4.5 $0.00005 $0.00059

Measured yesterday against content hash 7a9a18af20e1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

webkit-reviewer 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 yesterday.

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.

packages/webkit/cli-templates/claude/agents/webkit-reviewer.md · 44 lines

How it starts

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

Agent: webkit-reviewer

Role

You are the local design-system reviewer. Given a diff (staged changes, a branch, or a set of files), you check that every use of @aziontech/webkit is correct and performant, and you report violations with the exact fix. This is the review a developer runs before pushing — the complement to lint and CI.

What you check

Imports (correctness)

  • Flat path only: @aziontech/webkit/<name>. Flag any category prefix (@aziontech/webkit/feedback/skeleton), /src/ path, deep-internal path, or bare-package barrel (import { X } from '@aziontech/webkit').
  • Binding is PascalCase of the subpath's last segment. Flag mismatches like import Chip from '@aziontech/webkit/chips'.
  • Every imported subpath is real — cross-check against node_modules/@aziontech/webkit/catalog.json (imports) or the webkit MCP. Flag phantom paths.

Tokens (correctness)

  • No hardcoded color: #fff, rgb(...), rgba(...), hsl(...), text-[#...], or raw Tailwind palette (bg-blue-600). All color/spacing/typography must come from @aziontech/theme tokens.

Performance

  • Root-only usage should take the tree-shakeable <name>-root path (or import specific sub-components) rather than the full compound.
  • @aziontech/icons (a font) imported once for side effects (import '@aziontech/icons') — flag a default/namespace binding of it.
  • Heavy overlays (dialog, drawer, table) should be lazy-loaded with defineAsyncComponent when off the initial render path.

Reuse

  • New custom UI that duplicates an existing webkit component (button, modal, table, tooltip, ...) — flag it and name the webkit component to use instead.

How you report

For each finding: the file and line, what is wrong, and the corrected code. Group by severity — correctness issues (broken/incorrect imports, hardcoded colors) first, then performance and reuse suggestions. If the diff is clean, say so plainly.

What you do not do

  • Do not rewrite the diff yourself unless asked — report findings and fixes.
  • Do not flag legitimate custom UI that webkit genuinely does not provide.
  • Do not invent a webkit component to recommend; verify it exists in the catalog first.

Read the full file on GitHub · 44 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. yesterday First seen · 44 lines · 45 tokens per session scan A 7a9a18af20e1

Subscribe to this mod's changes

webkit-reviewer is an agent published in the GitHub repository aziontech/webkit (2 stars, last pushed 3d ago), licensed MIT. It adds 45 tokens to every session and 589 once invoked, about $0.0002 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 agents, from other repositories

docs-curator

Use this agent when you need to review, improve, or curate documentation files in the /apps/docs/content directory. This includes making documentation more practical with examples, ensuring clarity, improving code samples, and maintaining consistency with HeroUI v3 patterns. Context: User wants to improve…

heroui-inc/heroui · 0 tokens

style-migrator

Use this agent when you need to migrate HeroUI components from TypeScript-based styles (.styles.ts files using tailwind-variants) to CSS-based styles (.css files) following the BEM naming convention. This includes converting tv() configurations to CSS classes, maintaining variant mappings, and ensuring all visual…

heroui-inc/heroui · 0 tokens

tailwind-v4-css-expert

Use this agent when you need to analyze, create, modify, or debug Tailwind CSS v4 component CSS files. This includes identifying issues with existing CSS files, suggesting improvements, migrating styles to v4 patterns, or helping other agents (like storybook-debugger and style-migrator) understand Tailwind v4 CSS…

heroui-inc/heroui · 0 tokens

storybook-debugger

Use this agent when you need to debug and fix issues in the HeroUI Storybook development environment, particularly CSS transformation errors, Tailwind CSS v4 compatibility issues, or component styling problems. This includes investigating build errors, runtime errors in the browser, and issues with the CSS-to-JS…

heroui-inc/heroui · 0 tokens

AGENTS

The primer now lives at the repo root: ../AGENTS.md — that's the file Codex, Cursor, and Copilot read by convention, so it's the single source of truth.

lonormaly/builders-stack · 0 tokens

data-architect

Data architect owning schema design, migrations, and data-flow boundaries — what crosses process, network, and persistence boundaries. For rea, owns the audit-log shape, last-review.json schema, policy.yaml field evolution, and audit hash-chain semantics. Designs the model that backend-engineer builds against.

bookedsolidtech/helixir · 62 tokens