skills/test-first/SKILL.md
Test-Driven Development (TDD Red-Green-Refactor)
npx skillsauth add claude-world/director-mode-lite test-firstInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Implement TDD for: $ARGUMENTS
// auth/login.test.ts
it('should return JWT token for valid credentials', async () => {
const res = await request(app)
.post('/auth/login')
.send({ email: '[email protected]', password: 'password123' })
expect(res.status).toBe(200)
expect(res.body.token).toBeDefined()
})
Follow TDD strictly. No shortcuts.
development
Complete 5-step development workflow
tools
Test automation specialist for running tests and ensuring coverage
testing
Conventional Commits with quality checks
data-ai
List all available skills (core + custom)