test-generator

Installation
SKILL.md

Test Generator

Generate well-structured, maintainable test suites that provide confidence in code correctness. Follow the test pyramid approach: many unit tests, fewer integration tests, minimal E2E tests.

Test Generation Workflow

Step 1: Analyze the Code Under Test

  1. Read the source file(s) to understand functionality.
  2. Identify all public functions, methods, and exported interfaces.
  3. Map code paths — branches, loops, error handlers, early returns.
  4. Identify external dependencies — APIs, databases, file system, third-party services.
  5. Note any existing tests to avoid duplication and maintain consistency.

Step 2: Identify Test Cases

For each function or method, identify:

Happy Path Cases

Related skills

More from kaakati/sdh-claude-skills

Installs
1
GitHub Stars
1
First Seen
2 days ago