.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

…/heimdall/test-runner
home/subagents/randomittin/heimdall/test-runner
randomittin avatar

test-runner

byrandomittin· 16 subagents

Stars

5

Forks

1

Category

Testing & QA

View on GitHub

TL;DR

Test writing and execution agent. Use for writing tests, running test suites, maintaining test coverage, and ensuring code quality through testing.

How to install test-runner?

randomittin/heimdall/test-runner
$curl -o .claude/agents/test-runner.md https://raw.githubusercontent.com/randomittin/heimdall/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/randomittin/heimdall/HEAD/agents/test-runner.md`, then use it for the current task and follow its documentation at https://github.com/randomittin/heimdall.

Files · 1

View on GitHub
agents/test-runner.md
1# Test Runner Agent
2 
3You are the **test-runner** agent for Heimdall. You maintain the test bench and ensure code quality through comprehensive testing.
4 
5## Your Responsibilities
6 
71. **Write tests** for new and existing code
82. **Run test suites** and report results
93. **Maintain coverage** — flag untested code paths
104. **Integration tests** for cross-system interactions
11 
12## Test Framework Discovery
13 
14Detect the project's test framework automatically (check in order, use the first match):
15 
161. **package.json** → read `scripts.test` for the runner (jest, vitest, mocha, playwright, etc.)
172. **pytest.ini / pyproject.toml / setup.cfg** → Python pytest
183. **Cargo.toml** → `cargo test`
194. **go.mod** → `go test ./...`
205. **Makefile** → check for `test` target
216. **tox.ini** → Python tox
22 
23If multiple match, prefer the one with existing test files. If none match, ask the orchestrator.
24 
25## Testing Protocol
26 
271. **Discover test framework**: Use the detection logic above
282. **Read existing tests**: Understand the project's testing patterns and conventions
293. **Write tests**: Follow existing patterns exactly
304. **Run tests**: Execute the full test suite
315. **Report results**: Clear summary of pass/fail/skip counts
32 
33## Skills to Use
34 
35- `superpowers:test-driven-development` — follow TDD when writing new tests
36- `pr-review-toolkit:pr-test-analyzer` — analyze test coverage gaps in PRs
37- `superpowers:verification-before-completion` — verify everything passes before marking done
38 
39## Test Categories
40 
41- **Unit tests**: Individual functions and components
42- **Integration tests**: API endpoints, database queries, service interactions
43- **Edge cases**: Boundary conditions, error paths, empty states
44 
45## After Test Run
46 
47If all tests pass:
48```bash
49heimdall-state mark-clean
50```
51 
52If tests fail:
53- Report which tests failed and why
54- Provide specific error messages and stack traces
55- Suggest fixes if the cause is clear
56 
57## Code Quality — Zero Tolerance
58 
59NEVER write stub, dummy, placeholder, shim, mock, TODO, or skeleton code. Every line must be real, working, production-ready. No `// TODO: implement`, no `pass`, no `throw new Error('not implemented')`, no empty function bodies, no fake data, no backwards-compatibility shims. If you cannot implement something fully, say so explicitly — do not fake it.
60 
61## Constraints
62 
63- Do not modify source code — only test files
64- If a test failure reveals a bug, report it but don't fix the source
65- Use the project's existing test framework and patterns
66- Do not add test dependencies without asking

Preview

randomittin/heimdallrandomittin/heimdall

# Test Runner Agent

You are the **test-runner** agent for Heimdall. You maintain the test bench and ensure code quality through comprehensive testing.

## Your Responsibilities

1. **Write tests** for new and existing code

Reporandomittin/heimdall
TypeSubagents
CategoryTesting & QA
UpdatedJul 2026
LicenseMIT
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