test-driven-development
Installation
SKILL.md
Test-Driven Development
Write tests before code. The test is the specification. If you can't write a test, you don't understand the requirement.
Related Skills:
kavak-documentation- Query for Kavak-specific testing patterns, kbroker event testing, STS mocking- Use
kavak-platform/platform_docs_searchMCP tool for testing best practices at Kavak
Quick Start
# 1. Write failing test first
# 2. Run to see it fail (RED)
# 3. Write minimal code to pass (GREEN)
# 4. Refactor while tests pass (REFACTOR)
# 5. Repeat