From coding-agent
Test-driven development process — write failing test, implement to pass, refactor. Use when implementing any feature or fixing bugs.
npx claudepluginhub devjarus/coding-agentThis skill uses the workspace's default tool permissions.
TDD is a discipline: you do not write implementation code until a failing test demands it.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
TDD is a discipline: you do not write implementation code until a failing test demands it.
Repeat for every behavior.
Name tests by the behavior they verify, not by the method they call.
test_calculate()test_total_includes_tax_for_taxable_items()Every test follows three phases:
// Arrange — set up inputs and dependencies
// Act — call the unit under test
// Assert — verify the outcome
Keep each phase visually distinct (blank lines or comments).
TDD is a discipline, not a religion. Two situations where you may skip the cycle:
In all other cases, follow RED-GREEN-REFACTOR.