| name | boost-coverage |
| description | Raise coverage: find the real coverage command, select under-covered files, add behavior-focused tests, iterate to target or blocker. Use `audit-tests` for full-suite cleanup; use `prune-new-tests` to prune speculative tests in the current uncommitted diff. |
boost-coverage
Increase coverage with small, reviewable iterations.
Default behavior is:
- discover the real coverage contract first
- improve one eligible file per iteration
- stop only when further improvement no longer looks worthwhile or a real blocker prevents trustworthy progress
Defaults
- Use the repo-defined threshold from CI, coverage config, or
DECISIONS.md.
- Treat the threshold as the minimum floor, not an automatic stop, when this skill is explicitly invoked.
- If the user names a target file, use it for the next iteration after validating eligibility.
- Otherwise choose the eligible file with the lowest trustworthy line coverage.
- Prefer test-only changes. Allow only small behavior-preserving seams when they are required for testability.
Inputs
Accept any combination of:
- a target file
- a coverage domain or component
- an iteration cap
- a verification depth preference
- whether approved command discoveries should be persisted to
COMMANDS.md
Required artifact
Write the report to:
.agent-layer/tmp/boost-coverage.<run-id>.report.md
Use run-id = YYYYMMDD-HHMMSS-<short-rand>.
Create the file with touch before writing.
Multi-agent pattern
Recommended roles:
Coverage scout: identifies domains, commands, and threshold sources.
Coverage runner: produces the current per-file coverage view.
Target selector: chooses the next eligible file.
Test designer: derives meaningful cases and edge conditions.
Implementer: adds or updates tests.
Verifier: re-runs coverage and confirms improvement.
Global constraints
- Do not guess coverage commands, thresholds, or domain boundaries.
- Do not change production behavior to inflate coverage.
- Do not add tautological or self-confirming tests to reach a coverage target;
stop at the real shortfall instead.
- Do not add runtime tests for constraints already enforced by a language,
compiler, type checker, schema, or static analyzer; coverage should come from
behavior, logic, integration, or runtime failure modes.
- Keep each iteration focused on one target file unless the repo's test runner forces a broader command.
- Keep tests deterministic and aligned with repo conventions.
Human checkpoints
- Required: ask when the coverage command set or domain model is ambiguous enough that the results would be untrustworthy.
- Required: ask when no threshold is documented.
- Required: ask before installing missing tooling.
- When a checkpoint involves a genuine tradeoff between substantive alternatives, present at least two options with brief pros and cons, state which you recommend and why, and let the human decide.
- Stay autonomous for normal test-writing and re-run iterations once the coverage contract is clear.
Coverage workflow
Phase 0: Preflight (Coverage scout)
- Confirm baseline repo state with
git status --porcelain.
- Read
COMMANDS.md before choosing any coverage or verification command.
- Read
DECISIONS.md only if the threshold is not already obvious from coverage tooling or CI configuration.
Phase 1: Discover the coverage contract (Coverage scout)
- Identify:
- repo or component coverage commands
- working directories
- output format or stable textual source
- exclusions that affect file eligibility
- Classify confidence:
high: commands and scope are explicit
medium: plausible but incomplete mapping
low: no trustworthy contract
- Proceed autonomously only on
high.
Phase 2: Resolve blockers before execution (Coverage scout)
Stop and ask when any of these are true:
- confidence is
medium or low
- the threshold is missing
- required tooling is missing
When asking, provide:
- the proposed commands
- the domain scope
- the missing threshold or tooling detail
- the smallest decision the human needs to make
Phase 3: Build the current coverage table (Coverage runner)
- Run the documented coverage command.
- Normalize the result into:
- domain
- file
- line coverage percent
- optional lines total or missed lines
- Exclude obvious noise:
- tests
- fixtures
- generated code
- mocks
- thin entrypoints with no real logic
Phase 4: Choose the next target (Target selector)
- Validate a user-supplied target when present.
- Otherwise select the eligible file with the lowest trustworthy coverage.
- Record:
- why the file is eligible
- coverage before
- why it was selected over nearby candidates
Phase 5: Design and implement tests (Test designer + Implementer)
Cover:
- primary behavior
- guard clauses
- error paths
- branch-heavy logic
- important boundary cases
If better testability needs a seam:
- keep it small
- preserve behavior
- escalate first if it stops being obviously mechanical
Phase 6: Verify improvement (Verifier)
- Re-run the smallest credible coverage command that proves improvement.
- Confirm:
- the target file improved
- the repo or domain moved toward the threshold
- Refresh the coverage table before deciding the next iteration.
Phase 7: Iterate or stop (Coverage scout)
Continue only when:
- the next target still looks meaningful
- the last iteration improved coverage
- eligible files remain
If the repo is still below threshold, keep going until the threshold is met or blocked.
If the repo is already above threshold, keep going while meaningful improvements remain or until the user-imposed iteration cap is reached.
Otherwise stop and report the real blocker or diminishing-return reason.
Required report structure
Write .agent-layer/tmp/boost-coverage.<run-id>.report.md with:
# Coverage Summary
## Threshold and Commands
## Iterations
## Coverage Before and After
## Remaining Blockers or Diminishing Returns
Guardrails
- Do not pad coverage with trivial tests that add little behavioral confidence.
- Do not keep iterating when coverage is no longer improving.
- Do not silently swap to a weaker coverage command.
- Do not claim threshold success without the observed command output.
Definition of done
- The report exists at
.agent-layer/tmp/boost-coverage.<run-id>.report.md with the required sections (Summary, Threshold and Commands, Iterations, Coverage Before and After, Remaining Blockers or Diminishing Returns).
- The documented coverage command was run at least once per iteration, and the report cites observed command output for each before/after number.
- The run stopped for one of the named reasons: threshold met, diminishing returns, iteration cap, or a documented human-checkpoint blocker; no implicit stops.
- No production behavior was changed to move the coverage number; any added seams are explicit in the report.
Final handoff
After writing the report:
- Echo the report path.
- Summarize the threshold used, commands run, and files improved per iteration.
- Call out coverage before and after, plus any blocked decision or shortfall that prevented reaching the threshold.