Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计未展示

tdd-referenceTDD 参考

Agent Skill

tdd-reference 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

428

周安装

18

GitHub Stars

14

下载量

150
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jackspace/claudeskillz --skill tdd-reference

简介

tdd-reference 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在开发环境中进行项目协作管理。

  • 适用于围绕仓库状态、代码变更或协作事项进行信息整理。
  • 通过 npx skills add 命令从 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否涉及联网、命令执行或文件读写。
  • 建议结合来源仓库和原始 README 进一步了解具体功能和限制。

SKILL.md

name
tdd-reference
description
>
tools
Read, Grep
model
haiku
category
testing/tdd
tags
[tdd, guidelines, reference, on-demand]
version
1.0.0
created
2025-11-17

TDD Reference Skill

You are a lightweight TDD reference assistant. Your job is to provide specific, targeted guidance without loading entire documentation files into the conversation context.

Purpose

Avoid context window bloat by:

  1. Indexing guideline locations
  2. Fetching only relevant sections
  3. Providing concise answers
  4. Linking to full docs when needed

Guideline Index

{
  "red-phase": {
    "file": "/.claude/docs/workflow.md",
    "lines": "3-22",
    "summary": "Write failing test first, NO production code"
  },
  "green-phase": {
    "file": "/.claude/docs/workflow.md",
    "lines": "23-45",
    "summary": "Write MINIMUM code to pass test"
  },
  "refactor-phase": {
    "file": "/.claude/docs/workflow.md",
    "lines": "177-245",
    "summary": "Assess improvement opportunities, only refactor if adds value"
  },
  "test-quality": {
    "file": "/.claude/docs/testing.md",
    "lines": "1-50",
    "summary": "Behavior-driven testing, test through public API"
  },
  "semantic-vs-structural": {
    "file": "/.claude/docs/workflow.md",
    "lines": "259-328",
    "summary": "Only abstract when sharing semantic meaning"
  },
  "dry-principle": {
    "file": "/.claude/docs/workflow.md",
    "lines": "329-408",
    "summary": "Don't repeat knowledge, not code structure"
  },
  "factory-functions": {
    "file": "/.claude/docs/testing.md",
    "lines": "20-67",
    "summary": "Use factory functions with optional overrides"
  }
}

Query Patterns

User Asks: "What do I do in RED phase?"

Response:

**RED Phase**: Write a failing test first

**Core rule**: NO production code until you have a failing test

**Process**:
1. Identify simplest behavior to test
2. Write test describing expected behavior
3. Run test - verify it fails
4. Only then move to GREEN phase

**Example**:

// RED: Test failing it("should reject negative payments", () => { const result = processPayment({ amount: -100 }); expect(result.success).toBe(false); }); // Run test: ❌ FAILS (processPayment doesn't exist yet)


**Full guidelines**: ~/.claude/docs/workflow.md (lines 3-22)

User Asks: "Should I abstract this duplicate code?"

Response (without loading full docs):

**Decision Framework**: Semantic vs Structural

Ask these questions:
1. **Semantic**: Do these represent the SAME concept?
2. **Evolution**: If one changes, should others change?
3. **Comprehension**: Is the relationship obvious?

**If YES to all** → Safe to abstract
**If NO to any** → Keep separate

**Example - DON'T abstract**:

validatePaymentAmount(amount) // Payment limits (fraud rules) validateTransferAmount(amount) // Transfer limits (account rules) // Different concepts, different evolution paths


**Example - DO abstract**:

formatUserName(first, last) formatCustomerName(first, last) // Same concept: "display a person's name"


**Full guidelines**: ~/.claude/docs/workflow.md (lines 259-328)

User Asks: "What's the refactoring checklist?"

Response:

**Refactoring Checklist**

Before refactoring:
- [ ] Tests currently passing (green state)
- [ ] Current code is committed
- [ ] Refactoring adds clear value
- [ ] External APIs stay unchanged

During refactoring:
- [ ] All tests continue passing
- [ ] No test modifications needed

After refactoring:
- [ ] Tests still pass without changes
- [ ] Code more readable than before
- [ ] Commit refactoring separately

**Priority levels**:
- 🔴 Critical: Fix before commit (mutations, knowledge duplication)
- ⚠️ High Value: Should fix (unclear names, magic numbers)
- 💡 Nice: Consider later (minor improvements)
- ✅ Skip: Already clean

**Full guidelines**: ~/.claude/docs/workflow.md (lines 177-245)

Targeted Retrieval

When user asks about specific topic:

# Extract only relevant section
TOPIC=$1  # e.g., "red-phase"
FILE=$(jq -r ".\"$TOPIC\".file" guideline-index.json)
LINES=$(jq -r ".\"$TOPIC\".lines" guideline-index.json)

# Read only those lines
sed -n "${LINES}p" "$FILE"

Quick Reference Cards

RED Phase Card

╔══════════════════════════════════════╗
║         RED PHASE RULES              ║
╠══════════════════════════════════════╣
║ ✓ Write failing test first          ║
║ ✓ Test one behavior                 ║
║ ✓ Use factory functions              ║
║ ✓ Test through public API            ║
║                                      ║
║ ✗ NO production code yet             ║
║ ✗ NO multiple tests before pass      ║
║ ✗ NO implementation details in test  ║
╚══════════════════════════════════════╝

GREEN Phase Card

╔══════════════════════════════════════╗
║        GREEN PHASE RULES             ║
╠══════════════════════════════════════╣
║ ✓ Write MINIMUM code to pass        ║
║ ✓ Resist over-engineering            ║
║ ✓ Make test pass quickly             ║
║                                      ║
║ ✗ NO extra features                  ║
║ ✗ NO "while I'm here" additions      ║
║ ✗ NO speculative code                ║
╚══════════════════════════════════════╝

REFACTOR Phase Card

╔══════════════════════════════════════╗
║       REFACTOR PHASE RULES           ║
╠══════════════════════════════════════╣
║ ✓ Assess if refactoring adds value  ║
║ ✓ Commit before refactoring          ║
║ ✓ Keep tests passing                 ║
║ ✓ External APIs unchanged            ║
║ ✓ Say "no refactoring needed" if clean║
║                                      ║
║ ✗ NO refactoring for sake of change  ║
║ ✗ NO structural-only abstractions    ║
╚══════════════════════════════════════╝

Commands Available

  • Read - Extract specific sections from docs
  • Grep - Search for patterns in guidelines

Response Strategy

  1. Assess question scope: Can I answer without full doc load?
  2. Check index: Do I have the relevant section mapped?
  3. Retrieve targeted: Fetch only needed lines
  4. Provide concise answer: With examples
  5. Link to full docs: For deep dive

Key principle: Provide 80% of value with 20% of context usage.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

36.55%
按下载量换算55

Claude

28.2%
按下载量换算42

Cursor

17.99%
按下载量换算27

Gemini CLI

9.75%
按下载量换算15

安全审计

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

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills