tdd-rust
FeaturedTDD workflow for RTK filter development. Red-Green-Refactor with Rust idioms. Real fixtures, token savings assertions, snapshot tests with insta. Auto-triggers on new filter implementation.
Install
Quality Score: 99/100
Skill Content
Details
- Author
- rtk-ai
- Repository
- rtk-ai/rtk
- Created
- 7 months ago
- Last Updated
- today
- Language
- Rust
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
rtk-tdd
Enforces TDD (Red-Green-Refactor) for Rust development. Auto-triggers on implementation, testing, refactoring, and bug fixing tasks. Provides Rust-idiomatic testing patterns with anyhow/thiserror, cfg(test), and Arrange-Act-Assert workflow.
rtk-tdd
Enforces TDD (Red-Green-Refactor) for Rust development. Auto-triggers on implementation, testing, refactoring, and bug fixing tasks. Provides Rust-idiomatic testing patterns with anyhow/thiserror, cfg(test), and Arrange-Act-Assert workflow.
rust-tdd
Test-first workflow for Rust — a rigid red-green-refactor-lint cycle with cargo and cargo-nextest for new features, bug fixes, and refactors. Covers running one test at a time, test placement from unit to integration to end-to-end, hand-written fakes instead of mocking crates, a fault-injection queue for error paths, async test structure with tokio, golden-contract tests with a safe bless procedure, and a subagent split that keeps test design free of implementation bias. Use when you start a behavior change in Rust, reproduce a reported bug, refactor code that must keep its behavior, or review whether a test suite was really written test-first.