Implement the minimal code needed to make failing tests pass in the TDD green phase.
Add this skill
npx mdskills install sickn33/tdd-workflows-tdd-greenClear TDD green phase guidance with concrete examples, but lacks actionable agent instructions
def product_list(request): products = Product.objects.all() return JsonResponse({'products': list(products.values())})
class ProductListView(View): def get(self, request): products = Product.objects.all() return JsonResponse({'products': list(products.values())})
class ProductListView(ListView): model = Product context_object_name = 'products'
### Express Patterns
**Inline → Middleware → Service Layer:**
```javascript
// Green Phase: Inline logic
app.post('/api/users', (req, res) => {
const user = { id: Date.now(), ...req.body };
users.push(user);
res.json(user);
});
// Refactor: Extract middleware
app.post('/api/users', validateUser, (req, res) => {
const user = userService.create(req.body);
res.json(user);
});
// Refactor: Full layering
app.post('/api/users',
validateUser,
asyncHandler(userController.create)
);
resources/implementation-playbook.md for detailed patterns and examples.Install via CLI
npx mdskills install sickn33/tdd-workflows-tdd-greenTdd Workflows Tdd Green is a free, open-source AI agent skill. Implement the minimal code needed to make failing tests pass in the TDD green phase.
Install Tdd Workflows Tdd Green with a single command:
npx mdskills install sickn33/tdd-workflows-tdd-greenThis downloads the skill files into your project and your AI agent picks them up automatically.
Tdd Workflows Tdd Green works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Codex, Gemini Cli, Amp, Roo Code, Goose, Opencode, Trae, Qodo, Command Code. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.