원클릭으로
vibeflow-tdd
Execute TDD Red-Green-Refactor cycle. Use when implementing features with test-driven development.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Execute TDD Red-Green-Refactor cycle. Use when implementing features with test-driven development.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Execute a single GitHub Issue through the full 11-Step workflow. Iris handles everything — Issue Review, TDD, implementation, QA judgment, PR, cross-review, merge, close.
Verify VibeFlow project repository consistency. Use when checking project structure, required files, and integration health.
Create or refine VibeFlow issue files under issues/. Use when turning plan items into implementable tasks with clear acceptance criteria.
プロジェクトのキックオフ。新規プロジェクトは Interview から Vision を作り、既存コードのプロジェクトは Bootstrap で As-Is の構造化 spec (Story/Contract) をコードから生成する。
Conclude Iris session and update STATUS.md. Use when ending a Discovery session and returning to development phase.
Execute all open GitHub Issues in dependency order. Iris picks up Issues one by one, runs the 11-Step workflow for each, and reports progress.
| name | vibeflow-tdd |
| description | Execute TDD Red-Green-Refactor cycle. Use when implementing features with test-driven development. |
Goal: Define expected behavior through tests that don't pass yet.
tests/ or src/**/__tests__/tests/integration/e2e/ or tests/e2e/test: Add failing tests for <feature>Checklist:
Goal: Write minimal code to pass all tests.
feat: Implement <feature>Checklist:
Goal: Improve code structure while keeping tests green.
refactor: Improve <feature> code structureChecklist:
describe('<Component/Function>', () => {
it('should <expected behavior> when <condition>', () => {
// Arrange
// Act
// Assert
});
});