
Verify
Run the official React repo verification gate—prettier, lint changed files, flow, and targeted tests—before you commit a contribution.
Install
npx skills add https://github.com/facebook/react --skill verifyWhat is this skill?
- Sequential gate: yarn prettier then yarn linc with stop-on-fail
- Parallel subagent steps for /flow, /test source, and /test www
- Optional $ARGUMENTS test pattern for focused test runs
- Hard stop on first failure with fix suggestions
- Success summary only when the full React contribution checklist passes
Adoption & trust: 967 installs on skills.sh; 246k GitHub stars; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Agent Browservercel-labs/open-agents
Tddmattpocock/skills
Use My Browserxixu-me/skills
Test Driven Developmentobra/superpowers
Verification Before Completionobra/superpowers
Webapp Testinganthropics/skills
Journey fit
Common Questions / FAQ
Is Verify safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Verify
# Verification Run all verification steps. Arguments: - $ARGUMENTS: Test pattern for the test step ## Instructions Run these first in sequence: 1. Run `yarn prettier` - format code (stop if fails) 2. Run `yarn linc` - lint changed files (stop if fails) Then run these with subagents in parallel: 1. Use `/flow` to type check (stop if fails) 2. Use `/test` to test changes in source (stop if fails) 3. Use `/test www` to test changes in www (stop if fails) If all pass, show success summary. On failure, stop immediately and report the issue with suggested fixes.