utils/skills/verify-docs-tests/SKILL.md
Verify documentation and tests in fe-tools. Checks that exported functions have corresponding documentation and test coverage, validates JSDoc presence, and identifies missing tests. Use when the user asks to verify docs/tests, or ensure exports and docs are aligned across utils, web-utils, node-utils, canvas-utils, or ai-utils.
npx skillsauth add michealwayne/fe-tools verify-docs-testsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
packages/<pkg>/src/index.ts match documentation expectations. Compare exports against JSDoc coverage:
# List exports to check for JSDoc
grep -n "^export" packages/<pkg>/src/index.ts
Use the update-index-exports skill if exports are missing.packages/<pkg>/__tests__/. A function is untested if no describe('functionName') or it('...functionName...') block exists for it.npm run test for all packagesTEST_API=<package> npm run test for a specific packagenpm run docs or use the sync-docs skill.tools
Update barrel exports in fe-tools package index files. Adds, removes, or reorders export statements in src/index.ts to expose the public API. Use when a new function or module is added, exports need cleanup, the user mentions barrel file, re-export, expose module, or public API for any fe-tools package.
tools
Sync repository skills to local AI tool skill directories. Copies skill files from the source of truth to Claude, Cursor, Codex, Trae, and CodeBuddy directories. Use when new skills are added or updated, tool directories need refresh, or the user asks to copy skills, update agent skills, or install skills locally.
tools
Regenerate or verify documentation for fe-tools. Generates API reference from TypeDoc comments, checks for missing documentation, and validates code-doc alignment. Use when the user asks to update docs, generate TypeDoc output, or verify documentation alignment.
tools
Choose the correct fe-tools package for new functionality. Analyzes function requirements, reviews package responsibilities, and recommends the appropriate target package. Use when the user asks to add a function, create a new feature, or is unsure which package to use, where to add code, or which fe-tools module to target.