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

test-first-thinking测试第一思维

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

196

周安装

8

GitHub Stars

1

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dawiddutoit/custom-claude --skill test-first-thinking

简介

用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。
  • 使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑。
  • 涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。
  • 安装方式:github,需通过 npx skills add 命令从指定仓库添加。

SKILL.md

Test-First Thinking

Overview

Test-first thinking is a design discipline that requires thinking about features, testability, and maintainability BEFORE writing implementation code. This is not strict TDD (Test-Driven Development), but rather a mental model that ensures you design simple, testable interfaces from the start.

Core Principle: If you can't easily describe what tests you'd write, your design may be too complex.

When to Use This Skill

Explicit Triggers

  • "Think about tests first"
  • "Design for testability"
  • "What tests do I need?"
  • "Use test-first approach"
  • "TDD thinking"
  • "How should I test this?"

Implicit Triggers

  • Before creating a new class or method
  • Before refactoring existing code
  • When starting a new feature implementation
  • When reviewing code that lacks tests
  • When design feels overly complex

Debugging Triggers

  • Tests are difficult to write for existing code
  • Code requires extensive mocking to test
  • Implementation has grown too complex
  • Edge cases keep surfacing after deployment

What This Skill Does

This skill guides you through a pre-implementation checklist that ensures:

  1. Feature enumeration - List all expected behaviors before coding
  2. Simplicity check - Consider maintainability and complexity
  3. Test identification - Know what tests validate each behavior
  4. Interface design - Create signatures that make testing easy
  5. Edge case awareness - Think through error conditions upfront

The Test-First Checklist

Run through this checklist BEFORE writing implementation code:

1. Enumerate Features and Behaviors

Ask yourself:

  • What should this class/method do?
  • What are the expected inputs and outputs?
  • What transformations or side effects occur?

Example:

# Before implementing UserRegistration class, list features:
# 1. Validate email format
# 2. Check if email already exists
# 3. Hash password securely
# 4. Store user in database
# 5. Send confirmation email
# 6. Return success/failure result

2. Consider Edge Cases and Error Conditions

Ask yourself:

  • What can go wrong?
  • How should errors be handled?
  • What are the boundary conditions?

Example:

# Edge cases for UserRegistration:
# - Invalid email format
# - Duplicate email
# - Weak password
# - Database connection failure
# - Email service unavailable
# - Null/empty inputs

3. Identify Required Tests

Ask yourself:

  • What test cases validate each feature?
  • How do I verify error handling?
  • What mocks/fixtures are needed?

Example:

# Tests needed for UserRegistration:
# - test_valid_registration_succeeds()
# - test_invalid_email_raises_validation_error()
# - test_duplicate_email_returns_failure()
# - test_weak_password_raises_validation_error()
# - test_database_failure_returns_failure()
# - test_email_service_failure_logs_warning()
# - test_null_inputs_raise_value_error()

4. Design for Testability

Ask yourself:

  • Does this interface make testing easy?
  • Can I test without complex mocking?
  • Are dependencies explicit and injectable?
  • Is the function pure (no hidden side effects)?

Good Design (Testable):

def register_user(
    email: str,
    password: str,
    user_repo: UserRepository,
    email_service: EmailService
) -> Result[User, RegistrationError]:
    """Register new user with explicit dependencies."""
    # Dependencies are injected - easy to mock
    # Returns Result type - easy to test both paths
    # Pure function - predictable behavior

Bad Design (Hard to Test):

def register_user(email: str, password: str) -> None:
    """Register new user."""
    # Hidden dependency on global database connection
    # Hidden dependency on email service
    # No return value - can't verify success
    # Side effects make testing difficult

5. Look at Existing Tests First

When editing existing code:

  1. Read the test file BEFORE modifying implementation
  2. Existing tests show what features the code should have
  3. If tests are missing, write them first
  4. If tests are hard to understand, the code is likely too complex

Example:

