agentsclimarketplace

Speckit.tester

Skill wedabro/bro-skills/.agents/skills/speckit.tester

Test Runner & Coverage - Create test plans, write tests, report coverage.From its SKILL.md

Install
npx -y skills add wedabro/bro-skills --skill speckit.tester

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.4 KB, 330 tokens by cl100k_base, as published. Nobody here has run it

🎯 Mission

Make sure the implementation has full test coverage and passes 100%.

πŸ“₯ Input

  • Source code (implemented files)
  • .agent/specs/[feature]/tasks.md (completed tasks)
  • .agent/specs/[feature]/spec.md (success criteria)

πŸ“‹ Protocol

  1. Test Plan: From tasks.md (completed) β†’ list functions/routes to test.
  2. Write Tests: For each function/route:
    • Happy path (valid input β†’ correct output)
    • Error path (error input β†’ error handling correct)
    • Edge case (boundary values, empty, null)
  3. Run Tests: docker compose exec [service] npm test or equivalent.
  4. Coverage Report:
    πŸ“Š Test Coverage Report
    ═══════════════════════
    Files Tested:    12/15 (80%)
    Tests Passed:    45/48 (93.7%)
    Tests Failed:    3
    ───────────────────────
    Untested: src/api/payment.ts, src/utils/cache.ts, src/hooks/useAuth.ts
    
  5. List failed tests with error details.

πŸ“€ Output

  • Test files (theo convention: *.test.ts, *.spec.ts)
  • File: .agent/memory/test-report.md

🚫 Guard Rails

  • DO NOT skip error path tests β€” must also test failing cases.
  • DON'T mock too much β€” prefer integration tests for API routes.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,835. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.