TDD Master

Enforce Red-Green-Refactor TDD workflows for NestJS services and React components.

Updated Dec 5, 2025
One-click install
npx skills add https://github.com/404-Profit-Not-Found/neural-ticker-core --skill tdd-master
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: TDD Master
Source: https://github.com/404-Profit-Not-Found/neural-ticker-core/tree/main/.agent/skills/tdd-jest
Command: npx skills add https://github.com/404-Profit-Not-Found/neural-ticker-core --skill tdd-master

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enforces a Test-Driven Development workflow across NestJS backends and React frontends, ensuring tests drive design and implementation to reduce defects.

Core Features & Use Cases

  • Enforces Red-Green-Refactor loop to keep tests at the forefront of development for both backend NestJS services and frontend React components.
  • Guides teams to write unit tests before implementation, increasing maintainability and enabling safer refactors.
  • Supports a unified workflow across NestJS and React projects, improving cross-team collaboration and code quality.

Quick Start

Apply the TDD Master workflow: write a failing Jest test for a NestJS service, implement the minimum code to pass, then refactor.

Frequently Asked Questions about TDD Master

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I enforce a TDD Red-Green-Refactor loop across NestJS and React?

You can enforce the Red-Green-Refactor loop by writing a failing Jest test first, implementing the minimum NestJS service or React component code to pass it, then refactoring. This workflow keeps tests at the forefront of development and reduces defects.

What is Test-Driven Development and how does it apply to NestJS services?

Test-Driven Development is a workflow where tests drive design before implementation. For NestJS services, you write a failing Jest unit test first, implement the minimum code to satisfy it, and refactor safely to increase maintainability.

Do I need Jest and React Testing Library to run a TDD workflow on React components?

Yes, you need Jest and React Testing Library to define and satisfy tests for React components. These tools support the unified TDD workflow that drives frontend design and enables safer refactors.

Can I use the same Test-Driven Development workflow for both backend and frontend code?

Yes, you can use the same Test-Driven Development workflow for both backend and frontend code. This unified approach applies Red-Green-Refactor loops to NestJS backends and React frontends, improving cross-team collaboration and code quality.

What's the best way to start writing unit tests before implementation in a NestJS project?

The best way to start writing unit tests before implementation is to apply the TDD workflow: write a failing Jest test for a NestJS service, implement the minimum code required to pass the test, then refactor the implementation.