changelog-observer
Track development session events in a daily markdown changelog, including file changes, test results, and key decisions.
Drive one feature through a strict TDD Red-Green-Refactor cycle with checklists for each phase. Use when implementing new functionality test-first, or when the user runs /test-first.
$ npx -y skills add claude-world/director-mode-lite --skill test-first --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/test-firstContext preview
The summary Claude sees to decide when to auto-load this skill.
Drive one feature through a strict TDD Red-Green-Refactor cycle with checklists for each phase. Use when implementing new functionality test-first, or when the user runs /test-first.
name: test-first description: Drive one feature through a strict TDD Red-Green-Refactor cycle with checklists for each phase. Use when implementing new functionality test-first, or when the user runs /test-first. user-invocable: true
Implement TDD for: $ARGUMENTS
1. Write a failing test 2. Run test, confirm failure 3. Write minimal code to pass 4. Refactor while keeping tests green 5. Repeat
---
// auth/login.test.ts
it('should return JWT token for valid credentials', async () => {
const res = await request(app)
.post('/auth/login')
.send({ email: 'test@example.com', password: 'password123' })
expect(res.status).toBe(200)
expect(res.body.token).toBeDefined()
})---
---
---
---
Follow TDD strictly. No shortcuts.
Use Claude Code like a Director, not a Programmer. MIT toolkit with Auto-Loop, guided setup, 27 commands, 14 agents, and 32 skills.
Track development session events in a daily markdown changelog, including file changes, test results, and key decisions.
Validate custom agent file format and structure. Use after creating or editing an agent, before committing agent changes, or when an agent fails to load.
Generate custom agent from template. Use when creating a new subagent from scratch, or scaffolding an agent file with correct frontmatter.
List all available agents (core, expert, self-evolving). Use when the user asks what agents are available or runs /agents.
TDD-based autonomous development loop with checkpoint recovery and observability changelog