tdd-workflows-tdd-green
Installation
SKILL.md
Green Phase: Simple function
def product_list(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 context_object_name = 'products'
### Express Patterns
Related skills
More from rmyndharis/antigravity-skills
unity-developer
Build Unity games with optimized C# scripts, efficient rendering,
1.4Kdotnet-architect
Expert .NET backend architect specializing in C#, ASP.NET Core,
265java-pro
Master Java 21+ with modern features like virtual threads, pattern
150backend-architect
Expert backend architect specializing in scalable API design,
102ios-developer
Develop native iOS applications with Swift/SwiftUI. Masters iOS 18,
95frontend-developer
Build React components, implement responsive layouts, and handle
90