This orchestrates TDD migrations by farming out all the work to specialized agents while keeping your main context clean. You stay in coordination mode: scouts analyze the codebase, krakens write tests and implementations in parallel, critics review, validators run tests. The workflow is rigid by design (TLDR analysis, failing tests, minimal implementation, build, QLTY check, review) and enforces zero direct file reading or coding in main context. It shines when you need to port code between languages or create multiple similar components following an existing pattern. The example shows five API adapters built in parallel with 39 passing tests in 15 minutes. If you tend to accumulate context soup during migrations, this forces a cleaner approach through agent delegation.
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill tdd-migrate