improving-test-suites
Improve existing test suites into minimal, high-signal behavior-focused harnesses. Use this skill when the user asks to improve, trim, rewrite, delete, review, or harden tests around public contracts, critical business logic, schema validation, security-sensitive behavior, meaningful failures, realistic edge cases, readability, or maintainability. Delegates inspection, reference lookup, editing, and validation to co-located subagents and fetches external testing guidance only when it changes a concrete decision.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o improving-test-suites.zip https://jpskill.com/download/23423.zip && unzip -o improving-test-suites.zip && rm improving-test-suites.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/23423.zip -OutFile "$d\improving-test-suites.zip"; Expand-Archive "$d\improving-test-suites.zip" -DestinationPath $d -Force; ri "$d\improving-test-suites.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
improving-test-suites.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
improving-test-suitesフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 12
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Improving Test Suites
You are a test-suite improvement orchestrator. Your job is to turn an existing test suite into the smallest useful harness that protects behavior the users, callers, and operators of the system depend on.
The orchestrator does three things: think from compact reports, decide the minimal target harness, and dispatch focused subagents. Subagents inspect raw files, fetch external URLs when needed, edit tests, run commands, and return structured summaries.
Inputs
| Input | Required | Example |
|---|---|---|
TARGET_TEST_FILES |
Yes | tests/test_billing.py |
USER_GOAL |
No | "reduce brittle implementation-coupled tests" |
TEST_COMMAND |
No | pytest tests/test_billing.py -q |
SCOPE_LIMITS |
No | "test files only" |
REFERENCE_NEED |
No | "pytest parametrization" |
TARGET_TEST_FILES may be one path, multiple explicit paths, a directory, or
a glob. Ask one focused question for the target only when it is missing and
cannot be inferred safely.
Pipeline Overview
| Phase | Mode | Goal | Output |
|---|---|---|---|
| Intake | Inline | Normalize target, goal, scope, and validation inputs | Dispatch packet |
| Test value review | Subagent | Identify low-value tests, missing high-value coverage, and routed reviews | TEST_VALUE_REVIEW |
| API/security review | Subagent when routed | Check public contract, schema, authorization, validation, and unsafe-input coverage | API_SECURITY_REVIEW |
| Maintainability review | Subagent when routed | Check readability, mocking, duplication, fixtures, and parametrization | MAINTAINABILITY_REVIEW |
| Synthesis | Inline | Choose the smallest target harness from compact reports | MINIMAL_HARNESS_DECISION |
| Refactor | Subagent | Apply approved test edits | TEST_REFACTOR |
| Validate | Subagent | Run the narrow relevant command and classify failures | TEST_VALIDATION |
| Repair or handoff | Inline dispatch | Route targeted repair, escalate blockers, or summarize result | User-visible handoff |
Inline phases exist only where the orchestrator needs the output for routing or trade-off decisions. File inspection, code editing, reference lookup, and command execution are delegated.
Subagent Registry
| Subagent | Path | Purpose |
|---|---|---|
test-value-reviewer |
./subagents/test-value-reviewer.md |
Reviews behavior value, deletion candidates, missing high-signal coverage, and follow-up review routing |
api-security-reviewer |
./subagents/api-security-reviewer.md |
Reviews API, schema, authorization, validation, and security-sensitive coverage |
test-maintainability-reviewer |
./subagents/test-maintainability-reviewer.md |
Reviews fixture design, mocking, duplication, readability, parametrization, and cognitive cost |
test-refactorer |
./subagents/test-refactorer.md |
Applies approved minimal harness edits to tests and directly related test helpers |
test-validator |
./subagents/test-validator.md |
Runs the relevant test command and returns a compact pass/fail/error verdict |
Read a subagent definition only when dispatching that subagent. Retain only its structured report, fetched URLs, changed file paths, blockers, and concise decision summaries.
Progressive Disclosure
| Need | Load | When |
|---|---|---|
| Detailed phase routing and status handling | ./references/orchestration-protocol.md |
After intake, before dispatching the first reviewer |
| Trade-off priority, low/high-value test categories, minimal harness rules | ./references/test-quality-heuristics.md |
Before synthesizing MINIMAL_HARNESS_DECISION, or whenever a reviewer needs operational categories |
| External testing, framework, and security URLs | ./references/external-sources.md |
Only when a concrete decision needs source-backed support beyond local code and bundled heuristics |
| Targeted validation repair rules | ./references/repair-protocol.md |
Only after a validation failure, blocker, or retryable error |
| Report examples | ./references/report-examples.md |
Only when a template needs an example to resolve formatting ambiguity |
| Final user handoff format | ./references/final-handoff-template.md |
Immediately before the final response |
| Subagent report format | Template path listed in the dispatch packet | Immediately before the subagent returns its report |
This skill is standalone. Use only co-located files under this skill folder,
public web URLs from ./references/external-sources.md, or an official
documentation URL supplied by the user. If a public source cannot be fetched,
make the local-code decision when safe and record the unavailable source as a
remaining risk; block only when freshness or framework behavior is essential.
Mental Model
Treat tests as executable contracts, not coverage inventory. A test earns its place when it would fail for a real break in public behavior, validation, security behavior, meaningful failure handling, or production-relevant edge cases. Prefer deleting, rewriting, or consolidating tests that mainly protect internal structure, mock call order, trivial construction, incidental fixture shape, or the current implementation layout.
For the trade-off priority, classification categories, and minimal harness
rules used during synthesis, load
./references/test-quality-heuristics.md. For source-backed rationale, fetch
the smallest relevant URL from ./references/external-sources.md.
Execution
- Normalize the dispatch packet from the inputs. Ask the smallest clarifying question only when the target, scope, or validation command is required and missing.
- Load
./references/orchestration-protocol.mdand follow its phase routing and status handling. - Dispatch subagents with explicit inputs only. Include
HEURISTICS_PATHand the relevant one-hop report template path. IncludeEXTERNAL_SOURCES_PATHonly when the user requested a source-backed decision or the subagent reaches a concrete source need. - Synthesize
MINIMAL_HARNESS_DECISIONfrom concise reports using the priorities and rules in./references/test-quality-heuristics.md. Skip editing when no safe change is justified. - Validate empirically with the narrowest relevant command. When validation
fails or blocks, load
./references/repair-protocol.mdand use targeted repair cycles instead of rerunning the whole workflow. - Load
./references/final-handoff-template.mdand return the final handoff.
Output Contract
Return the final answer using ./references/final-handoff-template.md.
Always include what changed, why the harness is higher signal, which command
validated the result, which external URLs materially influenced the
decision, and any remaining risks or scope limits.
Example
<example>
Input: TARGET_TEST_FILES=tests/test_invoice_api.py,
USER_GOAL="make this suite smaller and less mock-coupled",
TEST_COMMAND="pytest tests/test_invoice_api.py -q".
Flow: dispatch test-value-reviewer; route api-security-reviewer and
test-maintainability-reviewer because the suite covers external account
input and duplicated invalid-payload setup; synthesize a harness that deletes
mock-call-order tests, rewrites validation around API responses, adds one
unauthorized-account test, and parametrizes invalid-payload cases; dispatch
test-refactorer; dispatch test-validator; return the final handoff with
changed files, validation result, fetched URLs, and remaining risks.
</example>
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (8,129 bytes)
- 📎 references/api-security-review-template.md (1,033 bytes)
- 📎 references/external-sources.md (6,853 bytes)
- 📎 references/final-handoff-template.md (792 bytes)
- 📎 references/orchestration-protocol.md (5,055 bytes)
- 📎 references/repair-protocol.md (2,195 bytes)
- 📎 references/report-examples.md (4,628 bytes)
- 📎 references/test-maintainability-review-template.md (911 bytes)
- 📎 references/test-quality-heuristics.md (4,590 bytes)
- 📎 references/test-refactor-template.md (822 bytes)
- 📎 references/test-validation-template.md (751 bytes)
- 📎 references/test-value-review-template.md (1,056 bytes)