test-map

test-map is a skill for Claude Code, Codex from samibs/skillfoundry. It costs 10 tokens per session (2,618 once invoked), scanned A, original, MIT.

A documentation generator that reads a project's test files and creates an HTML or Markdown report explaining what each test checks, why it matters, and how strong the coverage is.

In plain words
What is it for?
It is for documenting test suites, classifying tests by value, reviewing assertions, and reporting coverage for a project or directory.
Why use it?
It turns scattered test code into a report that developers, clients, or auditors can understand and use to find testing gaps.

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

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-map

README.md
[![agentmods](https://agentmods.dev/badge/skills/samibs/skillfoundry/test-map.svg)](https://agentmods.dev/skills/samibs/skillfoundry/test-map)
Your own site
<a href="https://agentmods.dev/skills/samibs/skillfoundry/test-map"><img src="https://agentmods.dev/badge/skills/samibs/skillfoundry/test-map.svg" alt="Measured on agentmods" height="20"></a>
Per session 10 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,618 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.00010 $0.02618
Opus 5 $0.00005 $0.01309
Sonnet 5 $0.00002 $0.00524
Haiku 4.5 $0.00001 $0.00262

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

Security

Grade A, and why

test-map 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.

.agents/skills/test-map/SKILL.md · 257 lines

How it starts

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

/test-map — Test Cases Documentation Generator

Read every test file in the project, classify each test by value tier, and produce a structured HTML deliverable documenting what is tested, why, and how good the coverage actually is.


Usage

/test-map                    Generate full report for current project
/test-map [path]             Generate report for a specific directory
/test-map --format=html      Output as HTML file (default)
/test-map --format=md        Output as Markdown
/test-map --open             Generate HTML and open in browser (if tool available)

Output saved to: docs/test-map-[YYYY-MM-DD].html (or .md)


Instructions

You are the Test Cartographer. You read every test file in the project, understand what each test actually verifies (not just what its name says), classify it by business value tier, and produce a deliverable-grade HTML report that a client, auditor, or engineering lead can read and act on.

This is NOT a static checker. You READ the test bodies. You UNDERSTAND the assertions. You EXPLAIN the value in plain language.


Phase 1: Discovery

Find all test files matching these patterns:

*.spec.ts       *.spec.tsx      *.test.ts       *.test.tsx
*.spec.js       *.test.js
test_*.py       *_test.py
*.Tests.cs      *Tests.cs
*Test.java      *Spec.java
*_test.go

Exclude: node_modules/, dist/, .next/, build/, coverage/, __pycache__/

For each file, record:

  • File path (relative to project root)
  • Number of test cases (it(...), test(...), it.each(...), @Test, def test_)
  • Framework detection (Jest, Vitest, pytest, NUnit, JUnit, Go test)

Phase 2: Classification

Read each test file body. Classify the file's primary tier based on what the tests actually do:

Tier 1 — Business Logic (HIGH VALUE)

A file is Tier 1 if ANY test in it:

  • Asserts conditional rendering or visibility based on input combinations
  • Verifies state transitions (step 1 → step 2, open → closed, disabled → enabled)
  • Tests data transformation rules (format strings, concatenation, filtering logic)
  • Validates business rules (permission checks, validation logic, calculation correctness)
  • Verifies that specific fields are/aren't exposed (information hiding)
  • Tests orchestration: component A calls service B with exact payload shape
  • Tests multi-step flows (open popup → reset form → call API with formatted payload)

Read the full file on GitHub · 257 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. yesterday First seen · 257 lines · 10 tokens per session scan A 9b13f8aa85ea

Subscribe to this mod's changes

test-map is a skill published in the GitHub repository samibs/skillfoundry (12 stars, last pushed today), licensed MIT. It adds 10 tokens to every session and 2,618 once invoked, about $0.0001 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

ring:creating-handoffs

Creating a handoff document that captures session state (completed work, decisions, open items, next steps) and delivering it via Plan Mode so the user gets the native 'clear context and continue implementing' resume option. Use when ending a session, when context grows large, or the user says 'handoff', 'save…

LerianStudio/ring · 93 tokens

incident

Incident response and postmortem generation from git/deploy context. When something breaks in production, this skill builds a timeline, identifies the probable cause, and generates a structured postmortem document. Flags: --since, --service, --sev, --revert, --comms, --dry-run.

greglas75/zuvo · 64 tokens

presentation

Generate PowerPoint (PPTX) presentations from a topic, outline, or content file. Creates professional slides using python-pptx with consistent theming and typography. Modes: [topic] (from scratch), from [file] (from markdown), --slides N, --theme dark|light|corporate, --outline-only, --out [path], --lang [code].

greglas75/zuvo · 80 tokens

clean-code-review

Run a comprehensive Clean Code audit against the codebase — module size, function complexity, long parameter lists, TODO/FIXME markers, commented-out code, duplication (DRY), Boy Scout delta, dead exports, test smells, shell-parity (PS/Bash twins), dep boundaries (cross-package imports), frozen-arrays drift…

srnichols/plan-forge · 92 tokens

code-review

Plan-Forge-tuned comprehensive code review — runs public-surface diff, forge analysis, architecture / security / testing / patterns checks, plus Plan-Forge-specific gates (ACI compliance, dual-shell parity, branch model). Use before merging features or at the end of a phase. With --quorum, dispatches multi-model…

srnichols/plan-forge · 70 tokens

stakeholder-briefing

Generate a per-organisation stakeholder briefing for Plan Forge from the canonical template, optionally drafting the prospect-specific sections from a source directory of customer materials. Use when an internal champion needs to walk a colleague or VP through the decision to adopt Plan Forge.

srnichols/plan-forge · 55 tokens