name: verify description: Run full project validation (lint, format, copyright headers) to catch issues before committing. IMPORTANT - Proactively invoke this skill after completing any code changes (new features, bug fixes, refactors) before reporting completion to the user.
Run the full validation suite for the GLSP Client monorepo from the repository root:
yarn check:all
In a parallel task, run the test suite to ensure all tests pass:
yarn test
On failure:
- Report which checks/tests failed and the specific errors
- If checks failed, auto-fix by invoking the
/fixskill - In case of previous test failures, re-run the
yarn testcommand to confirm all tests now pass - Re-run
yarn check:allto confirm everything passes