yugasun/aiops · Archived

tdd

Test-driven development — vertical red-green-refactor slices through public interfaces.

First seen Jun 29, 2026

Installation

$ npx skills add yugasun/aiops --skill tdd

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from yugasun/aiops · top by installs.

npx skills add yugasun/aiops

Browse all from yugasun/aiops

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 4
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 921 B
  • docs SUMMARY.md 100 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

TDD

Tests verify behavior through public interfaces, not implementation. Good tests survive refactors; bad tests break on rename.

See [tests.md](tests.md) and [mocking.md](mocking.md) for examples.

Anti-pattern: horizontal slices

Don't write all tests then all code. One behavior: RED → GREEN → repeat.

Workflow

  1. Plan — read CONTEXT.md/ADRs. Confirm interface changes and behaviors to test with user.
  2. Tracer bullet — one test, one minimal implementation, passes.
  3. Loop — one test at a time; only code to pass current test; no speculation.
  4. Refactor — only when GREEN; see [refactoring.md](refactoring.md).

Per-cycle checklist

  • Describes behavior, not implementation
  • Uses public interface only
  • Minimal code for this test