·tdd-workflows-tdd-green
</>

tdd-workflows-tdd-green

rmyndharis/antigravity-skills

Implement the minimal code needed to make failing tests pass in the TDD green phase.

12Installs·0Trend·@rmyndharis

Installation

$npx skills add https://github.com/rmyndharis/antigravity-skills --skill tdd-workflows-tdd-green

SKILL.md

Green Phase: Simple function def productlist(request): products = Product.objects.all() return JsonResponse({'products': list(products.values())})

Refactor: Class-based view class ProductListView(View): def get(self, request): products = Product.objects.all() return JsonResponse({'products': list(products.values())})

Refactor: Generic view class ProductListView(ListView): model = Product contextobjectname = 'products'

Implement the minimal code needed to make failing tests pass in the TDD green phase. Source: rmyndharis/antigravity-skills.

View raw

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/rmyndharis/antigravity-skills --skill tdd-workflows-tdd-green
Category
</>Dev Tools
Verified
First Seen
2026-02-01
Updated
2026-02-18

Quick answers

What is tdd-workflows-tdd-green?

Implement the minimal code needed to make failing tests pass in the TDD green phase. Source: rmyndharis/antigravity-skills.

How do I install tdd-workflows-tdd-green?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/rmyndharis/antigravity-skills --skill tdd-workflows-tdd-green Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor

Where is the source repository?

https://github.com/rmyndharis/antigravity-skills