test-check

test-check is a skill for Claude Code from faizkhairi/claude-code-blueprint. It costs 49 tokens per session (548 once invoked), scanned A, original, MIT.

A testing workflow for software projects. It finds the project’s test command, runs the full suite, and reviews the results against any documented baseline.

In plain words
What is it for?
Running tests after features or fixes, reporting passed and failed tests, analyzing failures, and identifying coverage gaps.
Why use it?
It gives developers a consistent way to check whether changes work and to investigate missing tests or unexpected test-count changes.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: mentions CLAUDE.md.

Good fit Running tests after features or fixes, reporting passed and failed tests, analyzing failures, and identifying coverage gaps.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/faizkhairi/claude-code-blueprint/test-check
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 faizkhairi/claude-code-blueprint --skill test-check
Clone the repo
git clone --depth 1 https://github.com/faizkhairi/claude-code-blueprint

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/faizkhairi/claude-code-blueprint/test-check.svg)](https://agentmods.dev/skills/faizkhairi/claude-code-blueprint/test-check)
Your own site
<a href="https://agentmods.dev/skills/faizkhairi/claude-code-blueprint/test-check"><img src="https://agentmods.dev/badge/skills/faizkhairi/claude-code-blueprint/test-check.svg" alt="Measured on agentmods" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 548 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 11
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
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.00049 $0.00548
Opus 5 $0.00024 $0.00274
Sonnet 5 $0.00010 $0.00110
Haiku 4.5 $0.00005 $0.00055

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

Security

Grade A, and why

test-check 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 8d 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.

skills/test-check/SKILL.md · 33 lines

What it actually says

Run the full test suite and provide analysis:

  1. Detect active project from current working directory or recent context:
    • Check CLAUDE.md or the project manifest (package.json, pyproject.toml, Gemfile, pom.xml, etc.) for the test command
    • Common patterns: yarn test:unit/npm test/npx vitest run (JS), pytest (Python), bundle exec rspec (Ruby), go test ./... (Go), mvn test (Java), cargo test (Rust), dotnet test (.NET)
    • Default (no context): ask which project
  2. Run the appropriate test command and capture output
  3. Report summary: total tests, passed, failed, skipped, duration
  4. If failures exist: analyze root cause of each failing test
  5. Compare against known baselines:
    • Check CLAUDE.md for the documented test baseline count for the active project
    • If no baseline is documented: parse the test summary output line for total count; compare against previous runs if agent memory has a baseline
    • If actual count is higher than baseline, the test suite grew; if lower, investigate missing tests
  6. Check if recently modified files have corresponding tests
  7. Identify test coverage gaps for critical paths
  8. Suggest new tests if coverage is insufficient
  9. E2E tests (run if user says "e2e", "all", or "full"):
    • Check CLAUDE.md for the dev server port and E2E test command
    • Check if dev server is running on that port before proceeding
    • Run E2E test command from CLAUDE.md (e.g., yarn test:e2e or npm run test:e2e, or the project's E2E command)
    • E2E baselines: documented in CLAUDE.md
    • Parse the E2E runner's output (Playwright, Cypress, Selenium, Capybara, etc.): passed/failed/skipped counts
    • On failure: note which spec file and test name failed
    • If dev server is NOT running, report and skip (do NOT auto-start)

Present results in a clear dashboard format.

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. 8d ago First seen · 33 lines · 49 tokens per session scan A 61cc90c1f5f8

Subscribe to this mod's changes

test-check is a skill published in the GitHub repository faizkhairi/claude-code-blueprint (70 stars, last pushed 26d ago), licensed MIT. It adds 49 tokens to every session and 548 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-08-30.

Related

Other skills, from other repositories

screen-reader-testing

Test web applications with screen readers including VoiceOver, NVDA, and JAWS. Use when validating screen reader compatibility, debugging accessibility issues, or ensuring assistive technology support.

wshobson/agents · 39 tokens

web3-testing

Test smart contracts comprehensively using Hardhat and Foundry with unit tests, integration tests, and mainnet forking. Use when testing Solidity contracts, setting up blockchain test suites, or validating DeFi protocols.

wshobson/agents · 46 tokens

temporal-python-testing

Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures.

wshobson/agents · 45 tokens

data-quality-frameworks

Implement data quality validation with Great Expectations, dbt tests, and data contracts. Use when building data quality pipelines, implementing validation rules, or establishing data contracts.

wshobson/agents · 37 tokens

e2e-testing-patterns

Master end-to-end testing with Playwright and Cypress to build reliable test suites that catch bugs, improve confidence, and enable fast deployment. Use when implementing E2E tests, debugging flaky tests, or establishing testing standards.

wshobson/agents · 51 tokens

dbt-transformation-patterns

Master dbt (data build tool) for analytics engineering with model organization, testing, documentation, and incremental strategies. Use when building data transformations, creating data models, or implementing analytics engineering best practices.

wshobson/agents · 47 tokens