code-generate-tests

Installation
SKILL.md

Generate tests for untested functions and edge cases, then verify they pass.

Process

  1. Identify context:

    • If code changes are involved: run jj diff -s first to see changed files; then use jj diff -- path to restrict to specific files/directories
    • If the user specified specific files or paths, focus on those
    • Understand which functions/modules need test coverage
  2. Detect test framework:

    • Invoke code-analyze-project skill to detect test framework and testing patterns
    • Check for existing test files and naming conventions
    • Identify test helper functions and fixtures in use
  3. Identify untested code paths:

    • Use Grep to find functions without corresponding tests
    • Check for edge cases, error paths, boundary conditions
    • Identify critical paths that lack coverage
Installs
7
Repository
sirn/dotfiles
GitHub Stars
8
First Seen
Mar 3, 2026
code-generate-tests — sirn/dotfiles