ワンクリックで
test-coverage-map
Maps test execution results from Jama test cycles to requirements, showing coverage gaps and pass/fail status.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Maps test execution results from Jama test cycles to requirements, showing coverage gaps and pass/fail status.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Demo pipeline state machine — 7-phase autonomous sequence with delegation context templates, phase transition logic, BLOCKED recovery strategies, and demo-state.json schema. Used exclusively by demo-conductor.
Cinematic narration style guide for demo-conductor — ANSI-coloured banner formats, live pipeline scoreboard, audience-facing language, phase summaries, and error narration patterns. Keeps the demo presentation-quality throughout.
Standardized completion and escalation protocol for subagent responses. Ensures the conductor can machine-parse every subagent return. Use when reporting completion status back to the orchestrator.
Cross-session learnings lifecycle — schema, storage, retrieval, and pruning of lessons learned during orchestrator sessions. Use when managing learnings via the /learn command.
Agent Teams assembly and task injection — selects appropriate team, validates prerequisites, estimates cost, injects tasks into the shared task list, and manages team lifecycle.
Token and cost tracking with model tier enforcement
| name | test-coverage-map |
| description | Maps test execution results from Jama test cycles to requirements, showing coverage gaps and pass/fail status. |
During review or deploy-check phases when you need to verify test coverage against requirements.
## Test Coverage Map: {test_cycle_name}
### Overall Coverage
- Requirements covered: {count}/{total} ({percentage}%)
- Test runs passed: {passed}/{total} ({percentage}%)
- Test runs failed: {failed}
- Test runs blocked: {blocked}
- Test runs not executed: {not_run}
### Coverage Detail
| Requirement | Test Case | Last Run | Status | Result |
|---|---|---|---|---|
| REQ-100 | TC-200 | 2025-01-15 | Executed | PASSED |
| REQ-101 | TC-201 | 2025-01-15 | Executed | FAILED |
| REQ-102 | — | — | — | NO COVERAGE |
### Risks
- {requirements with no test coverage}
- {test cases that are failing}
- {test cases not yet executed}
# Map test coverage for a cycle
claude -p "build a test coverage map for Jama test cycle 789 — show which requirements are covered and pass/fail status" \
--tool mcp__cc_jama__get_test_runs --tool mcp__cc_jama__get_relationships
# Check coverage for a specific requirement
claude -p "check if Jama requirement 1234 has test coverage and show test results" \
--tool mcp__cc_jama__get_item --tool mcp__cc_jama__get_relationships --tool mcp__cc_jama__get_test_runs