Verify Docs and Tests
Workflow
- •Check that exported APIs in
packages/*/src/index.tsmatch documentation expectations (focus on the touched package). Use theupdate-index-exportsskill if exports are missing. - •Verify new or changed functions have tests in
packages/*/__tests__/for the same package. - •Suggest running tests:
- •
npm run testfor all packages - •
TEST_API=<package> npm run testfor a specific package
- •
- •If docs output is required, suggest
npm run docsor use thesync-docsskill.