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

evanflow-tdd埃文流 TDD

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

337

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

evanflow-tdd 基于测试驱动开发原则,强调通过公共接口验证行为而非实现细节。

  • 适用于编写可维护测试、避免水平切片和过度依赖内部结构的情况,提升测试稳定性。
  • 核心是写“垂直切片”测试,描述系统能力而非机制,例如“用户可在周限额内完成操作 X”。
  • 安装命令为 npx skills add https://github.com/evanklem/evanflow --skill evanflow-tdd。
  • 建议确认项目是否支持 TDD 流程及测试框架兼容性。

SKILL.md

EvanFlow: TDD

Vocabulary

See evanflow meta-skill. Key terms: vertical slice, behavior through public interface, deep module.

Core Principle

Tests verify behavior through public interfaces, not implementation details. Code can change entirely; tests shouldn't break unless behavior changes.

Good test: "user can perform action X within their weekly rate limit" — describes capability.

Bad test: "calls createX() with status 'QUEUED' then queues a job" — describes mechanics. Renames break it.

Anti-Pattern: Horizontal Slices

DO NOT write all tests first then all implementation. That produces tests of *imagined* behavior, not *actual* behavior. They become insensitive to real changes.

DO vertical slices: one test → one implementation → repeat. Each test responds to what you learned from the previous cycle.

When to Use

  • Any production code change (new feature, bug fix, behavior change, refactor with behavior implications)
  • All new code in your backend's routers and services
  • All new code in your frontend that has testable logic (not pure-presentation components)

When to Skip (with explicit user approval)

  • Throwaway prototypes
  • Generated code (e.g., database.types.ts)
  • Configuration files
  • Pure-presentation React components with no logic

The Flow

1. Embedded Grill — "What to Test"

Before writing any test, confirm with the user:

  • "Which behaviors matter most? We can't test everything."
  • "What's the public interface — what will callers actually use?"
  • "Are there opportunities to make this a deep module (small interface, complex internals)?"
  • "Where do tests need to integrate with real services (DB, payment provider, email provider) vs. where can we test in isolation?"

Default to integration-style tests against real services (real DB, real queue, real cache) where feasible. Mocked dependencies frequently mask divergence between test and production behavior. Document any project-specific exception in your CLAUDE.md.

2. Tracer Bullet

Write ONE test for ONE behavior end-to-end. Prove the path works.

RED:   Write test → run → confirm it fails for the RIGHT reason
GREEN: Write minimal code → run → confirm it passes

3. Incremental Loop

For each remaining behavior:

RED:   Write next test → fails
GREEN: Minimal code to pass → passes

Rules:

  • One test at a time
  • Only enough code to pass the current test
  • Don't anticipate future tests
  • Tests focus on observable behavior, not internals

4. Refactor

After all tests pass:

  • Look for duplication
  • Look for deepening opportunities: small interface hiding complex implementation (deletion test applies)
  • Run tests after each refactor step
  • Never refactor while RED. Get to GREEN first.

Per-Cycle Checklist

[ ] Test describes behavior, not implementation
[ ] Test uses public interface only
[ ] Test would survive an internal refactor (rename, restructure)
[ ] Code is minimal for this test
[ ] No speculative features added
[ ] Test fails for the right reason before code is written
[ ] ASSERTION IS CORRECT — see warning below

⚠️ Assertion-Correctness Warning

Industry research (HumanEval evaluation across four LLMs) found that over 62% of LLM-generated test assertions were incorrect. This is the single most likely failure mode in LLM-driven TDD: the test passes, but it's testing the wrong thing.

Before writing any test assertion, verify:

  • Does this assertion match what the user actually wants? Don't assert on behavior you imagined — assert on behavior the spec/contract names.
  • Is this the assertion's most-precise form? "result is truthy" is weaker than "result equals 42". Loose assertions catch wrong things and miss right things.
  • Would this assertion still pass if the code was subtly wrong? Mentally introduce a one-character bug — does the assertion catch it? If not, the assertion is too weak.
  • Are you asserting on the right field? A common failure: asserting response.status when the meaningful field is response.body.error.
  • For computed values: did you compute the expected value correctly? Don't trust your own arithmetic — verify by hand or another path.

When in doubt about what to assert, STOP and ask the user rather than guess. An asserted-on-the-wrong-thing test is worse than no test — it provides false confidence.

Hard Rules

  • Vertical slices only. Never write all tests first.
  • Test behavior, not internals. If a rename breaks a test but behavior didn't change, the test was wrong.
  • Watch the test fail. If you didn't see RED, you don't know it tests the right thing.
  • Never auto-commit. TDD cycle is RED-GREEN-REFACTOR, not RED-GREEN-REFACTOR-COMMIT.
  • Default to real services for integration tests. Mocked databases routinely diverge from production behavior — prefer a test DB unless your project documents a specific exception.

Hand-offs

  • Tests + impl complete for the task → return to evanflow-executing-plans to mark task done
  • Discovered the interface is wrong → evanflow-design-interface to redesign
  • Discovered deeper architectural issue → evanflow-improve-architecture

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.62%
按下载量换算24

Claude

28.79%
按下载量换算19

Cursor

18.92%
按下载量换算12

Gemini CLI

8.58%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills