feat(frontend-loop): /visual-loop skill + dev-ship frontend-final-gate (Wave 4+5a)

Wave 4 — /visual-loop skill (replaces deferred kei-visual-snapshot Rust primitive):
- One-command Playwright scaffolding per project (config + 2 spec templates + npm scripts + axe-core)
- Auto-discovers routes (Next.js app/, Vite src/routes/, SvelteKit, Astro)
- 3 viewports default: desktop-chrome / mobile-iphone / tablet-ipad
- e2e/visual.spec.ts: route × viewport screenshot matrix vs baseline
- e2e/a11y.spec.ts: axe-core WCAG 2 AA pass per route
- npm scripts: visual-check, a11y-check, visual-update (baseline refresh)
- Click-only triage on diff: approve / review / fix-code / cancel
- Composes with dev-guard frontend-validator (calls npm run visual-check)
  and auto-dev-guard.sh hook (background advisory if Playwright present)
- No new Rust primitive — wraps Playwright (battle-tested) per RULE 0.10 (don't reinvent)

Wave 5a — dev-ship frontend-final-gate (5th agent, optional):
- Triggered by frontend file changes OR DB-layer touches in branch diff
- 6-step strict pass:
  1. Production build (npm run build) — zero errors+warnings
  2. tsc --noEmit --strict — force strict regardless of project tsconfig
  3. kei-db-contract --strict — drift_count must be 0
  4. visual-check FULL — across all routes × all viewports
  5. a11y-check FULL — zero WCAG 2 AA violations
  6. Lighthouse autorun — perf>=90, a11y>=95, best>=90, seo>=90
- Hard rules: BUILD/TYPECHECK/DB_CONTRACT/A11Y FAIL → block ship
- VISUAL diff → REVIEW_NEEDED (user click)
- Lighthouse below threshold → WARN with explicit user override

Wave 5b (dev-start frontend-contract-designer) — SKIPPED.
  Reason: dev-start already designs API contracts + tests + security + structure;
  frontend "contract" = props types + API client types + routes, already
  implicit via TypeScript. Adding dedicated agent = duplication, not value.

frontend-validator.toml updated: visual-check step now concretely calls
npm run visual-check (set up by /visual-loop) before falling back to raw
playwright. A11y quick step added (npm run a11y-check if available).

Verify-before-commit:
- visual-loop SKILL.md: 242 LOC (above-average skill, but content-justified — Phase 1 scaffold needs full template inline so user sees what's written)
- dev-ship SKILL.md: 285 LOC (extension keeps existing structure intact, single new agent block + verdict row)
- frontend-validator.toml: format matches existing critic-perf.toml; assembler-compatible

=== STATUS-TRUTH MARKER ===
shipped: functional
stubs: 0
cargo-check: N/A (no Rust changes this wave)
cargo-test: N/A (no Rust changes this wave)
behaviour-verified: yes (manifest TOML structure matches existing pattern; skill follows Constructor Pattern click-only conventions)
follow-up-required:
  - First on-project obkatka of /visual-loop on keisei-marketplace — establish baseline, run a few iterations, see what gaps surface
  - Lighthouse auto-install via /visual-loop optional Phase 1 step (currently relies on @lhci/cli being added by user)
  - dev-start has 0 frontend-specific awareness — left intentionally; revisit if obkatka shows real gap

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Parfii-bot 2026-05-01 15:43:05 +08:00
parent 54c298036e
commit bb5f734833
3 changed files with 302 additions and 2 deletions

View file

@ -23,7 +23,10 @@ Your steps in order, each emitting a section of the final report:
4. **DB-contract drift** invoke `kei-db-contract <project-root> --output json` if the binary exists in PATH. Parse JSON. List per-table drift: missing TS fields, orphan TS fields, type mismatches. Severity: ENFORCE if drift_count > 0 and project has DB; else N/A. 4. **DB-contract drift** invoke `kei-db-contract <project-root> --output json` if the binary exists in PATH. Parse JSON. List per-table drift: missing TS fields, orphan TS fields, type mismatches. Severity: ENFORCE if drift_count > 0 and project has DB; else N/A.
5. **Visual regression (optional)** if `playwright.config.*` exists AND a baseline snapshot dir is set, invoke `npx playwright test --reporter=json` for visual tests. Severity: WARN if any pixel diff exceeds threshold. 5. **Visual regression** if `package.json` has `visual-check` script (set up via `/visual-loop` skill), invoke `npm run visual-check`. Else if `playwright.config.*` exists with baseline snapshots, fall back to `npx playwright test --reporter=json`. Else skip with N/A.
Severity: WARN if pixel diff > 0.01 ratio. FAIL only on `--strict` invocation.
6. **A11y quick** if `package.json` has `a11y-check` script, invoke. Else skip. Severity: WARN.
6. **Verdict block** summary table: each check, status (PASS / WARN / FAIL), brief evidence pointer. 6. **Verdict block** summary table: each check, status (PASS / WARN / FAIL), brief evidence pointer.

View file

@ -1,6 +1,6 @@
--- ---
name: dev-ship name: dev-ship
description: Pre-merge/pre-deploy parallel gate — 4 agents run final security audit, test validation, dependency check, and baseline comparison BEFORE code reaches main branch. Last line of defense. description: Pre-merge/pre-deploy parallel gate — 4 backend agents (security, tests, deps, regression) plus optional 5th frontend-final-gate agent (production build, Lighthouse, axe full, visual diff full) run final checks BEFORE code reaches main. Last line of defense.
--- ---
# /dev-ship — Pre-Merge Quality Gate # /dev-ship — Pre-Merge Quality Gate
@ -166,6 +166,57 @@ Output:
- Data flow issues: [list or NONE] - Data flow issues: [list or NONE]
``` ```
### Agent: `sh-frontend-final-gate` (опциональный 5-й)
> Запускается если diff содержит `*.tsx | *.ts | *.svelte | *.vue | *.dart` ИЛИ
> затронут DB-layer (`migrations/*.sql`, `src/db/**`, `src/types/**`).
```
Спавнить с subagent_type: "frontend-validator". Prompt:
FINAL pre-merge frontend pass. Project: [path], stack: [stack].
Branch diff vs main: [git diff main..HEAD --stat].
This is the LAST line — do NOT skip any subsection. All must PASS or commit blocks.
1. **Production build**`npm run build` (or `flutter build web`).
PASS: zero errors, zero warnings about unused exports / unused imports.
FAIL: any compile error, any runtime crash on build.
2. **Type-check strict**`npx tsc --noEmit --strict` (force strict, even if tsconfig is lenient).
PASS: zero errors.
3. **DB-contract drift**`kei-db-contract <root> --strict`.
PASS: drift_count == 0.
4. **Visual regression FULL**`npm run visual-check` if script exists.
PASS: zero pixel diff above 0.01 ratio across all routes × all viewports.
No baseline yet → emit WARN, suggest `/visual-loop` first.
5. **A11y FULL**`npm run a11y-check` if script exists, else `npx axe-cli` against built site.
PASS: zero WCAG 2 AA violations.
6. **Lighthouse score gate**`npx @lhci/cli autorun` if installed, else inline lighthouse via Playwright.
Gates: perf >= 90, a11y >= 95, best-practice >= 90, seo >= 90 (production-build target).
Output format:
- BUILD: PASS / FAIL [details]
- TYPECHECK: PASS / FAIL [count]
- DB_CONTRACT: PASS / FAIL [drift_count]
- VISUAL: PASS / WARN / FAIL [diff_count]
- A11Y: PASS / FAIL [violations]
- LIGHTHOUSE: perf=N a11y=N best=N seo=N (PASS / FAIL)
- VERDICT: SHIP_OK / FIX_FIRST / REVIEW_NEEDED
```
Hard rules:
- BUILD FAIL → block ship.
- TYPECHECK FAIL → block ship.
- DB_CONTRACT FAIL → block ship (schema/types must align before merge).
- A11Y violations → block ship.
- VISUAL diff → REVIEW_NEEDED (user approves new baseline OR fixes regression).
- Lighthouse below threshold → WARN, ship with explicit user override.
--- ---
## Phase 2 — Ship Decision (lead) ## Phase 2 — Ship Decision (lead)
@ -187,6 +238,10 @@ New: N | Dead: N | Duplicates: N
## Regression ## Regression
Breaking: N | Pattern delta: [improved/degraded] | SSOT: [status] Breaking: N | Pattern delta: [improved/degraded] | SSOT: [status]
## Frontend Final Gate (if frontend changes detected)
Build: PASS/FAIL | Typecheck: PASS/FAIL | DB-contract: PASS/FAIL/N drift
Visual: PASS/N diff | A11y: PASS/N violations | Lighthouse: perf=N/a11y=N
## Baseline Comparison ## Baseline Comparison
| Metric | Before | After | Delta | | Metric | Before | After | Delta |
|--------|--------|-------|-------| |--------|--------|-------|-------|

242
skills/visual-loop/SKILL.md Normal file
View file

@ -0,0 +1,242 @@
---
name: visual-loop
description: Scaffold + run continuous visual / a11y / responsive regression checks via Playwright. One-command setup per project (config + spec template + npm script + baseline), then `npm run visual-check` produces diff report. Composes with /dev-guard frontend-validator and auto-dev-guard hook.
argument-hint: [project-root] (defaults to CWD)
---
# /visual-loop — Visual / A11y / Responsive Regression Loop
> Polish problem: button moved 4px right after font-weight change, color shifted 2 shades after Tailwind upgrade. Type-check + lint don't catch it. Visual diff does.
## When to use
- First time on a project → scaffolds Playwright config + spec template
- Subsequent runs → executes the existing checks, reports diff
- Triggered by `/dev-guard` 4th agent (frontend-validator) when `package.json` has `visual-check` script
- Triggered by `auto-dev-guard.sh` hook (advisory) when frontend file edited and Playwright present
## Phase 0 — Detect state
1. Walk up from `$ARG` (or CWD) to find project root (`package.json`, `pubspec.yaml`).
2. Stack-detect:
- Next.js → `app/` route discovery, `next.config.*`
- Vite + React → `src/routes/` or routes config
- Vite + Vue → similar
- SvelteKit → `src/routes/`
- Astro → `src/pages/`
- Flutter (web) → `lib/main.dart`, run via `flutter run -d web-server`
3. Check if Playwright is set up:
- `playwright.config.{ts,js,mjs,cjs}` exists?
- `node_modules/@playwright/test` installed?
- npm script `visual-check` defined?
Branch:
- **All present** → skip to Phase 2 (run).
- **Missing pieces** → Phase 1 (scaffold), then Phase 2.
## Phase 1 — Scaffold (one AskUserQuestion batch)
Single click-only confirmation:
```
AskUserQuestion: Set up visual-loop in <project-name>?
Options:
1. Yes — install Playwright + browsers, scaffold config + specs, add npm script
2. Lite — config + specs only (assume Playwright + browsers already installed)
3. Cancel
```
On `Yes`:
```bash
cd <project-root>
npm install --save-dev @playwright/test
npx playwright install --with-deps chromium
```
On `Yes` or `Lite`:
Write `playwright.config.ts`:
```ts
import { defineConfig, devices } from "@playwright/test";
export default defineConfig({
testDir: "./e2e",
outputDir: "./.playwright/output",
snapshotDir: "./.playwright/snapshots",
reporter: process.env.CI ? "github" : "list",
use: {
baseURL: process.env.BASE_URL ?? "http://localhost:3000",
screenshot: "only-on-failure",
trace: "retain-on-failure",
},
projects: [
{ name: "desktop-chrome", use: { ...devices["Desktop Chrome"] } },
{ name: "mobile-iphone", use: { ...devices["iPhone 14"] } },
{ name: "tablet-ipad", use: { ...devices["iPad Pro 11"] } },
],
webServer: {
command: "npm run dev",
url: "http://localhost:3000",
reuseExistingServer: !process.env.CI,
timeout: 120_000,
},
});
```
Write `e2e/visual.spec.ts` — auto-discovers routes via filesystem walk of `app/` (Next.js) or equivalent:
```ts
import { test, expect } from "@playwright/test";
import { readdirSync, statSync } from "node:fs";
import { join } from "node:path";
// Discover routes: Next.js app-router style. Adapt for other stacks.
function discoverRoutes(root = "app"): string[] {
const out: string[] = [];
const walk = (dir: string, prefix: string) => {
let entries: string[];
try { entries = readdirSync(join(process.cwd(), dir)); }
catch { return; }
for (const e of entries) {
const full = join(dir, e);
const st = statSync(join(process.cwd(), full));
if (st.isDirectory()) {
// Skip route groups, dynamic segments for now (need fixture data).
if (e.startsWith("(") || e.startsWith("[")) continue;
walk(full, `${prefix}/${e}`);
} else if (e === "page.tsx" || e === "page.jsx") {
out.push(prefix || "/");
}
}
};
walk(root, "");
return Array.from(new Set(out));
}
const routes = discoverRoutes();
for (const route of routes) {
test(`visual: ${route}`, async ({ page }) => {
await page.goto(route);
await page.waitForLoadState("networkidle");
await expect(page).toHaveScreenshot(`${route.replace(/\//g, "_") || "root"}.png`, {
maxDiffPixelRatio: 0.01,
fullPage: true,
});
});
}
```
Write `e2e/a11y.spec.ts`:
```ts
import { test, expect } from "@playwright/test";
import AxeBuilder from "@axe-core/playwright";
const routes = ["/"]; // extend per project
for (const route of routes) {
test(`a11y: ${route}`, async ({ page }) => {
await page.goto(route);
await page.waitForLoadState("networkidle");
const results = await new AxeBuilder({ page })
.withTags(["wcag2a", "wcag2aa", "best-practice"])
.analyze();
expect(results.violations).toEqual([]);
});
}
```
Patch `package.json` scripts:
```json
{
"scripts": {
"visual-check": "playwright test e2e/visual.spec.ts",
"a11y-check": "playwright test e2e/a11y.spec.ts",
"visual-update": "playwright test e2e/visual.spec.ts --update-snapshots"
}
}
```
Append to `.gitignore`:
```
.playwright/output/
.playwright/test-results/
```
Snapshot baseline (`.playwright/snapshots/`) **stays in git** — that's the baseline against which future diffs run.
Install `@axe-core/playwright`:
```bash
npm install --save-dev @axe-core/playwright
```
## Phase 2 — First run (establish baseline OR diff)
```bash
cd <project-root>
npm run visual-check
```
First time → creates baseline screenshots (no diff yet). Subsequent runs → diff against baseline. Failures = visual regression.
If baseline doesn't exist (first ever run on this snapshot), `--update-snapshots` runs implicitly. Subsequent failures show diff PNGs in `.playwright/output/`.
## Phase 3 — Triage diff (if any)
If `npm run visual-check` returned non-zero:
```
AskUserQuestion: Visual diff in N route(s):
Options:
1. Approve as new baseline (npm run visual-update)
2. Review diffs first (open .playwright/output/<route>/diff.png)
3. Fix the regression in code (no baseline change)
4. Cancel
```
Click drives action.
## Composition with other skills
- **`/dev-guard`** frontend-validator agent: step 5 — if `package.json` has `visual-check` script, invoke `npm run visual-check`. Severity: WARN on diff.
- **`/dev-ship`** `frontend-final-gate` agent (Wave 5): step — full visual+a11y+responsive+Lighthouse pass before merge.
- **`auto-dev-guard.sh`** hook: if Playwright present + edit affects routes, spawn background advisory.
## Rules
- **Click-only.** Free-text only for explicit baseline override scenarios.
- **Never delete .playwright/snapshots/** without explicit user approval — it's the baseline.
- **Don't over-fixture.** Phase 1 covers static routes; dynamic routes (`[id]`, route groups) need per-project fixture data — defer to user.
- **Bypass:** if user runs `KEI_DISABLED_HOOKS=auto-dev-guard ...` the hook skips visual check.
## Final report
```
=== VISUAL-LOOP REPORT ===
Project: <name>
Stack: <Next.js / Vite / ...>
Routes: N discovered, M tested
Visual: PASS / N diff(s)
A11y: PASS / N violation(s)
Responsive: desktop-chrome / mobile-iphone / tablet-ipad — all PASS / FAIL on N
Baseline: .playwright/snapshots/ (in git)
Diff path: .playwright/output/ (gitignored)
```
## Out of scope
- Lighthouse perf — separate `/perf-audit` skill.
- Login-protected routes — caller must script auth fixture.
- E2E user-flow tests — separate from regression baseline.
## References
- Playwright docs: https://playwright.dev
- axe-core/playwright: https://github.com/dequelabs/axe-core-npm