What problem does it solve? Developers and AI agents often write production code before tests, leading to untested logic, regressions, and over-engineered implementations. This Skill enforces a strict test-first discipline so every behavior is driven by a failing test. ## Core Features & Use Cases - RED-GREEN-REFACTOR Enforcement: Requires a failing test before any production code, then minimal code to pass, then cleanup with tests still green. - Minimal Implementation Guidance: Instructs hardcoding expected values first and generalizing only when the next test demands it, preventing speculative code. - Cargo Test Integration: Provides commands for running specific or full Rust test suites in the Aixlarity codebase (cargo test -p aixlarity-core). - Use Case: When fixing a bug in a Rust provider adapter, write a failing test reproducing the bug first, confirm it fails for the right reason, then implement the smallest fix that turns it green. ## Quick Start Ask the agent to implement the new feature using test-driven development with a failing test written before any production code.