implement
SolidTDD implementation (RED→GREEN→REFACTOR) → verify → review
AI & Automation 151 stars
12 forks Updated today MIT
Install
Quality Score: 88/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Implement
## Flow
```
Analysis → TDD(RED→GREEN→REFACTOR) → /verify → /review → /wrap
```
## Execution
1. **Analysis**: Review plan, identify affected modules
2. **TDD Cycle**:
- RED: Write failing test first
- GREEN: Minimal code to pass
- REFACTOR: Clean up (keep tests passing)
3. **Auto-call `/verify`**: On implementation complete
4. **Auto-call `/review`**: On verify pass
5. **Auto-call `/wrap`**: On review PASS
## Commands
```bash
cargo test
cargo clippy -- -D warnings
cargo fmt --check
```
## Rules
- No implementation without test
- On verify fail → fix and retry
- On review FAIL → fix and retry
- Complete full chain without stopping
Details
- Author
- mag123c
- Repository
- mag123c/toktrack
- Created
- 4 months ago
- Last Updated
- today
- Language
- Rust
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
test-driven-development
Use when implementing any feature or bugfix, before writing implementation code - write the test first, watch it fail, write minimal code to pass; ensures tests actually verify behavior by requiring failure first
2 Updated today
zartin790 AI & Automation Featured
test-driven-development
Use when implementing any feature or bugfix, before writing implementation code
39,350 Updated today
sickn33 AI & Automation Solid
test-driven-development
Use when implementing any feature or bugfix, before writing implementation code
845 Updated yesterday
guanyang AI & Automation Solid
test-driven-development
Use when implementing any feature or bugfix, before writing implementation code
396 Updated yesterday
mxyhi AI & Automation Listed
test-driven-development
Use when implementing any feature or bugfix, before writing implementation code
0 Updated today
The-AIOS