test-all

test-all is a skill for Claude Code from justnau1020/claude-os. It costs 29 tokens per session (381 once invoked), scanned A, original, Apache-2.0.

A local version of the continuous integration, or CI, checks that run before code is accepted. It runs linting, type checking, and the test suite in the project's CI order.

In plain words
What is it for?
Use it before committing or deploying code. It reports the result of each check and includes file paths and line numbers for failures.
Why use it?
It finds style problems, type errors, and broken tests before a commit or deployment reaches the shared pipeline.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it before committing or deploying code. It reports the result of each check and includes file paths and line numbers for failures.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/justnau1020/claude-os/test-all/github.svg)](https://agentmods.dev/skills/justnau1020/claude-os/test-all)
Your own site
<a href="https://agentmods.dev/skills/justnau1020/claude-os/test-all"><img src="https://agentmods.dev/badge/skills/justnau1020/claude-os/test-all/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for test-all

Your own site · 80×15
<a href="https://agentmods.dev/skills/justnau1020/claude-os/test-all"><img src="https://agentmods.dev/badge/skills/justnau1020/claude-os/test-all.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 381 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.
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.00029 $0.00381
Opus 5 $0.00015 $0.00191
Sonnet 5 $0.00006 $0.00076
Haiku 4.5 $0.00003 $0.00038

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

Security

Grade A, and why

test-all 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 10d 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/development/test-all/SKILL.md · 67 lines

What it actually says

Run Full CI Pipeline

Run the complete CI pipeline locally in the same order as CI/CD.

Pipeline Steps (run in order, stop on first failure)

1. Lint

Run the project's linter. Examples:

# Python
ruff check {source_dir}/ tests/

# JavaScript/TypeScript
npx eslint src/

If there are auto-fixable issues, report them but do NOT auto-fix unless asked. Show the exact errors.

2. Type check

Run the project's type checker. Examples:

# Python
mypy {source_dir}/ --ignore-missing-imports

# TypeScript
npx tsc --noEmit

Report any type errors with file paths and line numbers.

3. Run test suite

# Python
pytest tests/ -v --tb=short

# JavaScript/TypeScript
npm test

If $ARGUMENTS is provided, pass it as additional arguments:

pytest tests/ -v --tb=short $ARGUMENTS

Reporting

After all steps complete, provide a summary:

CI Pipeline Results:
  Lint:  PASS/FAIL (N issues)
  Types: PASS/FAIL (N errors)
  Tests: PASS/FAIL (N passed, N failed, N skipped)

If any step fails, explain what failed and suggest specific fixes. Include file paths and line numbers for all failures.

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. 10d ago First seen · 67 lines · 29 tokens per session scan A f8d91481bb25

Subscribe to this mod's changes

test-all is a skill published in the GitHub repository justnau1020/claude-os (3 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 29 tokens to every session and 381 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-08-31.

Related

Other skills, from other repositories

dsh-ci-test-reliability

Design, review, and diagnose DeepSeek Harness tests and fixtures that can fail nondeterministically under CI concurrency, shared host resources, clocks, process-global state, subprocesses, network listeners, or asynchronous teardown. Use when adding or changing tests with those risks, investigating flaky CI, or…

SparkElf/deepseek-harness-plus · 83 tokens

github-actions-gen

A guide for creating or updating GitHub Actions workflows, which are automated jobs that test, build, release, or deploy code. It first examines the real project before choosing commands, runtimes, caches, and permissions.

laolaoshiren/claude-code-skills-zh · 57 tokens

playwright-testing

E2E testing with Playwright - Page Objects, cross-browser, CI/CD.

alinaqi/maggy · 20 tokens

api-tester

A tool for creating and checking API tests from the real API contract and implementation. An API is the agreed way that software sends requests and receives responses.

laolaoshiren/claude-code-skills-zh · 86 tokens

test-generator

A test-writing helper that creates unit or integration tests from the code's actual behavior and contracts. Unit tests check small pieces of code, while integration tests check how real components work together.

laolaoshiren/claude-code-skills-zh · 79 tokens

smoke-test

Launch the app and hands-on verify that it works by interacting with it. Falls back to an existing integration test suite when there is no interactive surface in scope. Use when the user asks to "smoke test", "test it manually", "verify it works", "try it out", "run a smoke test", "check it in the browser", or "does…

tobihagemann/turbo · 88 tokens