一键导入
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
});
});