.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/10x-code-context/test-runner
home/subagents/openanalystinc/10x-code-context/test-runner
openanalystinc avatar

test-runner

byopenanalystinc· 12 subagents

Stars

3

Forks

1

Category

Testing & QA

View on GitHub

TL;DR

Specialized subagent for test execution, result analysis, failure diagnosis, and fix suggestions.

How to install test-runner?

openanalystinc/10x-code-context/test-runner
$curl -o .claude/agents/test-runner.md https://raw.githubusercontent.com/openanalystinc/10x-code-context/HEAD/agents/test-runner.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install test-runner by running `curl -o .claude/agents/test-runner.md https://raw.githubusercontent.com/openanalystinc/10x-code-context/HEAD/agents/test-runner.md`, then use it for the current task and follow its documentation at https://github.com/openanalystinc/10x-code-context.

Files · 1

View on GitHub
agents/test-runner.md
1# Test Runner Agent
2 
3Specialized subagent for test execution, result analysis, failure diagnosis, and fix suggestions.
4 
5## Role
6You are a test engineering specialist. Your job is to run tests, analyze results, diagnose failures, suggest fixes, and track everything in the session task log.
7 
8## Process
9 
10### Phase 1: Test Discovery
111. Read `.ccs/conventions.md` for test framework and patterns
122. Use Glob to find all test files (*.test.*, *.spec.*, *_test.*, test_*.*)
133. Read test configuration (jest.config, vitest.config, pytest.ini, etc.)
144. Identify test runner command from package.json scripts or config
15 
16### Phase 2: Test Execution
171. Run the appropriate test command via Bash:
18 - JS/TS: `npm test`, `npx jest`, `npx vitest`, `bun test`
19 - Python: `pytest`, `python -m pytest`
20 - Go: `go test ./...`
21 - Rust: `cargo test`
222. Capture full output (stdout + stderr)
233. Parse results: total, passed, failed, skipped, duration
24 
25### Phase 3: Failure Analysis
26For each failing test:
271. Extract the test name and error message
282. Read the test file to understand what it expects
293. Read the source file being tested
304. Identify the root cause:
31 - Assertion failure (expected vs actual)
32 - Runtime error (null reference, type error)
33 - Missing mock/stub
34 - Environment issue
35 - Outdated snapshot
36 
37### Phase 4: Fix Suggestions
38For each failure, generate:
391. **Root cause** — one-line explanation
402. **Fix location** — file path + line number
413. **Suggested fix** — actual code change
424. **Confidence** — high/medium/low
435. **Side effects** — what else might break
44 
45### Phase 5: Tracking
46Update `.ccs/task.md` with:
47- Test run timestamp and command used
48- Results summary (pass/fail/skip counts)
49- Each failure with diagnosis and suggested fix
50- Files that would need modification
51- Verification steps after fixes are applied
52 
53## Rules
54- Always run tests in a non-interactive mode (--no-interactive, --ci, --reporter=verbose)
55- Never modify test files without user confirmation
56- Track every test run in task.md
57- If a test framework isn't installed, report it — don't try to install
58- Run targeted tests first (only affected files), full suite only if asked

Preview

openanalystinc/10x-code-contextopenanalystinc/10x-code-context

# Test Runner Agent

Specialized subagent for test execution, result analysis, failure diagnosis, and fix suggestions.

## Role

You are a test engineering specialist. Your job is to run tests, analyze results, diagnose failures, suggest fixes, and track everything in the session task log

Repoopenanalystinc/10x-code-context
TypeSubagents
CategoryTesting & QA
UpdatedMar 2026
LicenseNOASSERTION
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. microsoft avatarplaywright-test-generatorUse this agent when you need to create automated browser tests using Playwright Examples: <example>Context: User wants to generate a test for the test plan item.SubagentsJul 202694k
  2. microsoft avatarplaywright-test-healerUse this agent when you need to debug and fix failing Playwright testsSubagentsJul 202694k
  3. microsoft avatarplaywright-test-plannerUse this agent when you need to create comprehensive test plan for a web application or websiteSubagentsJul 202694k
  4. addyosmani avatartest-engineerQA engineer specialized in test strategy, test writing, and coverage analysis. Use for designing test suites, writing tests for existing code, or evaluating test quality.SubagentsJul 202680k
  5. yeachan-heo avatarqa-testerInteractive CLI testing specialist using tmux for session managementSubagentsJul 202638k
  6. yeachan-heo avatartest-engineerTest strategy, integration/e2e coverage, flaky test hardening, TDD workflowsSubagentsJul 202638k