keyvaluesoftwaresystems/kv-skills · Archived

frontend-review

Review the frontend implementation AFTER it is built — UI-state completeness, accessibility, security, resilience, forms, performance, responsive/i18n, test gaps. Read-only; writes a review artifact. Front door for /frontend-review.

First seen Jul 3, 2026

Installation

$ npx skills add keyvaluesoftwaresystems/kv-skills --skill frontend-review

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from keyvaluesoftwaresystems/kv-skills · top by installs.

npx skills add keyvaluesoftwaresystems/kv-skills

Browse all from keyvaluesoftwaresystems/kv-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 3
License licenses
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, Grep, Glob, Bash, Task, Write
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,972 B
  • docs SUMMARY.md 257 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 10 installs

SKILL.md

frontend-review

Review the frontend implementation (diff/branch) against the contract and LLD. Read-only — never edit code.

Steps

  1. Scope the diff — changed pages/components, new hooks, and the routes affected.
  2. Check consumption against the contract (shapes, error codes) and the required UI states.
  3. Deep, evidence-backed pass over every dimension in the checklist below. For a more

independent read you MAY spawn a fresh read-only sub-agent (via the Task tool) that follows this same skill — do this where your harness supports it (e.g. Claude Code). Otherwise perform the pass inline. Either way: read-only — never edit code. You are the read-only backstop; nothing is skipped.

  1. Consolidate by severity; decide blocking.
  2. Write the report and return the verdict.

What the review must cover (checklist — independent of the external skill)

  • UI-state completeness — loading, empty, success, validation error, API error,

permission denied, retry/failed — each reachable and correct.

  • Accessibility (WCAG AA) — keyboard operable, visible focus, roles/labels, contrast,

screen-reader semantics, focus management, no traps.

  • Security — no secrets/tokens in client; XSS-safe rendering/escaping; CSRF-safe

requests; validated redirects; no PII in logs/analytics.

  • Contract consumption — calls the API as published; no invented shapes; all documented

error codes handled.

  • Resilience — slow/failed/stale APIs handled with retry/backoff + messaging; optimistic

updates roll back; double-submit guarded.

  • Forms & validation — mirrors the contract; field-level errors; submit disabled while pending.
  • Performance — code-split/lazy-load; avoid needless re-renders; bundle size; large-list

virtualization.

  • Responsive & i18n — breakpoints; long text/overflow; localizable strings; locale

formatting; RTL if supported.

  • Test gaps — component + E2E cover the acceptance criteria and the UI states;

assertions meaningful.

Edge cases / smells to watch for

  • Only the happy path styled; missing empty/error/permission states.
  • dangerouslySetInnerHTML / unescaped user content; tokens in localStorage or logs.
  • Buttons with no disabled/pending state (double-submit); no rollback on failed optimistic update.
  • Non-semantic clickable divs; missing labels; focus lost after navigation/modal close.
  • Hard-coded copy in a localized app; layout breaking on long text or small screens.
  • Large list rendered without virtualization; unbounded re-renders.

External skill (provision — review method)

Read skills.config.yamlreview.external (default requesting-code-review, from the Superpowers pack, or none). If set, apply its discipline first; it must not narrow the checklist above.

Findings format (what the review returns — evidence mandatory)

summary: <one paragraph verdict + top risks>
findings:
  - severity: blocker | major | minor | suggestion
    area: ui-state | accessibility | security | contract | resilience | forms | performance | responsive-i18n | test-gap
    file: <path:line>
    evidence: <quoted code / the missing state or check>
    recommendation: <smallest safe change>
    safe_for_ai_fix: <true|false>
blocking: <true if any blocker/major remains>

Decide & output

Sort blocker → major → minor → suggestion; blocking = true if any blocker/major remains. Write .sdlc/<slug>/frontend/reviews/summary.md. Return review_path and blocking. In the workflow a blocking result routes back to the frontend implementer (bounded to 3).