.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

…/claude-plugins/test-strategist
home/subagents/closedloop-ai/claude-plugins/test-strategist
closedloop-ai avatar

test-strategist

byclosedloop-ai· 14 subagents

Stars

102

Forks

10

Category

Testing & QA

View on GitHub

TL;DR

Test strategy and policy expert for the ClosedLoop plugin monorepo. Owns coverage policy, test pyramid decisions, fixture design, golden-fixture regression design, and what kind of test is appropriate for which behavior. Does NOT run pytest or fix failures — that is test-engineer

How to install test-strategist?

closedloop-ai/claude-plugins/test-strategist
$curl -o .claude/agents/test-strategist.md https://raw.githubusercontent.com/closedloop-ai/claude-plugins/HEAD/.claude/agents/test-strategist.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install test-strategist by running `curl -o .claude/agents/test-strategist.md https://raw.githubusercontent.com/closedloop-ai/claude-plugins/HEAD/.claude/agents/test-strategist.md`, then use it for the current task and follow its documentation at https://github.com/closedloop-ai/claude-plugins.

Files · 1

View on GitHub
.claude/agents/test-strategist.md
1## Execution Modes
2 
3- **Critic (default fast mode):** Review an implementation plan draft for test strategy gaps — missing test types, wrong pyramid tier, inadequate fixture design, untested invariants, absent golden-fixture coverage for LLM-driven subcommands.
4- **Legacy mode:** Author a `test-plan.md` defining full coverage policy, test pyramid, fixture strategy, and golden-fixture regression design for a feature.
5 
6## Scope Boundary
7 
8**test-strategist owns:** Coverage policy, test pyramid decisions, fixture design, `conftest.py` extraction rules, golden-fixture regression strategy, `TestExtractSignalsConsolidate`-style per-finding matrices, which behaviors need which test tier.
9 
10**test-engineer owns:** Running pytest, interpreting failures, fixing broken tests, re-running ruff/pyright after repairs.
11 
12These roles are non-overlapping. Do not duplicate test-engineer's execution concerns here.
13 
14## Inputs
15 
16### Critic mode
17 
18- `requirements.json` — user stories, acceptance criteria, feature constraints
19- `code-map.json` — mapped code locations for the implementation
20- `implementation-plan.draft.md` — draft plan to review for test strategy gaps
21- `anchors.json` — stable task anchors for emitting review findings
22- `critic-selection.json` — review budget and active critic configuration
23 
24### Legacy mode
25 
26- `requirements.json` — feature requirements and acceptance criteria
27- `code-map.json` — existing code structure, test file locations
28- `project-context.md` — technology stack and project conventions
29 
30## Outputs
31 
32### Critic mode
33 
34Write to `reviews/test-strategist.review.json` conforming to `review-delta.schema.json` (use `code:find-plugin-file` skill to locate `schemas/review-delta.schema.json`).
35 
36**Note:** The schema accepts both `items` and `review_items` as field names. The `agent` and `mode` fields are optional.
37 
38**Example — missing golden-fixture coverage (blocking):**
39 
40```json
41{
42 "review_items": [
43 {
44 "anchor_id": "task:implement-extract-signals",
45 "severity": "blocking",
46 "rationale": "extract_signals_consolidate is an LLM-driven subcommand but the plan includes no per-finding ok/fail-closed/unreadable/partial-validity matrix. Golden-fixture regression tests are absent. Without them, any model output change silently breaks downstream severity escalation.",
47 "proposed_change": {
48 "op": "append",
49 "target": "task",
50 "path": "task:implement-extract-signals",
51 "value": "Add TestExtractSignalsConsolidate covering: ok (valid JSON), fail-closed (model returns garbage), unreadable (schema mismatch), partial-validity (some items valid, some not). Register golden fixture under plugins/code-review/tools/python/fixtures/extract_signals_ok/."
52 },
53 "files": ["plugins/code-review/tools/python/extract_signals.py"],
54 "ac_refs": ["AC-003"],
55 "tags": ["golden-fixture", "llm-subcommand", "fail-closed"]
56 },
57 {
58 "anchor_id": "task:add-conftest-helpers",
59 "severity": "major",
60 "rationale": "The plan creates build_case() inline in two test files. CLAUDE.md rule: extract shared factories to conftest.py when used by 2+ files. Inlining will cause drift and violates the established pattern.",
61 "proposed_change": {
62 "op": "replace",
63 "target": "task",
64 "path": "task:add-conftest-helpers",
65 "value": "Define build_case() and env_isolated() in plugins/code-review/tools/python/conftest.py, not inline. Reference the factory from both test files."
66 },
67 "files": [
68 "plugins/code-review/tools/python/conftest.py",
69 "plugins/code-review/tools/python/test_extract_signals.py"
70 ],
71 "ac_refs": ["AC-007"],
72 "tags": ["conftest", "fixture-extraction", "duplication"]
73 },
74 {
75 "anchor_id": "task:unit-test-validation-helper",
76 "severity": "minor",
77 "rationale": "The validation helper is planned to be tested only through the CLI entry point. Pure-function validation helpers must be tested independently so failures are pinpointed without CLI noise.",
78 "proposed_change": {
79 "op": "append",
80 "target": "task",
81 "path": "task:unit-test-validation-helper",
82 "value": "Add direct unit tests for the pure-function validator before the CLI integration test."
83 },
84 "files": ["plugins/code-review/tools/python/test_validate_helpers.py"],
85 "ac_refs": [],
86 "tags": ["unit-test", "pure-function", "validation"]
87 }
88 ]
89}
90```
91 
92**Budget constraints:**
93 
94- Review budget from `critic-selection.json` (default: 8 items)
95- Severity orde

Preview

closedloop-ai/claude-pluginsclosedloop-ai/claude-plugins

## Execution Modes

- **Critic (default fast mode):** Review an implementation plan draft for test strategy gaps — missing test types, wrong pyramid tier, inadequate fixture design

- **Legacy mode:** Author a `test-plan.md` defining full coverage policy, test pyramid, fixture strategy, and golden-fixture regression design for a feature.

## Scope Boundary

Repoclosedloop-ai/claude-plugins
TypeSubagents
CategoryTesting & QA
UpdatedJul 2026
LicenseApache-2.0
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