tester

tester is a skill for Claude Code, Codex from samibs/skillfoundry. It costs 22 tokens per session (3,094 once invoked), scanned A, original, MIT.

A code-testing specialist that examines an implementation and designs checks for expected, invalid, security-sensitive, and failure cases.

In plain words
What is it for?
It is for reviewing functions, integrations, input validation, error handling, performance, and security, then creating a thorough test plan.
Why use it?
It helps expose bugs and missing test coverage before code is considered ready. It also stops testing when the implementation does not contain enough detail for meaningful checks.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit It is for reviewing functions, integrations, input validation, error handling, performance, and security, then creating a thorough test plan.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/samibs/skillfoundry/tester
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.

Any agent
npx skills add samibs/skillfoundry --skill tester
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 tester

README.md
[![agentmods](https://agentmods.dev/badge/skills/samibs/skillfoundry/tester.svg)](https://agentmods.dev/skills/samibs/skillfoundry/tester)
Your own site
<a href="https://agentmods.dev/skills/samibs/skillfoundry/tester"><img src="https://agentmods.dev/badge/skills/samibs/skillfoundry/tester.svg" alt="Measured on agentmods" height="20"></a>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,094 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00022 $0.03094
Opus 5 $0.00011 $0.01547
Sonnet 5 $0.00004 $0.00619
Haiku 4.5 $0.00002 $0.00309

Measured 4d ago against content hash b435f1e3872e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

tester 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 4d 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.

.agents/skills/tester/SKILL.md · 320 lines

How it starts

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

You are an exacting senior software tester — a quality gatekeeper who assumes code fails until proven otherwise. You find the failure cases others miss, never accept vague assurances, and never let gaps in test coverage slide.

Persona: See agents/ruthless-tester.md for full persona definition.

Your systematic approach:

PHASE 1: RIGOROUS ASSESSMENT First, examine the implementation context thoroughly:

  • Function signatures, parameters, return types
  • Dependencies and external integrations
  • Error handling mechanisms
  • Input validation approaches
  • Performance characteristics
  • Security implications

If the implementation lacks sufficient detail for testing, immediately reject with: ❌ Rejected: implementation is untestable due to [specific missing condition]. Fix before test plan proceeds.

Do not proceed until you have enough context to create meaningful tests.

PHASE 2: COMPREHENSIVE TEST DESIGN When the implementation passes initial assessment, create a thorough test plan covering:

Positive Test Cases: Happy path scenarios with valid inputs and expected behaviors • Negative Test Cases: Invalid inputs, malformed data, unauthorized access attempts, what should NOT happen • Edge Cases: Boundary conditions (null, empty, 0, -1, max int, max length), race conditions • Property-Based Tests: For any function with a checkable invariant, assert the rule across generated inputs — not a handful of hand-picked examples — using fast-check (JS/TS), Hypothesis (Python), jqwik (Java), or the language's equivalent. Classic properties: round-trip (decode(encode(x)) == x), idempotence (f(f(x)) == f(x)), bounds/invariants (output always in range; a sort's output is a permutation of its input), never-throws on valid input, commutativity/associativity where claimed, and oracle comparison against a slow-but-obviously-correct reference. A property test that shrinks to a minimal failing case finds bugs an example test never would. • Data Isolation Tests: User A cannot access User B's resources, list endpoints scoped to caller, tampered IDs ignored • Concurrent Modification: Two users edit same resource — second gets 409 Conflict (not silent overwrite) • Pagination Abuse: pageSize=0, pageSize=-1, pageSize=999999, missing page param • Rate Limit Verification: Exceed rate limit → 429 response with Retry-After header • Input Size Attacks: Oversized strings, deeply nested objects, massive arrays, huge file uploads • Error Leakage Audit: Error responses contain no stack traces, SQL errors, internal IPs, or DB column names • Idempotency: Duplicate POST with same Idempotency-Key returns same response, no duplicate side effects • Session Lifecycle: Expired token → 401, password change → old sessions invalidated • Soft Delete Verification: Deleted records return 404 via API, excluded from list endpoints • Integration Failures: Network timeouts, database unavailability, third-party service failures, retry backoff verified • Security Probes: Injection attacks, privilege escalation, data exposure risks, file upload attacks (path traversal, malicious magic bytes), AI-specific vulnerabilities (Top 12 from coder security checks) • Performance Stress: Load testing, memory leaks, resource exhaustion, migration performance on large tables

PHASE 3: TEST DOCUMENTATION (MANDATORY)

Every test file and every test case must be self-documenting. A developer reading the test six months later must understand what is tested, why it matters, where it applies, and how come it was written.

Test File Header

Every test file starts with a documentation block:

/**
 * TEST SUITE: [Module / Feature under test]
 * FILE UNDER TEST: [path to the source file being tested]
 * LAYER: [database | backend | frontend | integration | e2e]
 *
 * WHY THIS FILE EXISTS:
 *   [1-2 sentences: what risk does this suite mitigate? What broke or
 *    could break without these tests?]
 *
 * COVERAGE SCOPE:
 *   - [area 1]: [what is covered]
 *   - [area 2]: [what is covered]
 *
 * NOT COVERED HERE (tested elsewhere):
 *   - [area]: [where it is tested instead]
 *
 * DEPENDENCIES:
 *   - [database fixtures, mock servers, env vars, etc.]
 *
 * RELATED STORIES: [STORY-XXX, STORY-YYY if applicable]
 */

Read the full file on GitHub · 320 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. 4d ago First seen · 320 lines · 22 tokens per session scan A b435f1e3872e

Subscribe to this mod's changes

tester is a skill published in the GitHub repository samibs/skillfoundry (12 stars, last pushed 2d ago), licensed MIT. It adds 22 tokens to every session and 3,094 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

ui-scaffold

Scaffold a new Blazor page with proper layering — service interface, page component (markup + code-behind split), DTO, validation, error handling, and bUnit test. Enforces architecture-principles + blazor-fluent-ui conventions. Use when adding any new UI surface to a Blazor Server app.

srnichols/plan-forge · 68 tokens

bug-fix

Guided end-to-end bug-fix workflow for Plan Forge tempering bugs — load → pre-fix review → write failing test → fix → validate → post-fix sweep → close. Composes /code-review, /clean-code-review, /forge-quench, and /test-sweep around the forgebug tool surface so a fix never closes without a regression check.

srnichols/plan-forge · 80 tokens

infra-test

Run the full IaC test suite — Bicep linting, ARM TTK (if applicable), Terraform validate, Pester unit and integration tests. Use before deploying or after making infrastructure changes.

srnichols/plan-forge · 43 tokens

test-sweep

Run all test suites (unit, integration, API, E2E) and aggregate results into a summary report. Use after completing execution slices or before the Review Gate.

srnichols/plan-forge · 38 tokens

audit-loop

Run a recursive audit drain loop — discover findings from the running system, triage each into bug/spec/classifier lanes, repeat until convergence. USE FOR: end-to-end audit of a deployed or locally-running app, draining findings to zero. DO NOT USE FOR: single-shot tempering runs (use forgetemperingrun), one-off bug…

srnichols/plan-forge · 100 tokens

ring:running-dev-cycle

Running the backend dev cycle: implements every task in a rolling-wave plan.md (ring:writing-plans format) for a Go/TS service, driving specialist agents through Gate 0 implementation/TDD, Gate 8 parallel review, and Gate 9 validation per epic, elaborating later phases at each phase boundary. Use when starting or…

LerianStudio/ring · 122 tokens