Running Verification Suite banner
llcoolblaze llcoolblaze

Running Verification Suite

Testing community intermediate

Description

!`npm test 2>&1 || true` !`npm run typecheck 2>&1 || true` !`npm run lint 2>&1 || true` ---

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for llcoolblaze/claude-boris, shared by 3 entries in this directory. It describes the repository, not this entry specifically.


description: Run test suite, analyze failures, fix issues, and iterate until all tests pass

Running Verification Suite

!`npm test 2>&1 || true` !`npm run typecheck 2>&1 || true` !`npm run lint 2>&1 || true`


Analysis & Action

Based on the results above:

If All Checks Pass ✅

Report success:

  • Tests: X passing
  • Types: Clean
  • Lint: Clean

Suggest next steps: `/commit-push-pr` or `/review-changes`

If Any Checks Fail ❌

**Priority Order:**

  1. TypeScript errors - Fix first (blocks everything)
  2. Test failures - Fix next (correctness matters)
  3. Lint errors - Fix last (style issues)

**Process:**

  1. Analyze the specific failures
  2. Identify root cause (don't just fix symptoms)
  3. Make targeted fixes
  4. Re-run the failing checks
  5. Iterate until all pass

**Guidelines:**

  • Don't weaken tests to make them pass
  • Don't disable linting rules
  • Fix the actual problem, not the error message
  • If a test is genuinely wrong, fix the test with explanation

**After each fix:**

npm test
npm run typecheck
npm run lint

Continue iterating until all checks pass, then report final status.