一键导入
test-coverage-improver
テストカバレッジを分析し、最もインパクトの大きいテスト追加を提案する。 「テスト改善」「カバレッジ」「test-coverage」で呼び出される。 モジュールごとのカバレッジ分析、未テストのエッジケース検出、 テストスケルトンの自動生成を行う。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
テストカバレッジを分析し、最もインパクトの大きいテスト追加を提案する。 「テスト改善」「カバレッジ」「test-coverage」で呼び出される。 モジュールごとのカバレッジ分析、未テストのエッジケース検出、 テストスケルトンの自動生成を行う。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | test-coverage-improver |
| description | テストカバレッジを分析し、最もインパクトの大きいテスト追加を提案する。 「テスト改善」「カバレッジ」「test-coverage」で呼び出される。 モジュールごとのカバレッジ分析、未テストのエッジケース検出、 テストスケルトンの自動生成を行う。 |
| metadata | {"short-description":"テストカバレッジ改善提案"} |
$ARGUMENTS (optional: specific module or file to analyze)
Analyzes existing tests, identifies coverage gaps, and suggests the most impactful tests to add. Generates test skeletons for quick implementation.
tests/ directory for all test filesRank suggested tests by impact:
| Priority | Criteria |
|---|---|
| HIGH | Security-related hooks (gate, injection-guard) without edge case tests |
| HIGH | Core modules (session, stage) with missing error path tests |
| MEDIUM | Utility modules with partial coverage |
| LOW | Already well-tested modules needing only edge cases |
For each HIGH priority gap, generate a test skeleton:
const { describe, it } = require("node:test");
const assert = require("node:assert/strict");
describe("{module} - {scenario}", () => {
it("should {expected behavior}", () => {
// Arrange
// Act
// Assert
assert.ok(false, "TODO: implement");
});
});
Output:
node:test runner (shield-harness standard)test_{subject}_{condition}_{expected_result}node --test --test-concurrency=1 tests//tddセッション引き継ぎを実行し、HANDOFF.md を更新する
プロジェクトの STG0(要件確認)を実行し、タスクを開始する。claude-code-orchestra 互換エイリアス。
Save full session context: git history, Agent Teams activity, and discover reusable skill patterns — all in one run. No flags needed. Run at session end, after major milestones, or when you want to capture learnings.
ドキュメントとコード実装の整合性を監査する。 コード変更後に「ドキュメント確認」「docs-sync」「整合性チェック」で呼び出される。 Hook 実装と設計ドキュメントの乖離、README の記述の古さ、 マニフェストとファイル構成のずれを検出して修正案を提示する。
Analyze project structure and update AGENTS.md with detected tech stack, commands, and configurations.
Create a detailed implementation plan for a feature or task. Use when user wants to plan before coding.