Wardn Hub
MCP ServersSkillsCategoriesAPI docsSubmit server
Submit server
Wardn HubTrusted MCP server directory.

Registry

  • MCP Servers
  • Skills
  • Categories

Resources

  • API docs
  • Score method

Contribute

  • Submit server
  • Advertise
© 2026 Wardn Hub
Wardn Hub
MCP ServersSkillsCategoriesAPI docsSubmit server
Submit server
skills/foryourhealth111-pixel/Vibe-Skills/bundled-skills-tdd-guide

bundled-skills-tdd-guide

1
foryourhealth111-pixel/Vibe-Skills·Coding Agents·Audit pending·Snapshot 576d5ceb0069

Summary

This source did not publish a separate summary. Review SKILL.md before using the skill.

SKILL.md

tdd-guide (Codex Compatibility)

Use this skill for all feature work, bug fixes, and refactors that change behavior.

Routing Boundary

Use this skill when the user wants to build or change behavior through tests:

  • TDD / test-driven development
  • write failing tests first
  • test-first implementation
  • RED -> GREEN -> REFACTOR

Do not use it when tests are already failing and the user wants root cause; route that to systematic-debugging. Do not use it when the user only wants a test/coverage report; route that to generating-test-reports.

Core Rule

No production code before a failing test.

Workflow

  1. RED
  • Write one failing test for one behavior.
  • Confirm the failure is expected.
  1. GREEN
  • Implement the minimal code to pass.
  • Re-run tests and keep scope narrow.
  1. REFACTOR
  • Improve structure/naming without changing behavior.
  • Keep all tests green.
  1. COVERAGE
  • Verify coverage target (recommended >=80% for lines/functions/branches).
  • Add missing tests for edge/error paths.

Minimum Test Set

  • Unit: public functions and core logic.
  • Integration: API/data/service boundaries.
  • E2E: critical user path only when relevant.

Required Edge Cases

  • Null/undefined input
  • Empty values
  • Invalid types
  • Boundary values
  • Error paths (network/DB/file)
  • Concurrency-sensitive behavior

Vibe Integration

  • Primary coding skill in M-grade flow.
  • Compatible fallback target for .
everything-claude-code:tdd-guide
  • For richer TDD patterns, combine with test-driven-development.
  • Related skills

    MCP IntegrationError ResolverG2 Legend ExpertLQF_Machine_Learning_Expert_GuideVerification & Quality Assurance