# Before editing src/auth/registration.py:
# 1. Read tests/unit/auth/test_registration.py
# 2. Understand what behaviors are tested
# 3. Identify what's NOT tested (gaps)
# 4. Add tests for new behavior
# 5. THEN modify implementation

6. Implement

Only after completing steps 1-5:

  • Write the implementation
  • Run tests continuously as you code
  • Refactor based on test feedback
  • Add tests if new edge cases emerge

Quick Reference: Red Flags

Stop and reconsider if you encounter:

  • "I'll write tests later" - Write tests now or redesign
  • "This needs extensive mocking" - Dependencies may be too coupled
  • "I can't describe what tests I'd write" - Design is too complex
  • "Tests would be too complicated" - Implementation is too complicated
  • "This is hard to test" - This is hard to maintain
  • "I need to mock everything" - Too many dependencies
  • "Tests keep breaking" - Implementation is too fragile

Benefits

AspectBefore Test-First ThinkingAfter Test-First Thinking
Design ComplexityGrows organically, becomes tangledKept simple by testability constraint
Test CoverageWritten after (if at all), incompleteDesigned in from start, comprehensive
Edge CasesDiscovered in productionIdentified during design
Debugging TimeHigh - complex interactionsLow - isolated, testable units
Refactoring ConfidenceLow - fear of breaking thingsHigh - tests verify behavior
Maintenance CostHigh - difficult to changeLow - clear contracts and tests

Integration with Quality Gates

This skill supports:

  • quality-run-quality-gates - Ensures tests exist before marking complete
  • quality-capture-baseline - Requires test coverage metrics
  • quality-detect-regressions - Verifies tests pass consistently
  • test-debug-failures - Makes test failures easier to diagnose

Expected Outcomes

Success

Before implementing PaymentProcessor class:

Features enumerated:
✅ Process credit card payment
✅ Validate payment amount
✅ Handle payment gateway response
✅ Store transaction record
✅ Send receipt email

Edge cases identified:
✅ Invalid card number
✅ Insufficient funds
✅ Gateway timeout
✅ Network failure
✅ Duplicate transaction

Tests identified:
✅ test_valid_payment_succeeds()
✅ test_invalid_card_raises_error()
✅ test_insufficient_funds_returns_failure()
✅ test_gateway_timeout_retries()
✅ test_duplicate_transaction_prevented()

Interface designed:
✅ Dependencies injected (gateway, transaction_repo)
✅ Returns Result type for error handling
✅ Pure function - no hidden state
✅ Easy to mock gateway for testing

Ready to implement with confidence!

Failure (Redesign Needed)

Before implementing ReportGenerator class:

Attempted to list features:
❌ "Generate reports" - too vague
❌ "Process data" - what data? how?
❌ Multiple responsibilities identified
❌ Can't describe specific behaviors

Attempted to identify tests:
❌ "Test that it works" - not specific enough
❌ Would need to mock 15+ dependencies
❌ No clear success/failure paths
❌ Can't isolate behaviors for testing

Red flags:
❌ Design too complex
❌ Unclear responsibilities
❌ Too many dependencies
❌ Not testable in current form

Action: Break into smaller, focused classes:
- ReportDataFetcher (single responsibility)
- ReportFormatter (single responsibility)
- ReportExporter (single responsibility)

Retry test-first thinking for each class individually.

Notes

  1. This is NOT strict TDD - You don't have to write tests first, but you must THINK about tests first
  2. Mental model matters - The discipline of considering testability improves design
  3. Start simple - If you can't explain it simply, you don't understand it well enough
  4. Tests reveal design flaws - Hard to test = hard to maintain
  5. Iterate - If tests are difficult, redesign the interface
  6. Use existing tests as documentation - They show what the code should do
  7. Testability IS maintainability - They're the same thing

Supporting Files

This skill is intentionally minimal - it's a thinking discipline, not a complex workflow. No additional scripts or references are needed.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.4%
按下载量换算21

Claude

33.33%
按下载量换算21

Cursor

21.48%
按下载量换算14

Gemini CLI

8.98%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills