agent-health
Reads production/traces/agent-metrics.jsonl and displays a per-agent performance summary table for the current or a specified session. Highlights agents with…
Forces the strict Red-Green-Refactor development cycle. Requires one failing behavior test through a public interface before each implementation slice.
$ npx -y skills add tranhieutt/software_development_department --skill test-driven-development --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/test-driven-developmentContext preview
The summary Claude sees to decide when to auto-load this skill.
Forces the strict Red-Green-Refactor development cycle. Requires one failing behavior test through a public interface before each implementation slice.
name: test-driven-development type: workflow description: "Forces the strict Red-Green-Refactor development cycle. Requires one failing behavior test through a public interface before each implementation slice." argument-hint: "[task-description-or-file]" user-invocable: true allowed-tools: Read, Glob, Grep, Bash context: fork effort: 3 agent: lead-programmer when_to_use: "When implementing ANY approved feature, bug fix, algorithmic logic, or when executing atomic tasks generated by the planning phase."
TDD acts as the ultimate truth verifier. It prevents Agents from blindly inserting implementation code based on assumptions. By strictly enforcing the **RED-GREEN-REFACTOR** cycle, we guarantee that all code changes are demonstrably functional and logically sound before moving on to the next task.
Good tests verify observable behavior through the system's public interface: commands, APIs, UI interactions, exported functions, or other supported entry points. They must not couple to private helpers, internal call order, temporary data structures, or implementation-only collaborators. A refactor that preserves behavior should not break the test.
TDD here is strictly vertical. One behavior slice, one failing test, one minimum implementation. Bulk test authoring is not "getting ahead"; it is horizontal slicing and usually produces brittle tests for imagined behavior.
---
**ABSOLUTE DIRECTIVE**: Under NO circumstances are you allowed to write the final implementation logic before a test has explicitly failed in the terminal environment.
**PRECONDITION**: TDD is an execution workflow, not a planning bypass. Before writing the RED test, confirm the applicable `using-sdd` pre-code gate is satisfied:
If no gate is satisfied, stop and request the missing approval or clarification.
of tests for imagined future behavior.
smallest change that makes the current behavior test pass.
Repeat RED -> GREEN -> REFACTOR for the next behavior only after the previous slice is green. This tracer-bullet pattern keeps each test tied to real behavior learned from the previous implementation step.
Do not use horizontal slicing:
Wrong: RED all tests -> GREEN all implementation Right: RED one behavior -> GREEN one behavior -> REFACTOR -> repeat
If you feel tempted to queue several tests first, stop and restate the next single behavior in one sentence. If that sentence contains "and", you are probably slicing too wide.
---
Your final response to the user MUST contain the evidence of your execution in the following format:
# 🧪 TDD Execution: [Feature/Task Name] ## 🔴 RED Phase Evidence - **Test added**: `[test_function_name]` - **Terminal Output**: ```bash [Insert the failing test output trace here - do not fake this]
[Insert the passing test output trace here]
**Status**: ✅ Code verified. Awaiting next command.
--- ## Anti-Rationalizations Be aware of lazy logic that an Agent typically uses to skip testing. If a thought on the left occurs, YOU MUST apply the rebuttal on the right: | Excuse (Agent's Lazy Rationalization) | Rebuttal & Correct Action | | :--- | :--- | | "I'll just write the implementation first because it's super easy, and add the tests after." | **CRITICAL REJECTION.** Writing code before a test guarantees brittle code and untested edge cases. You MUST write the failing test first. No exceptions. | | "The project doesn't seem to have a test framework set up, so I will just skip TDD and do a console.log." | **REJECTED.** `console.log` is not an automated test. If a test runner (Jest, PyTest, Go test, Vitest) is missing, STOP working and ask the User for permission to install and configure one immediately. | | "I don't need to run the final terminal command to check if it's green. I can read the logic and I know it works." | **REJECTED.** Code does not exist until the compiler/test-runner proves it exists. You cannot hallucinate terminal outputs. Run the actual command. | | "Writing the failing test is safe before approval." | **REJECTED.** RED tests are execution. Confirm the pre-code gate before editing tests. | | "I'll write all RED tests first, then implement them together." | **REJECTED.** Bulk RED is horizontal slicing. Write one behavior test, make it pass, then continue. | | "I know future slices already, so I can pre-bake th
Repo: tranhieutt/software_development_department
Reads production/traces/agent-metrics.jsonl and displays a per-agent performance summary table for the current or a specified session. Highlights agents with…
Provides the vendored agent-style v0.3.5 prose rule pack as a portable Claude skill. Use when installing, syncing, applying, or auditing SDD Agent-Style…
Provides Angular best practices for components, modules, services, and reactive patterns. Use when working with Angular TypeScript files, component templates,…
Records unexpected API behaviors, undocumented caveats, version bugs, or non-obvious workarounds into .claude/memory/annotations.md. Use immediately when an…
Defines REST and GraphQL API contracts including endpoints, request/response schemas, auth flows, and versioning strategy. Use when designing a new API,…
Manages the ADR (Architecture Decision Record) registry. Use when recording tech-stack choices, design patterns, or infrastructure decisions with context,…