Agent Skill
2/7/2026verify-changes
Use this skill after implementing code to verify correctness before notifying the user.
C
cheekycodexconjurer
0GitHub Stars
2Views
npx skills add CheekyCodexConjurer/quant-lab
SKILL.md
| Name | verify-changes |
| Description | Use this skill after implementing code to verify correctness before notifying the user. |
name: Verify Changes description: Use this skill after implementing code to verify correctness before notifying the user.
Verify Changes (QA Protocol)
Use this skill after code changes to meet the AGENTS.md “definition of done”.
When to use
- After any change that can affect build/runtime behavior.
- Always after UI/interaction changes (run UI smoke).
Standard checks (run from repo root)
Run these in order; if one fails, fix it before continuing:
- Typecheck + minimal lint
npm run check
- Backend tests (includes smoke)
npm test
- Build bundle (catches bundler/runtime issues)
npm run build
UI smoke (required when UI/interaction changed)
Pre-reqs:
- Build the frontend:
npm run build
- Start the backend serving
dist/on:4800:
npm run backend:start
Then run:
npm run test:ui:smoke
Notes
- If you only changed documentation, you can skip these commands.
Skills Info
Original Name:verify-changesAuthor:cheekycodexconjurer
Download