Systematically fix all failing tests after business logic changes or refactoring
Systematically fix all failing tests after business logic changes or refactoring. Use when tests break from code updates—agents will update test expectations while preserving business logic and test intent.
/plugin marketplace add NeoLabHQ/context-engineering-kit/plugin install tdd@context-engineering-kitwhat tests or modules to focus onUser can provide to focus on specific tests or modules:
$ARGUMENTS
If nothing is provided, focus on all tests.
After business logic changes, refactoring, or dependency updates, tests may fail because they no longer match the current behavior or implementation. This command orchestrates automated fixing of all failing tests using specialized agents.
Fix all failing tests to match current business logic and implementation.
Read sadd skill if available
Discover test infrastructure
Run all tests
Identify all failing test files
Launch developer agents (parallel)
Verify all fixes
Iterate if needed
When launching agents, use this template:
The business logic has changed and test file {FILE_PATH} is now failing.
Your task:
1. Read the test file and understand what it's testing
2. Read TDD skill (if available) for best practices on writing tests.
3. Read @README.md for project context
4. Run the test: {TEST_COMMAND}
5. Analyze the failure - is it:
- Test expectations outdated? → Fix test assertions
- Test setup broken? → Fix test setup/mocks
- Business logic bug? → Fix logic (rare case)
6. Fix the test and verify it passes
7. Iterate until test passes