AI-Agents-Orchestrator: Skill for Claude Code

.agents/skills/run-tests/SKILL.md

run-tests is a skill for Claude Code, Codex from hoangsonww/AI-Agents-Orchestrator. It costs 34 tokens per session (231 once invoked), scanned A, original, MIT.

A project test-running workflow with optional filters for test markers or individual files. A test suite is the collection of automated checks that verify code behaves as expected.

In plain words
What is it for?
Use it to verify code changes, run unit, integration, slow, security, or agent-team tests, run one test file, or diagnose failing tests.
Why use it?
It provides a repeatable way to run relevant checks and report passed tests, failures, errors, and likely causes. Filtering avoids running unrelated categories when a narrower check is enough.

Skill for Claude CodeCodex

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

This is hoangsonww/AI-Agents-Orchestrator's own configuration. It tells Claude Code and Codex how to work on AI-Agents-Orchestrator itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything AI-Agents-Orchestrator configures →

Reuse

Borrowing it

Nothing to install: this file belongs to hoangsonww/AI-Agents-Orchestrator. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/hoangsonww/AI-Agents-Orchestrator/main/.agents/skills/run-tests/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/hoangsonww/AI-Agents-Orchestrator

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 run-tests

README.md
[![agentmods](https://agentmods.dev/badge/skills/hoangsonww/ai-agents-orchestrator/run-tests/github.svg)](https://agentmods.dev/skills/hoangsonww/ai-agents-orchestrator/run-tests)
Your own site
<a href="https://agentmods.dev/skills/hoangsonww/ai-agents-orchestrator/run-tests"><img src="https://agentmods.dev/badge/skills/hoangsonww/ai-agents-orchestrator/run-tests/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 run-tests

Your own site · 80×15
<a href="https://agentmods.dev/skills/hoangsonww/ai-agents-orchestrator/run-tests"><img src="https://agentmods.dev/badge/skills/hoangsonww/ai-agents-orchestrator/run-tests.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 231 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.00034 $0.00231
Opus 5 $0.00017 $0.00115
Sonnet 5 $0.00007 $0.00046
Haiku 4.5 $0.00003 $0.00023

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

Security

Grade A, and why

run-tests 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/run_tests.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/run-tests/SKILL.md · 29 lines

What it actually says

Run the test suite for the AI Coding Tools Orchestrator.

Default (unit tests only)

python -m pytest tests/ --override-ini="addopts=" -q --timeout=30 -m "not integration and not slow"

By marker

If the user specifies a marker (unit, integration, slow, security, agentic_team):

python -m pytest tests/ --override-ini="addopts=" -q --timeout=30 -m "<marker>"

By file

If the user specifies a test file:

python -m pytest tests/test_<name>.py --override-ini="addopts=" -q --timeout=30

After running

  1. Report: total passed, failed, errors
  2. For each failure: test name, error message, likely root cause
  3. If all pass, confirm with the count
Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 29 lines · 34 tokens per session scan A 20e2c9cfe34a

Subscribe to this mod's changes

run-tests is a skill published in the GitHub repository hoangsonww/AI-Agents-Orchestrator (84 stars, last pushed 3d ago), licensed MIT. It adds 34 tokens to every session and 231 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

character-animation-qa

Review local character animation with schema checks, Playwright browser previews, frame sampling, and FFmpeg/ffprobe final output checks.

calesthio/OpenMontage · 31 tokens

terraform-test

WORKFLOW SKILL — Write and run Terraform tests (.tftest.hcl). WHEN: "create terraform test", "write tftest", ".tftest.hcl", "mock provider", "test module", "test assertion". USE FOR: test files, run blocks, assertions, mock providers, plan-mode unit tests, apply-mode integration tests, test troubleshooting. DO NOT USE…

jonathan-vella/apex-accelerator · 101 tokens

test-driven-development

Drives .NET/C# development with tests — RED/GREEN/REFACTOR with xUnit (v2 or v3) or MSTest, the Prove-It Pattern for bug fixes, the test pyramid with WebApplicationFactory for integration and Playwright/Avalonia.Headless for E2E. Supports both VSTest and Microsoft.Testing.Platform (MTP) runners. Use when implementing…

peterblazejewicz/claude-plugins · 103 tokens

kane-cli

Browser automation + AI test authoring via kane-cli - run browser objectives, generate & refine test scenarios/cases from a description, design requirement-linked test suites from a PRD/spec (assurance), parse NDJSON output, inspect logs, save runnable test.md. Use for any task requiring a real browser (navigate…

LambdaTest/kane-cli · 159 tokens

integration-testing-dotnet

Tests .NET/C# systems at their integration boundaries — HTTP APIs with WebApplicationFactory , EF Core against real databases via Testcontainers (PostgreSQL, SQL Server, Redis), Blazor/Razor Pages in real browsers via Microsoft.Playwright, Avalonia UI via Avalonia.Headless.XUnit. Works with xUnit v2/v3 on VSTest or…

peterblazejewicz/claude-plugins · 113 tokens

testing

Testing conventions and patterns. Use when writing or modifying tests, creating mocks, or using object mothers.

CodelyTV/agentic_programming-course · 22 tokens