atdd-plan
Produce an ATDD-first implementation plan in Claude Code's native plan mode, with named design patterns called out where they earn their keep. The skill enters…
Draft comprehensive Technical Design Documents. Analyzes codebase, fetches ticket/design/doc context via MCP. Every technical claim is verified against actual code. Unverified information is explicitly marked. Use when the user wants to write a TDD, create a technical design
$ npx -y skills add Flagrare/agent-skills --skill tdd-writer --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/tdd-writerContext preview
The summary Claude sees to decide when to auto-load this skill.
Draft comprehensive Technical Design Documents. Analyzes codebase, fetches ticket/design/doc context via MCP. Every technical claim is verified against actual code. Unverified information is explicitly marked. Use when the user wants to write a TDD, create a technical design
name: tdd-writer description: "Draft comprehensive Technical Design Documents. Analyzes codebase, fetches ticket/design/doc context via MCP. Every technical claim is verified against actual code. Unverified information is explicitly marked. Use when the user wants to write a TDD, create a technical design document, plan a large engineering project, or says 'write a TDD'."
Draft Technical Design Documents for staging up large or complex projects. A TDD is a communication tool: a reader who has never seen the work should be able to read it start to finish and come away understanding **what** you're proposing, **why**, and **how** it will be built. It is not a form to fill in, and it is not a checklist with the prose removed.
**REQUIRED BACKGROUND:** Invoke `/flagrare:write-docs` before drafting. This skill owns *what a TDD must cover and how to verify it*; write-docs owns *how to make the prose readable*. The single most common failure of an AI-drafted TDD is the "medicine sheet", every section flattened into terse bullets, no causality, nothing a human wants to read. The craft layer in write-docs is the antidote, and the section "Writing the document" below applies it specifically to TDDs. Read both; do not skip the handoff.
---
---
**Never assume, imply, or hallucinate ANY technical information.**
Every piece of information about architecture, code, systems, services, data models, and APIs must be: 1. Verified by reading actual source code 2. Confirmed via MCP tools (Jira, Confluence, Notion, Figma) 3. Double-checked against the actual codebase
Use these markers:
[UNKNOWN: Brief description of what's missing] [NEEDS VERIFICATION: What needs to be checked and where] [TBD: Decision pending - who needs to decide]
1. **Service names** - search codebase, verify service exists 2. **API endpoints** - read actual proto files or route definitions 3. **Database tables** - find actual schema/migrations 4. **Data models** - read actual model/entity files 5. **Business logic** - read actual implementation code 6. **Dependencies** - check package.json, build.gradle, requirements.txt
---
Before drafting, collect and verify information from all available sources.
**Step 1: Fetch External Context via MCP**
Jira/Linear ticket (if provided):
Confluence/Notion docs (if referenced):
Figma designs (if linked):
**Step 2: Explore Existing UI (if modifying an existing system)**
If the feature modifies an existing interface, explore the current state:
**Step 3: Analyze Codebase (required)**
Read actual code before writing technical details:
**Step 4: Mark All Unknowns**
After gathering, explicitly list what could NOT be verified:
The template below is a **coverage checklist for the author, not a layout for the reader**. It lists what a good TDD considers. It does not mean each heading gets three bullets and a code block. As you fill it, follow one rule above all others: **write each section as prose a colleague could read aloud.** Reach for a list or table only when the content is genuinely parallel and order-independent, a roster of endpoints, a t-shirt-size scale, a test matrix. The moment a "list" has bullets that depend on each other (this happens, *then* that, *because* of the other), it's a paragraph wearing a list costume. Write the paragraph.
Drop sections that don't apply rather than filling them with "N/A" noise. Mark ANY unverified information with the markers above.
# TDD: [Initiative Title] **Author:** [Name] **Team:** [Team/Squad Name] **Status:** IN REVIEW | GO | NO GO **Links:** - Ticket: [link] - Designs: [link] - Docs: [link] --- ## Introduction ### Context [1-2 paragraphs: What problem are we solving? Business-oriented terms.] ### Problem Statement (Current State) [Current limitations, pain points, gaps.] ### Current Flow (if modifying existing system) [Document the existing UI and user flow.] ### Proposed Solution [2-3 sentences: How do you plan on solving it?] ### Long Term Vision [How does this bring us closer to the team's long-term goals?] --- ## Decision Record - **Driver:** [Author] - **Approver:** [EM or senior IC with domain expertise] - **Contributors:** [Your team, affected teams] - **Informed:** [Engineering, PM, relevant stakeholders] --- ## Phase 1 ### LOE (T-Shirt Size) | Size | Time | |------|------| | XS | 1-2 days | | S | 1 week | | M | 2 weeks | | L | 4 weeks | | XL | 4+ weeks | **This phase:** [SIZE] ### External dependencies & impact [Prose. Who else is affected and how? Name the teams that depend on this or whose systems you touch, the vendors (with co
Thirty-three skills that wrap around your development cycle in Claude Code. They turn tickets into ATDD plans, smoke-test features against a running app or service, hunt down bugs with runtime evidence, guard commits against doc drift, run seven-axis code
Repo: Flagrare/agent-skills
Produce an ATDD-first implementation plan in Claude Code's native plan mode, with named design patterns called out where they earn their keep. The skill enters…
Generate a comprehensive, impact-framed brag-doc entry for a chosen time window (day, week, biweek, month, or custom). Pulls authored PRs, reviews given,…
Programmatic bug bashing, ingest a prescribed test plan (Notion, markdown, pasted spec), drive a real running system (browser via Chrome DevTools / Playwright…
Explore the codebase to map conventions, reusable utilities, analogous features, and data flows relevant to a planned change. Returns raw findings (file paths,…
Generate a daily code review report showing stale PRs, items needing your attention, and active work for your team. Use whenever the user asks for a PR report,…
Evidence-first debugging for bugs that are hard to reproduce, intermittent, performance-related, or where previous static-analysis fixes have failed. Declares…