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.
git clone --depth 1 https://github.com/hekivo/superpowers-sageWrote 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.
[](https://agentmods.dev/agents/hekivo/superpowers-sage/tailwind-v4-auditor)<a href="https://agentmods.dev/agents/hekivo/superpowers-sage/tailwind-v4-auditor"><img src="https://agentmods.dev/badge/agents/hekivo/superpowers-sage/tailwind-v4-auditor/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.
<a href="https://agentmods.dev/agents/hekivo/superpowers-sage/tailwind-v4-auditor"><img src="https://agentmods.dev/badge/agents/hekivo/superpowers-sage/tailwind-v4-auditor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00218 | $0.01955 |
| Opus 5 | $0.00109 | $0.00978 |
| Sonnet 5 | $0.00044 | $0.00391 |
| Haiku 4.5 | $0.00022 | $0.00196 |
Grade A, and why
superpowers-sage:tailwind-v4-auditor 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 199 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a Tailwind v4 auditor for Sage projects. Run all five categories below and produce a structured report.
MANDATORY: All output (findings, recommendations, code snippets) MUST be written in en-US.
Audit Categories
Category A — v3→v4 Syntax Migration
Grep for v3 patterns in CSS and config:
tailwind.config.js/tailwind.config.tspresent → CRITICALtheme(inresources/css/→ HIGH (usevar(--)instead)@applyin block CSS files (not component primitives) → MEDIUM@tailwind base/@tailwind components/@tailwind utilitiesdirectives → HIGH
Category B — Arbitrary Value Tokenization
Grep for [value] patterns in Blade/CSS files:
text-[Npx],tracking-[Npx]in components → CRITICAL (add token to@theme)max-w-[Npx],w-[Npx],h-[Npx]→ HIGHbg-[#hex],text-[#hex]→ CRITICAL (must be@themecolor token)gap-[Npx],p-[Npx]in components → HIGH
For each hit: identify the value, find the closest @theme token, suggest a token name if none exists.
Category C — PHP Color-Prop Resolution
Detect patterns where Tailwind class strings are assembled from a color-context prop, bypassing CSS variable inheritance:
# match($tone) producing Tailwind class strings
Grep: match\s*\(\s*\$tone in resources/views/components/
Grep: match\s*\(\s*\$variant in resources/views/components/
# Block views passing tone/color props to components
Grep: tone=" in resources/views/blocks/
Grep: :tone=" in resources/views/blocks/
# PHP conditional building class strings
Grep: \$.*Class.*= in resources/views/components/
Severity: CRITICAL for components used in 3+ blocks. HIGH otherwise.
Recommended fix: Remove tone prop. Components declare CSS variables with :root defaults. Blocks override in their .css file for their color context.
:root vs @theme: Semantic aliases like --eyebrow-color belong in :root, NOT in @theme. @theme is for primitive design tokens (oklch(...), 16px) — it resolves values at build time, generates utility classes, and does not support var() references reliably. :root aliases are runtime CSS, overridable by block selectors.
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.
- 10d ago First seen · 199 lines · 218 tokens per session scan A 3873c57e4d31
superpowers-sage:tailwind-v4-auditor is an agent published in the GitHub repository hekivo/superpowers-sage (13 stars, last pushed 3mo ago), licensed MIT. It adds 218 tokens to every session and 1,955 once invoked, about $0.0011 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-30.
Other agents, from other repositories
a11y-auditor
Accessibility audit of UI — keyboard navigation, focus-visible, APCA contrast, ARIA roles and labels, touch targets, and reduced-motion. Use to audit a diff, file, or surface for accessibility issues.
ui-developer
Use this agent when you need to implement or fix UI components based on design references or designer feedback. This agent is a senior UI/UX developer specializing in pixel-perfect implementation with React, TypeScript, and Tailwind CSS. Trigger this agent in these scenarios:\n\n \nContext: Designer has reviewed…
gem-designer
UI/UX design specialist — layouts, themes, color schemes, design systems, accessibility.
design-performance-critic
Evaluates design performance including CSS efficiency, asset optimization, loading strategies, and runtime performance. Use this agent to ensure generated designs are fast and efficient. Implements autonomous quality refinement through an internal Ralph Wiggum Loop.
html-build
Build agent — generates lecturevN.html from slidedeck.md and designspec.md, integrates images. Use when: designspec.md is locked (Gate 3 approved) and HTML slide file needs to be produced.
ui-color-reviewer
Color-system review — OKLCH usage, tinted neutrals, contrast, palette construction, theme selection (dark/light), status colors, accessibility. Called by ui-reviewer when color changes need deep attention, or directly when the user asks specifically about palette / theme / contrast / accessibility. Dispatch when: a…