agentsclimarketplace

Test hardening

Skill bakerstreetco/skills/test-hardening

Add or improve tests around recently changed code, fragile behavior, regressions, or missing coverage. Use when asked to harden tests, add regression coverage, improve fixtures, reduce flaky tests, or verify behavior without broad refactors.From its SKILL.md

Install
npx -y skills add bakerstreetco/skills --skill test-hardening

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

  • 0 stars0 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.5 KB, 239 tokens by cl100k_base, as published. Nobody here has run it

Test Hardening

Use this skill to make tests better at catching real regressions. Focus on behavior, risk, and fast feedback.

Workflow

  1. Inspect recent changes, existing tests, fixtures, helpers, and test commands.
  2. Identify the highest-risk behavior: edge cases, error paths, integration boundaries, parsing, persistence, permissions, and user-visible output.
  3. Add the smallest meaningful tests using the repository's existing test style and helper APIs.
  4. Prefer behavior assertions over implementation details.
  5. Keep fixtures local, readable, and reusable only when reuse is real.
  6. Reduce flakiness by controlling time, randomness, network, filesystem state, concurrency, and external services.
  7. Run the focused test command, then a broader related suite when practical.

Checks

  • Tests fail before the fix when a regression is easy to demonstrate.
  • Assertions cover outcome, not incidental structure.
  • Test names describe behavior.
  • New helpers reduce duplication without hiding important setup.
  • Slow or integration tests are clearly marked according to repo convention.

Output

Summarize the risk covered, test files changed, commands run, and any remaining untested behavior.

What ships with it: 2 files

670 B alongside SKILL.md

agents/

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.