원클릭으로
test-list
TDD Test List Phase - Create a comprehensive test list covering every example and rule from the specification
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
TDD Test List Phase - Create a comprehensive test list covering every example and rule from the specification
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generates an experiment-overview snapshot of all research questions under research/_archive/. Invoke when a new point-in-time report across all RQs should be produced.
Use this skill to drive a research question (RQ) end-to-end: validate the RQ README, generate a fill batch-plan, start the Docker batch in the background, monitor progress, run aggregation, and propose findings updates. Trigger when the user says "RQ-N voranbringen", "run-rq", "fill RQ-N", "run RQ-N", "Forschungsfrage N starten", or names a specific RQ-N directory in research/.
Re-run the analysis pipeline on all runs matching an RQ, reaggregate metrics, and propose findings updates against the fresh data. Trigger when the user says "reanalyze RQ-N", "reanalyse RQ-N", "Runs neu analysieren", or wants to refresh metrics/findings after a pipeline change (analyze-run.sh fix, adapter added, ESLint config).
TDD Green Phase - Implement minimal code to make the failing test pass
TDD Red Phase - Activate ONE test from the test list and make it fail with explicit predictions
TDD Test List Phase - Create a comprehensive test list covering every example and rule from the specification
| name | test-list |
| description | TDD Test List Phase - Create a comprehensive test list covering every example and rule from the specification |
You are now in the Test List Phase of TDD. Follow these instructions to create a comprehensive test list.
Create a comprehensive test list that covers every example and rule from the specification:
prompt.md thoroughly -- every rule, every example, every clarifying questionit.todo() test caseit.todo() only -- no executable tests yetRead the complete prompt.md specification. Pay special attention to
integration examples and clarifying questions (marked with ?) -- these
disambiguate rules that may seem open to interpretation in isolation.
Walk through the specification section by section. For each rule and each example:
Arrange tests in increasing complexity:
For each test case:
it.todo("description")"should return 115 G (100 base + 10 first-insurance + 5 fee)"Check for:
it.todo()import { describe, it, expect } from "vitest";
import { functionName } from "./[feature-name].js";
describe("Feature Name", () => {
it.todo("should [expected behavior] -- [expected value]");
it.todo("should [next behavior] -- [expected value]");
// ... ordered simple -> complex, covering ALL spec examples
});
After creating test list, provide summary:
Test List Created:
**Feature**: [feature name]
**Test File**: [filename].spec.ts
**Tests**: [count]
**Test Cases** (ordered simple -> complex):
1. [first test description]
2. [second test description]
...
**Next Step**: Proceed to Red phase to activate the first test.
Watch for these issues:
it.todo()it.todo() for all tests - No executable tests yetYour goal is to create a comprehensive, well-ordered test list that covers all specified behavior and sets up the developer for successful TDD workflow.
After completing the test list, proceed to Red phase:
Test List Phase Complete. Proceeding to Red phase with the first test.