Borrowing it
Nothing to install: this file belongs to jmxt3/gitscape.ai. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/jmxt3/gitscape.ai/main/.agents/skills/frontend-ui-engineering/SKILL.mdgit clone --depth 1 https://github.com/jmxt3/gitscape.aiWrote 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/skills/jmxt3/gitscape.ai/frontend-ui-engineering)<a href="https://agentmods.dev/skills/jmxt3/gitscape.ai/frontend-ui-engineering"><img src="https://agentmods.dev/badge/skills/jmxt3/gitscape.ai/frontend-ui-engineering/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/skills/jmxt3/gitscape.ai/frontend-ui-engineering"><img src="https://agentmods.dev/badge/skills/jmxt3/gitscape.ai/frontend-ui-engineering.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.00048 | $0.01619 |
| Opus 5 | $0.00024 | $0.00809 |
| Sonnet 5 | $0.00010 | $0.00324 |
| Haiku 4.5 | $0.00005 | $0.00162 |
Grade A, and why
frontend-ui-engineering 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 9d 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 — 216 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Frontend UI Engineering
Overview
Production-quality UI engineering: component architecture, accessible markup, responsive design, and state management. The bar is not "does it render?" — the bar is "would a user notice a difference from a product they paid for?"
When to Use
- Building or modifying any user-facing component
- Implementing layouts, navigation, or data displays
- Adding or changing state management
- Any change that affects what a user sees or can interact with
Component Architecture
Hierarchy of Concerns
Page (route-level)
└── Layout (grid/columns)
├── Feature Component (data + logic)
│ └── UI Component (pure display, no data fetching)
└── Shared Component (reusable, generic)
- Page components handle routing. No business logic.
- Feature components fetch data and own state. Not reusable.
- UI components receive props, render output. Fully reusable, no side effects.
- Shared components are the design system: Button, Input, Modal, etc.
Component Rules
// GOOD: UI component — pure, testable, reusable
interface SkillCardProps {
name: string;
description: string;
onExport: () => void;
}
export function SkillCard({ name, description, onExport }: SkillCardProps) {
return (
<article className="skill-card">
<h3>{name}</h3>
<p>{description}</p>
<button onClick={onExport} aria-label={`Export ${name} skill`}>
Export
</button>
</article>
);
}
// BAD: UI component that fetches its own data — not reusable, hard to test
export function SkillCard({ skillId }: { skillId: string }) {
const { data } = useQuery(['skill', skillId], fetchSkill);
// ...
}
Accessibility (Non-Negotiable)
Every interactive element must be keyboard-accessible and screen-reader-friendly.
Minimum Requirements (WCAG 2.1 AA)
// Interactive elements use semantic HTML
<button onClick={handleExport}>Export Skill</button> // ✓
<div onClick={handleExport}>Export Skill</div> // ✗
// Images have alt text
<img src={logo} alt="GitScape logo" />
<img src={decoration} alt="" /> // decorative: explicit empty string
// Forms have associated labels
<label htmlFor="repo-url">Repository URL</label>
<input id="repo-url" type="url" required />
// Icon-only buttons have aria-label
<button aria-label="Close dialog">✕</button>
// Loading states are announced
<div aria-busy={isLoading} aria-label="Loading skills">
{isLoading ? <Spinner /> : <SkillList />}
</div>
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.
- 9d ago First seen · 216 lines · 48 tokens per session scan A 21147fc4f3d6
frontend-ui-engineering is a skill published in the GitHub repository jmxt3/gitscape.ai (33 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 48 tokens to every session and 1,619 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-30.
Other skills, from other repositories
openai-frontend-design
Use for new frontend applications, dashboards, games, creative websites, hero sections, and visually driven UI from scratch, or when the user explicitly asks for a redesign/restyle/modernization. Builds from clean, airy, high-taste, readable image-generated concept design with section-specific references, faithful…
ralph-figma
Extract Figma designs and build them as code with ralph-starter.
wp-guided-tour
Use when adding a guided onboarding or feature-discovery tour to a WordPress admin plugin using Driver.js v1 — setting up the IIFE bundle (window.driver.js.driver), PHP backend tour config arrays (autoStart, pages, steps, element, popover), JS scope detection from URL pathname + hash (getCurrentScope, hashchange…
frontend-design
Use when building UI components, making design decisions for frontend work, reviewing UI implementation quality, or planning interaction patterns.
design-system-quality
Use when reviewing UI/frontend code, conducting PR reviews for components, checking design system compliance, or after any UI component work.
anthropic-frontend-design
Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.