Test Generation

A testing skill for creating and maintaining Jest tests in a TypeScript command-line project. Jest is a tool that runs code tests, while ts-jest lets it run TypeScript tests.

In plain words
What is it for?
Use it to write service, utility, integration, gateway, and regression tests, and to run them with optional coverage reports.
Why use it?
It helps check new code, bug fixes, command-line features, and service behavior for regressions.

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/vinilana/dotcontext/test-generation
Any agent
npx skills add vinilana/dotcontext --skill test-generation
Clone the repo
git clone --depth 1 https://github.com/vinilana/dotcontext

Made for: Claude Code, Codex.

Per session 9 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,711 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.00009 $0.01711
Opus 5 $0.00005 $0.00856
Sonnet 5 $0.00002 $0.00342
Haiku 4.5 $0.00001 $0.00171

Measured 3d ago against content hash 34fa23285aa7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

Test Generation 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 3d ago.

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.

.context/skills/test-generation/SKILL.md · 248 lines

How it starts

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

Test Generation

Generate and maintain tests for the @dotcontext/cli project using Jest with ts-jest.

When to Use

  • Writing tests for new services, generators, or utilities
  • Adding test coverage for MCP gateway handlers
  • Creating integration tests for CLI commands
  • Validating bug fixes with regression tests
  • During Execution (E) and Validation (V) phases

Test Configuration

  • Framework: Jest with ts-jest preset
  • Config: jest.config.js at project root
  • Test location: Co-located with source files (*.test.ts) or in __tests__/ directories
  • Test match patterns: **/__tests__/**/*.ts, **/?(*.)+(spec|test).ts
  • Root: src/
# Run all tests
npm test

# Run specific test file
npx jest src/services/mcp/mcpServer.test.ts

# Run tests matching a pattern
npx jest --testPathPattern="mcp"

# Run with coverage
npx jest --coverage

Test Patterns by Layer

Service Tests

Services are the most common test target. Follow the pattern in current service and MCP tests:

import * as os from 'os';
import * as path from 'path';
import * as fs from 'fs-extra';
import { MyService } from './myService';
import type { CLIInterface } from '../../utils/cliUI';
import type { TranslateFn } from '../../utils/i18n';

// Create temp directory for isolation
let tempDir: string;

beforeEach(async () => {
  tempDir = await fs.mkdtemp(path.join(os.tmpdir(), 'test-'));
});

afterEach(async () => {
  await fs.remove(tempDir);
});

// Mock CLI interface
function createMockUI(): CLIInterface {
  return {
    displayWelcome: jest.fn(),
    displayProjectInfo: jest.fn(),
    displayStep: jest.fn(),
    displaySuccess: jest.fn(),
    displayWarning: jest.fn(),
    displayError: jest.fn(),
    // ... other CLIInterface methods
  };
}

// Mock translate function
const mockT: TranslateFn = ((key: string) => key) as TranslateFn;

Key patterns:

  • Temp directories: Always use fs.mkdtemp() and clean up in afterEach
  • Mock CLIInterface: Provide a mock with jest.fn() for each method
  • Mock TranslateFn: Simple passthrough (key) => key
  • Mock tool or gateway boundaries: Use jest.mock() at module level for filesystem, prompt loaders, or MCP helpers

Read the full file on GitHub · 248 lines

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. 3d ago First seen · 248 lines · 9 tokens per session scan A 34fa23285aa7

Subscribe to this mod's changes

Test Generation is a skill published in the GitHub repository vinilana/dotcontext (561 stars, last pushed 1mo ago), licensed MIT. It adds 9 tokens to every session and 1,711 once invoked, about $0.0000 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-08-30.