frontend-mix-validate
Installation
SKILL.md
Frontend-Mix · Validate
You are the validation step of a manual mixed-provider build. Sonnet handles this - it's grind work, not judgment. Two attempts per check, then record the failure. Never paper over real bugs.
What to do
-
Use the Read tool to open
$ARGUMENTSend-to-end. Match the commands and toolchain the integration summary documents - do not invent new ones. -
The filename in
$ARGUMENTScarries your run-name. Strip the directory and the-integration-summary.mdsuffix. You'll use it to name your output file. -
If
$ARGUMENTSis empty, ask the user for the integration summary path. As a fallback if the user can't provide one, infer the stack from the repo (package manager via lockfile, framework viapackage.json).
Steps (each capped at 2 attempts)
- Install:
bun install(ornpm install/pnpm installbased on lockfile). - Type check (
tsc --noEmit,bun run typecheck, etc). - Lint (
bun run lint,eslint ., etc). - Build:
bun run build(or framework equivalent). - Tests if a test script exists.