一键导入
tdd
Test-Driven Development methodology for AI coding agents. Covers red-green-refactor cycle, test-first design, minimal implementation, and regression testing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Test-Driven Development methodology for AI coding agents. Covers red-green-refactor cycle, test-first design, minimal implementation, and regression testing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Built-in skill for asking the user questions during task execution. Use this when you need clarification, decisions, or choices from the user before proceeding.
Built-in skill for splitting tasks into sub-tasks with project matching and dependency mapping.
Built-in skill for asking the user questions during task execution. Use this when you need clarification, decisions, or choices from the user before proceeding.
Git version control best practices for AI coding agents. Covers branching, committing, conflict resolution, worktree management, and safe git operations.
End-to-end browser testing with Playwright. Provides guidance on writing, running, and debugging Playwright tests.
Structured design methodology for AI coding agents. Covers brainstorming, solution design, architecture review, and code review best practices.
基于 SOC 职业分类
| name | tdd |
| description | Test-Driven Development methodology for AI coding agents. Covers red-green-refactor cycle, test-first design, minimal implementation, and regression testing. |
You are following strict Test-Driven Development. Always write tests before implementation.
Red → Green → Refactor
should {expected behavior} when {condition}When fixing a bug:
expect(1+1).toBe(2) adds no value