generate-tdd-tasks

Installation
SKILL.md

Generate TDD Tasks

Core Process

Step 1: Project Detection

Detect and list the project's conventions before generating tasks:

  1. Test command — Check config files. Ruby: bundle exec rspec if Gemfile has rspec. Python: pytest. JS/TS: npm test / yarn test. Rust: cargo test. Go: go test ./....
  2. Source directorylib/ (Ruby), src/ (most other languages).
  3. Test directoryspec/ (RSpec), test/ (Minitest/pytest/unittest/Go standard).
  4. Doc tool — YARD (Ruby), JSDoc (JS/TS), rustdoc (Rust), pydoc (Python).
  5. Language/framework — Detect from Gemfile, Cargo.toml, package.json, go.mod, pyproject.toml.

Step 2: Requirements Analysis

Break down the feature/PRD into implementation tasks:

Installs
3
GitHub Stars
2
First Seen
Jul 28, 2026
generate-tdd-tasks — igmarin/ruby-core-skills