Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

tdd时差

Agent Skill

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

总安装

269

周安装

11

GitHub Stars

2

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ethansei/skills --skill tdd

简介

tdd 提供测试驱动开发的完整工作流指导,强调红绿重构循环与持续测试实践。

  • 适合在编写功能代码前先定义测试用例,确保每次变更后立即验证行为一致性。
  • 使用时遵循“写失败测试→最小实现→重构优化”三步法,保持测试集始终覆盖最新需求。
  • 安装前需确认宿主环境支持自动化测试框架,注意测试隔离性与依赖管理,避免副作用干扰。
  • tdd 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Test-Driven Development

Write the test first. Make it pass. Clean up. Run the tests. Every time.

The Cycle

Every code change follows red-green-refactor:

  1. Red — Write a test for the next behavior. Run it. Watch it fail.
  2. Green — Write the minimum code to make the test pass. Nothing more.
  3. Refactor — Clean up duplication and improve clarity. Tests stay green.
  4. Repeat — Pick the next behavior. Start another cycle.

Run tests after every step. Not just at the end — after *every* step.

1. Start With a Failing Test

Before writing any implementation, write a test that:

  • Describes one specific behavior or requirement
  • Fails for the right reason (missing function, wrong return value — not a syntax error)
  • Uses clear, descriptive names that read as specifications

Do not write multiple tests at once. One test, one behavior, one cycle.

2. Write the Minimum to Pass

Make the failing test pass with the simplest code that works. Do not:

  • Handle edge cases you haven't tested yet
  • Build abstractions before you have three examples
  • Add error handling for scenarios not covered by a test
  • Optimize before the behavior is correct

If you're writing code that no test exercises, stop. Write the test first.

3. Refactor Under Green Tests

After the test passes, improve the code while keeping tests green:

  • Extract common patterns only when you see real duplication
  • Rename for clarity
  • Simplify complex conditionals
  • Remove dead code

Run tests after each refactoring move. If any test turns red, undo and try a smaller change.

4. Run Tests After Every Change

This is not optional. Run the relevant test suite:

  • After writing a new test (confirm it fails)
  • After writing implementation (confirm it passes)
  • After every refactoring move
  • Before considering any task done

If you cannot run tests (no test runner configured, unfamiliar project), tell the user and ask how to run them. Do not skip testing and move on silently.

5. Discover the Test Runner

Before writing the first test, find out how this project runs tests:

  • Look for test configuration files (jest.config, pytest.ini, Cargo.toml, etc.)
  • Check package.json scripts, Makefile targets, or CI config
  • Look at existing test files for import patterns and conventions
  • Ask the user if nothing is obvious

Match the project's existing test style — framework, file naming, directory structure, assertion library. Do not introduce a new test framework.

6. Test Naming and Organization

Tests are documentation. Follow these conventions:

  • Name tests by the behavior they verify, not the function they call
  • Group related tests logically (by feature, by scenario)
  • Keep each test independent — no shared mutable state between tests
  • Follow the Arrange-Act-Assert pattern within each test

For detailed naming and organization patterns, read references/examples.md.

7. What to Test

Focus tests on behavior at public interfaces:

  • Function inputs and outputs
  • State changes caused by operations
  • Error conditions and edge cases
  • Integration points between modules

Do not test:

  • Private implementation details
  • Framework internals or library code
  • Trivial getters/setters with no logic
  • The same behavior from multiple angles

8. Closing Audit — Mandatory

After all implementation cycles are complete, run a full verification pass. This is a hard gate — do not consider the task done until all checks pass.

Run these in order:

  1. Full test suite — run the complete test suite, not just the tests you wrote
  2. Linter / formatter — run the project's lint and format checks if configured
  3. Type checker — run type checking if the project uses one (tsc, mypy, etc.)
  4. Build — confirm the project builds if applicable
  5. Review — verify every test you wrote has a clear name and tests one behavior

If any step fails, fix it before declaring the work complete. Do not leave failing tests, lint errors, or type errors for the user to clean up.

For the full workflow with decision points, read references/workflow.md.

Per-Cycle Checklist

Before moving to the next cycle, verify:

  • A failing test was written before any implementation
  • The test fails for the right reason
  • Implementation is the minimum needed to pass
  • Tests pass after implementation
  • Any refactoring was done under green tests
  • Tests pass after refactoring

Post-Implementation Checklist

Before declaring the task complete:

  • Full test suite passes (not just new tests)
  • Linter / formatter passes (if configured)
  • Type checker passes (if configured)
  • Project builds (if applicable)
  • Every new test has a clear, behavior-describing name
  • No test depends on execution order or shared state

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

39.03%
按下载量换算34

Claude

28.88%
按下载量换算25

Cursor

18.92%
按下载量换算16

Gemini CLI

9.84%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills