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

tdd-red-green-refactorTDD 红绿重构

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kaynetik/skills --skill tdd-red-green-refactor

简介

tdd-red-green-refactor 用于查找、检索和筛选相关信息,支持关键词和任务场景定位。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的信息快速筛选需求。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • 该技能当前分类为研究检索,实际功能以来源仓库描述为准。

SKILL.md

Test-Driven Development: Red-Green-Refactor

Core Principle

Tests verify behavior through public interfaces, not implementation details. A test that breaks when you refactor internals -- but behavior is unchanged -- is testing implementation, not behavior. Good tests survive refactors.

When fixing a bug: prove it exists with a failing test before touching production code. The test is evidence. The fix is the response to that evidence.

Workflow Overview

RED   ->  Write a test that fails (proves the bug or defines missing behavior)
GREEN ->  Write the minimum code to make the test pass
REFACTOR -> Improve structure, naming, duplication -- tests stay green

One cycle per behavior. Vertical slices, not horizontal.


Phase 1: RED -- Establish Failure

For Bug Fixes

  1. Reproduce the bug -- identify the exact input, state, or sequence that triggers the defect.
  2. Write a test that exercises the buggy code path with the offending input.
  3. Assert the correct (expected) behavior, not the current broken output.
  4. Run the test -- it must fail. If it passes, your test is not capturing the bug. Rethink your assertion or test setup.
  5. Name the test descriptively -- include the bug/ticket reference if one exists (e.g., test_bug_1234_negative_balance_rejected).

For New Features

  1. Define one behavior the feature should exhibit.
  2. Write a test for that single behavior using the public API/interface.
  3. Run the test -- confirm it fails (the feature does not exist yet).

RED Phase Rules

  • The test must fail for the right reason (missing behavior, not a compile error or import failure).
  • If you cannot write a test, that is a design signal: the code is not testable enough. Address testability first.
  • Do not write multiple tests at once. One test, one behavior.

Hypothesis-Driven Bug Investigation

When the bug's root cause is unclear:

  1. Brainstorm multiple hypotheses about what causes the defect.
  2. Prioritize by likelihood and cost to falsify.
  3. Write a test targeting the top hypothesis.
  4. Timebox investigation -- if a hypothesis does not pan out within the timebox, move to the next one.
  5. A test that passes unexpectedly is useful data: it eliminates a hypothesis.

Phase 2: GREEN -- Minimal Implementation

  1. Write the smallest, simplest code that makes the failing test pass.
  2. Do not add features, abstractions, or optimizations not required by the test.
  3. Do not anticipate future tests -- solve only the current one.
  4. Run all tests -- the new test passes and no existing tests broke.

GREEN Phase Rules

  • Minimal is enough: ugly code is fine at this stage. Correctness over elegance.
  • If an existing test breaks, your change introduced a regression. Fix it before proceeding.
  • If you find yourself writing significant code, consider whether you skipped a smaller intermediate test.

Phase 3: REFACTOR -- Improve Structure

Only enter this phase when all tests are green.

  1. Look for duplication, unclear naming, or structural issues.
  2. Apply one refactoring at a time.
  3. Run tests after each change -- they must remain green.
  4. Common refactorings at this stage:

- Extract shared logic into functions/methods - Rename for clarity - Simplify conditionals - Move code to more appropriate modules - Deepen modules (smaller public interface, richer implementation)

REFACTOR Phase Rules

  • Never refactor while RED. Get to GREEN first.
  • If a refactoring breaks a test, undo and take a smaller step.
  • Do not add new behavior during refactoring. That is a new RED phase.
  • Refactoring is optional per cycle -- skip if the code is clean enough.

Bug Fix Workflow (Detailed)

This is the primary use case. When encountering a bug:

1. UNDERSTAND    ->  Reproduce and isolate the defect
2. RED           ->  Write a test asserting correct behavior (test fails)
3. GREEN         ->  Fix the bug with minimal code (test passes)
4. REFACTOR      ->  Clean up if needed (tests stay green)
5. VERIFY        ->  Run full test suite; confirm no regressions

Separation of Concerns in PRs

For team workflows, consider splitting into two commits or PRs:

Commit/PR 1 -- Expose the bug:

  • Add the failing test that demonstrates the defect
  • Assert the *correct* expected behavior (test will fail)
  • This proves the bug is real and reproducible

Commit/PR 2 -- Fix the bug:

  • Change production code to fix the defect
  • The previously failing test now passes
  • This proves the fix addresses the exact bug

This separation provides auditable evidence that the test actually catches the defect, not that it was written after-the-fact to rubberstamp a fix.


Anti-Patterns

Horizontal Slicing (write all tests, then all code)

Tests written in bulk test *imagined* behavior. You end up testing shapes and signatures instead of actual behavior. Tests become insensitive to real changes.

WRONG:
  RED:   test1, test2, test3, test4, test5
  GREEN: impl1, impl2, impl3, impl4, impl5

RIGHT:
  RED->GREEN: test1 -> impl1
  RED->GREEN: test2 -> impl2
  RED->GREEN: test3 -> impl3

Testing Implementation Instead of Behavior

Bad signals:

  • Test mocks internal collaborators
  • Test accesses private methods or fields
  • Test verifies internal state (e.g., querying a database directly instead of using the public interface)
  • Test breaks when you rename an internal function

Skipping RED

Writing tests after the implementation ("test-after") does not provide the design feedback that TDD gives. If the test never failed, you have no proof it can catch regressions.

Gold-Plating in GREEN

Adding abstractions, optimizations, or extra features during the GREEN phase. The GREEN phase is about correctness, not elegance. Save structural improvements for REFACTOR.

Refactoring While RED

Changing structure while tests are failing makes it impossible to distinguish between test failures from the original defect and new failures from your refactoring.


Per-Cycle Checklist

Use this mental checklist for each RED-GREEN-REFACTOR cycle:

[ ] Test describes behavior, not implementation
[ ] Test uses the public interface only
[ ] Test would survive an internal refactor
[ ] Test fails for the right reason (RED)
[ ] Implementation is minimal for this test (GREEN)
[ ] No speculative features added (GREEN)
[ ] All tests pass after refactoring (REFACTOR)
[ ] No new behavior introduced during refactor

Language-Specific Guidance

Rust

  • Use #[test] and #[should_panic] for unit tests
  • Place integration tests in tests/ directory
  • Use cargo test to run; cargo test -- --nocapture for stdout
  • Consider #[cfg(test)] mod tests for test modules alongside source
  • Use assert_eq!, assert_ne!, assert! macros
  • For async tests: #[tokio::test] with tokio runtime

Go

  • Use _test.go file suffix and func TestXxx(t *testing.T) signature
  • Run with go test./...
  • Use t.Errorf / t.Fatalf for assertions
  • Table-driven tests are idiomatic for testing multiple inputs
  • Use t.Run for subtests

TypeScript

  • Use test frameworks like vitest, jest, or node:test
  • Run with the appropriate test runner command
  • Use describe/it/expect pattern
  • For async: return promises or use async/await in test functions

Solidity

  • Use Foundry's forge test with function test_* naming
  • Use assertEq, assertTrue, vm.expectRevert for assertions
  • Fork tests with vm.createFork for mainnet state
  • Use setUp() for test fixtures
  • Fuzz tests: function testFuzz_*(uint256 x) for property-based testing

When the Bug is Hard to Test

If writing a test is difficult or the environment lacks test infrastructure:

  1. Write a test that fails with an explicit message explaining the bug and why testing is hard.
  2. Fix the bug.
  3. Replace the explicit failure with a proper assertion once testability improves.
  4. Invest in making the code more testable -- this is a design improvement.

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.09%
按下载量换算24

Claude

28.5%
按下载量换算20

Cursor

19.8%
按下载量换算14

Gemini CLI

8.53%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills