conducty-tdd

conducty-tdd is a skill for Claude Code, Codex from robertbarclayy/conducty. It costs 68 tokens per session (1,436 once invoked), scanned A, original, MIT.

A test-first development method used both when planning agent work and when implementing it. TDD means defining the expected check before writing the code, then using a red-green-refactor cycle.

In plain words
What is it for?
It helps write verification commands and acceptance criteria first, then guide implementation through failing tests, passing tests, and cleanup.
Why use it?
It makes success criteria concrete before work begins and exposes unclear requirements early.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit It helps write verification commands and acceptance criteria first, then guide implementation through failing tests, passing tests, and cleanup.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/robertbarclayy/conducty/conducty-tdd
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add robertbarclayy/conducty --skill conducty-tdd
Clone the repo
git clone --depth 1 https://github.com/robertbarclayy/conducty

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for conducty-tdd

README.md
[![agentmods](https://agentmods.dev/badge/skills/robertbarclayy/conducty/conducty-tdd/github.svg)](https://agentmods.dev/skills/robertbarclayy/conducty/conducty-tdd)
Your own site
<a href="https://agentmods.dev/skills/robertbarclayy/conducty/conducty-tdd"><img src="https://agentmods.dev/badge/skills/robertbarclayy/conducty/conducty-tdd/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for conducty-tdd

Your own site · 80×15
<a href="https://agentmods.dev/skills/robertbarclayy/conducty/conducty-tdd"><img src="https://agentmods.dev/badge/skills/robertbarclayy/conducty/conducty-tdd.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,436 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 79
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00068 $0.01436
Opus 5 $0.00034 $0.00718
Sonnet 5 $0.00014 $0.00287
Haiku 4.5 $0.00007 $0.00144

Measured 9d ago against content hash 1ce8a2a07bac, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

conducty-tdd scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/conducty-tdd/SKILL.md · 103 lines

How it starts

The opening of the file, as written. The whole thing — 103 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Conducty TDD — Test-Driven Development for Orchestrated Agents

TDD in Conducty operates at two levels: the orchestrator writes the "test" (verification command + acceptance criteria) before writing the prompt, and the implementer follows red-green-refactor within each prompt. Both levels follow the same discipline: define what success looks like before doing the work.

The Two Levels

Level 1: Orchestrator TDD (Plan Time)

The orchestrator (you, during [[conducty-plan]]) writes the verification step FIRST for every prompt. This is the test. If you can't write a concrete verification command, the acceptance criteria aren't clear enough — fix them before generating the prompt.

Define verification → Write prompt → Execute → Verify → Learn

This maps directly to red-green-refactor:

  • Red: The verification command would fail right now (feature doesn't exist yet)
  • Green: After execution, the verification command passes
  • Refactor: In [[conducty-improve]], refine the prompt template based on what worked

If you can't write the verification step, you don't understand what you're building. Go back to [[conducty-shape]].

Level 2: Implementer TDD (Execution Time)

The implementer subagent follows classical red-green-refactor within each prompt:

  1. RED — Write one minimal test that describes the desired behavior. Run it (Bash). Watch it fail.
  2. Verify RED — Confirm it fails because the feature is missing, not because of a typo or import error.
  3. GREEN — Write the simplest code that makes the test pass. Nothing more.
  4. Verify GREEN — Run the test. Confirm it passes. Run all tests. Confirm no regressions.
  5. REFACTOR — Clean up: remove duplication, improve names, extract helpers. Keep tests green.
  6. Repeat — Next behavior, next test.

How They Connect

The orchestrator's verification step is the acceptance test. The implementer's TDD cycle produces unit tests. When the implementer finishes, the orchestrator runs the verification command (via [[conducty-verify]]) to confirm the acceptance test passes. Both levels must be green.

Read the full file on GitHub · 103 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 103 lines · 68 tokens per session scan A 1ce8a2a07bac

Subscribe to this mod's changes

conducty-tdd is a skill published in the GitHub repository robertbarclayy/conducty (176 stars, last pushed 2mo ago), licensed MIT. It adds 68 tokens to every session and 1,436 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.