Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

tdd时差

Agent Skill

tdd 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

194

周安装

8

GitHub Stars

公开资料未说明

下载量

65
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tdd(时差)
来源仓库:https://github.com/iamladi/cautious-computing-machine--sdlc-plugin
仓库路径:skills/tdd
安装命令:
npx skills add iamladi/cautious-computing-machine--sdlc-plugin --skill "tdd"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add iamladi/cautious-computing-machine--sdlc-plugin --skill "tdd"

简介

tdd 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写。
  • tdd 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

TDD Enforcement Skill

Priorities

Correctness > Test Coverage > Implementation Speed

Goal

Enforce Test-Driven Development as a process, not just a presence check. Agents left unconstrained write all tests first, then all code (horizontal slicing). This produces tests coupled to implementation that break on refactor. The 4-phase workflow below enforces vertical TDD cycles where each test drives one slice of implementation.

Configuration

Read tdd: from CLAUDE.md:

tdd: strict  # strict | soft | off

Check both CLAUDE.md and .claude/CLAUDE.md. Default: off.

Modes

Strict (tdd: strict)

Full 4-phase workflow with blocking gates. Planning phase requires user confirmation via AskUserQuestion before coding. Each phase has explicit entry/exit criteria.

Escape when: Markdown-only changes, config changes, or when mocking exceeds the change's complexity. Present AskUserQuestion with: (1) Write test first, (2) Prototype escape with justification. Log escapes.

Soft (tdd: soft)

Full 4-phase workflow guidance but no blocking gates. Planning phase generates and presents the plan but proceeds immediately. Warns on deviations (no test, horizontal slicing) but does not stop. Summarize untested items after completion.

Off (tdd: off)

No TDD checks. Standard implementation flow.

Anti-Pattern: Horizontal Slicing

WRONG (horizontal):               RIGHT (vertical):
┌──────────────────────┐           ┌──────────────────────┐
│ Write ALL tests      │           │ Test 1 → Impl 1      │
│ test1, test2, test3  │           │ ✓ GREEN               │
├──────────────────────┤           ├──────────────────────┤
│ Write ALL code       │           │ Test 2 → Impl 2      │
│ impl1, impl2, impl3 │           │ ✓ GREEN               │
├──────────────────────┤           ├──────────────────────┤
│ Hope they match      │           │ Test 3 → Impl 3      │
│ ✗ Tests are brittle  │           │ ✓ GREEN               │
└──────────────────────┘           └──────────────────────┘

Horizontal slicing fails because tests written without implementation are based on imagined APIs. They couple to guessed method signatures, mock internal modules, and break on any structural change.

4-Phase Workflow

Phase 1: Planning

Entry: Task received with TDD mode strict or soft.

  1. Identify the public interface changes needed
  2. List behaviors to test, ordered by priority (core path first, edge cases later)
  3. Strict mode: Present interface and behavior list via AskUserQuestion for user confirmation before proceeding
  4. Soft mode: Present the plan, proceed immediately

Load reference: Glob("**/tdd/references/interface-design.md", path: "~/.claude/plugins")

Exit: Confirmed behavior list. Proceed to Tracer Bullet.

Non-interactive: If no user response within the current turn, proceed with best judgment and log skipped confirmation.

Phase 2: Tracer Bullet

Prove one end-to-end path using Red-Green-Refactor:

  1. Write ONE test for the highest-priority behavior
  2. Verify it FAILS (RED) — a passing test before implementation is a false positive
  3. Write minimal implementation to make it pass (GREEN)
  4. Run per-cycle checklist (below)
  5. Strict mode: Pause after tracer bullet passes. Present results via AskUserQuestion to confirm before incremental loop.

Load references: Glob("**/tdd/references/mocking.md", path: "~/.claude/plugins"), Glob("**/tdd/references/test-quality.md", path: "~/.claude/plugins")

Exit: One test passing, end-to-end path proven.

Phase 3: Incremental Loop

For each remaining behavior from the plan:

  1. Write ONE test (RED)
  2. Write minimal code to pass (GREEN)
  3. Run per-cycle checklist
  4. Repeat

Do NOT write the next test until the current cycle is GREEN and the checklist passes.

Phase 4: Refactor

Only enter when ALL tests are GREEN.

  1. Look for refactoring candidates (duplication, long methods, shallow modules)
  2. Make ONE structural change at a time
  3. Run tests after each change — must stay GREEN
  4. If tests break, revert the refactor

Load reference: Glob("**/tdd/references/refactoring.md", path: "~/.claude/plugins")

Exit: Clean code, all tests GREEN. Commit test and implementation together.

Per-Cycle Checklist

After every RED-GREEN pair, verify:

  • Behavior, not implementation: Test describes WHAT the system does, not HOW
  • Public interface only: Test uses the same API as production callers
  • Survives refactor: Would this test break if internals changed but behavior stayed the same?
  • Minimal code: Implementation is the simplest thing that passes — no speculative features
  • No horizontal drift: Did you write only ONE test before implementing? If you wrote multiple, STOP and revert to one.
  • No type theater: Does this test verify something the type system doesn't already guarantee? If the only way it could fail is a type error, delete it.

Pre-Existing RED State

If existing tests are already failing when you start: note them and proceed with new behavior only. Do not attempt to fix pre-existing failures unless that is the task.

Test Discovery

Search patterns: __tests__/[filename].test.ts, [filename].test.ts, [filename].spec.ts, test/[filename].test.ts, tests/[filename].test.ts.

Arguments

$ARGUMENTS

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

windsurf

30.58%
按下载量换算20

OpenCode

23.89%
按下载量换算16

Codex

19.27%
按下载量换算13

Claude Code

12.57%
按下载量换算8

Antigravity

8.81%
按下载量换算6

Gemini CLI

3.54%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills