test-generator

test-generator is a skill for Claude Code, Codex from codebygarv/Ai-skills. It costs 41 tokens per session (509 once invoked), scanned A, original, MIT.

A generator of unit, integration, and component tests based on how code behaves and what it must do. Unit tests check small pieces, integration tests check parts working together, and component tests check UI components.

In plain words
What is it for?
Use it to create tests for functions, modules, UI components, dependencies, invalid inputs, boundary values, and error paths.
Why use it?
It adds tests that verify normal results, edge cases, and failures instead of merely increasing a coverage percentage. It can also protect existing behavior before a refactor.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/codebygarv/ai-skills/test-generator
Any agent
npx skills add codebygarv/Ai-skills --skill test-generator
Clone the repo
git clone --depth 1 https://github.com/codebygarv/Ai-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for test-generator

README.md
[![agentmods](https://agentmods.dev/badge/skills/codebygarv/ai-skills/test-generator.svg)](https://agentmods.dev/skills/codebygarv/ai-skills/test-generator)
Your own site
<a href="https://agentmods.dev/skills/codebygarv/ai-skills/test-generator"><img src="https://agentmods.dev/badge/skills/codebygarv/ai-skills/test-generator.svg" alt="Measured on agentmods" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 509 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00041 $0.00509
Opus 5 $0.00020 $0.00254
Sonnet 5 $0.00008 $0.00102
Haiku 4.5 $0.00004 $0.00051

Measured yesterday against content hash d978768a5b66, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

test-generator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/testing/test-generator/SKILL.md · 37 lines

How it starts

The opening of the file, as written. The whole thing — 37 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Purpose

Generate tests that actually verify behavior — correctness under normal input, boundary conditions, and failure modes — rather than tests that exist only to move a coverage percentage.

When to Use

  • Code has no tests, or existing tests don't cover the behavior that matters.
  • Before refactoring, to lock in current behavior first.
  • The user asks for tests for a specific function/module/component.

What to Analyze / Do

  1. Understand actual behavior — read the implementation (not just the function name/docstring) to know what it really does, including edge cases it may or may not handle.
  2. Cover the happy path — normal, expected input produces the expected output.
  3. Cover boundary conditions — empty input, zero, single-element, max-size, exactly-at-a-threshold.
  4. Cover failure modes — invalid input, missing dependencies/data, error paths — verify the function fails the way it's supposed to (throws, returns an error value, etc.), not just that it doesn't crash unpredictably.
  5. Cover integration points if relevant — mocked dependencies behave as expected, and the unit under test handles both success and failure responses from them.
  6. One behavior per test — each test should have a clear, singular reason to fail; avoid mega-tests asserting many unrelated things.

Output Format

  • Tests in the project's actual testing framework/convention (ask or infer from existing test files — don't assume Jest if the project uses Vitest, etc.).
  • Descriptive test names that state the behavior being verified ("returns empty array when input is empty," not "test 1").
  • Grouped logically (describe blocks or equivalent) by function/scenario.
  • A brief note on what's intentionally not covered and why, if anything significant was left out (e.g. requires a live network call, out of scope for unit tests).

Avoid

  • Writing tests that just re-assert the implementation's own logic back at it (a test that would still pass if a bug were introduced isn't testing anything).
  • Testing implementation details that aren't part of the actual contract (internal variable names, private helper call counts) instead of observable behavior.
  • Generating tests purely to inflate a coverage number without verifying real behavior.

Read the full file on GitHub · 37 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 37 lines · 41 tokens per session scan A d978768a5b66

Subscribe to this mod's changes

test-generator is a skill published in the GitHub repository codebygarv/Ai-skills (24 stars, last pushed 16d ago), licensed MIT. It adds 41 tokens to every session and 509 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

unit-test

Use when the user asks for unit tests (e.g, "单元测试", "unit test"), wants to add/fix Go tests, wants table-driven and subtest organization, or wants to enforce a minimum coverage gate (default 80% for logic packages). Prioritize bug discovery (especially boundary, mapping loss, and concurrency defects) over test volume.…

johnqtcg/awesome-skills · 100 tokens

fuzzing-test

Generate Go fuzz tests (Go 1.18+ testing.F) for specified code when users ask for fuzzing/模糊测试/fuzz test generation, parser robustness, round-trip, or differential fuzzing. Always run an applicability gate first; if the target is not suitable, explain concrete reasons and stop without writing fuzz test code.

johnqtcg/awesome-skills · 74 tokens

bun-api

Bun runtime API reference for TypeScript scripts. Covers Bun.file(), Bun.write(), Bun.$() shell, Bun.spawn(), Bun.Glob, Bun.env, bun:sqlite, Bun.sql() for PostgreSQL/MySQL via DATABASEURL, Bun.s3 for S3-compatible storage, Bun.redis for Redis/Valkey, Bun.Archive for tarballs, Bun.Image image processing, Bun.WebView…

dmythro/agent-skills · 229 tokens

bun-cli

Bun CLI reference for package management, script running, testing, bundling, and compilation. Covers bun install/add/remove/update, bun run, bun test, bun build, bunx, bun patch, bun audit fix, bun dedupe, bun prune, bun why, bun pm, bun repl, bunfig.toml, bun.lock, workspace catalogs, isolated installs and the global…

dmythro/agent-skills · 159 tokens

deps-upgrade

Validate JavaScript/TypeScript dependency upgrades after an interactive or manual update. Establish the real delta from git, detect peer/engine/type conflicts, extract breaking changes, migrations and adoptable features from release notes, assess held-back or seemingly unused packages, and run verification gates.…

dmythro/agent-skills · 134 tokens

git-pr

PR and MR workflows for GitHub (gh) and GitLab (glab). Creation, review comment handling, thread resolution, review state queries, merging, cost-aware bot review rounds (GitHub: Copilot, CodeRabbit), and Copilot code review configuration (rulesets, custom instructions, billing). Use when creating PRs/MRs, addressing…

dmythro/agent-skills · 138 tokens