Generate test coverage report and analyze results
/plugin marketplace add IvanTorresEdge/molcajete.ai/plugin install ivantorresedge-sol-tech-stacks-solidity@IvanTorresEdge/molcajete.ai# Generate Coverage Report Generate test coverage report and analyze results. Use the Task tool to launch the **tester** agent with the following instructions: 1. Detect project framework using framework-detection skill 2. Generate coverage: - Foundry: `forge coverage` - Hardhat: `npx hardhat coverage` 3. Parse coverage results: - Line coverage - Branch coverage - Function coverage 4. Identify uncovered code sections 5. Report coverage summary with percentage by contract 6. Suggest tests for uncovered critical paths 7. Check if coverage meets goal (>95% line, >90% branch) ...
**Purpose:** Check current test coverage and identify gaps
Generate spec-to-code coverage map showing which code files are covered by which specifications. Creates ASCII diagrams, reverse indexes, and coverage statistics.
Generate spec-to-code coverage map showing which code files are covered by which specifications. Creates ASCII diagrams, reverse indexes, and coverage statistics.
Generate coverage report