coverage-analyzer
✓Automatically analyze test coverage when user asks which code is tested, mentions coverage gaps, or shows code asking about testing. Identifies untested code paths and suggests test additions. Invoke when user asks "what's not tested?", "coverage", "untested code", or "which tests are missing?".
Installation
SKILL.md
Knowing what's tested gives confidence to refactor and prevents regressions.
public function handleError($error) { // Line 45: No test coverage if ($error instanceof ValidationException) { return $this->formatValidationError($error); } // Line 49: No test coverage if ($error instanceof DatabaseException) { return $this->formatDatabaseError($error); } // Line 53: Tested return $this->formatGenericError($error); }
public function testHandleValidationException(): void { $exception = new ValidationException('Invalid input'); $result = $this->processor->handleError($exception); $this->assertStringContains('validation error', $result); }
Automatically analyze test coverage when user asks which code is tested, mentions coverage gaps, or shows code asking about testing. Identifies untested code paths and suggests test additions. Invoke when user asks "what's not tested?", "coverage", "untested code", or "which tests are missing?". Source: kanopi/cms-cultivator.
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/kanopi/cms-cultivator --skill coverage-analyzer- Source
- kanopi/cms-cultivator
- Category
- </>Dev Tools
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is coverage-analyzer?
Automatically analyze test coverage when user asks which code is tested, mentions coverage gaps, or shows code asking about testing. Identifies untested code paths and suggests test additions. Invoke when user asks "what's not tested?", "coverage", "untested code", or "which tests are missing?". Source: kanopi/cms-cultivator.
How do I install coverage-analyzer?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/kanopi/cms-cultivator --skill coverage-analyzer Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/kanopi/cms-cultivator
Details
- Category
- </>Dev Tools
- Source
- skills.sh
- First Seen
- 2026-02-01