fallow-rs/fallow · Archived

coverage-loop

Iteratively improve Fallow Rust test coverage with cargo-llvm-cov, prioritizing meaningful untested behavior and preserving runtime correctness.

First seen Aug 8, 2026

Installation

$ npx skills add fallow-rs/fallow --skill coverage-loop

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from fallow-rs/fallow · top by installs.

npx skills add fallow-rs/fallow

Browse all from fallow-rs/fallow

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Also listed on

Alternate registries and mirrors of this skill.

Repository health

Stars 4.4K
License LICENSE
Default branch main
Open issues 7
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 719 B
  • docs SUMMARY.md 165 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 4 installs

SKILL.md

Coverage loop

  1. Capture a coverage baseline with the repository-supported command.
  2. Select uncovered behavior by risk, not by easiest lines.
  3. Add behavior-focused tests that survive refactors.
  4. Re-run targeted tests and the same coverage command.
  5. Keep only tests that improve meaningful coverage or lock a real invariant.
  6. Repeat until the selected risk area is covered or remaining gaps require a

separate design change.

  1. Run review.

Do not add assertions that merely execute code without checking behavior.