tdd-workflows-tdd-green
✓Implement the minimal code needed to make failing tests pass in the TDD green phase.
Installation
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: sickn33/antigravity-awesome-skills.
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/sickn33/antigravity-awesome-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: sickn33/antigravity-awesome-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/sickn33/antigravity-awesome-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/sickn33/antigravity-awesome-skills
Details
- Category
- </>Dev Tools
- Source
- skills.sh
- First Seen
- 2026-02-01