component-common-domai…
Finds duplicate business logic spread across multiple components and suggests consolidation. Use when asking "where is this logic duplicated?", "find common…
Creates comprehensive Technical Design Documents (TDD) with mandatory and optional sections through interactive discovery. Use when user asks to "write a design doc", "create a TDD", "technical spec", "architecture document", "RFC", "design proposal", or needs to document a
$ npx -y skills add tech-leads-club/agent-skills --skill create-technical-design-doc --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/create-technical-design-docContext preview
The summary Claude sees to decide when to auto-load this skill.
Creates comprehensive Technical Design Documents (TDD) with mandatory and optional sections through interactive discovery. Use when user asks to "write a design doc", "create a TDD", "technical spec", "architecture document", "RFC", "design proposal", or needs to document a
description: Creates comprehensive Technical Design Documents (TDD) with mandatory and optional sections through interactive discovery. Use when user asks to "write a design doc", "create a TDD", "technical spec", "architecture document", "RFC", "design proposal", or needs to document a technical decision before implementation. Do NOT use for README files, API docs, or general documentation (use docs-writer instead). name: technical-design-doc-creator
You are an expert in creating Technical Design Documents (TDDs) that clearly communicate software architecture decisions, implementation plans, and risk assessments following industry best practices.
Use this skill when:
**CRITICAL**: Always generate the TDD in the **same language as the user's request**. Detect the language automatically from the user's input and generate all content (headers, prose, explanations) in that language.
**Translation Guidelines**:
**Common Section Header Translations**:
| English | Portuguese | Spanish | | -------------------------- | ------------------------------- | ---------------------------- | | Context | Contexto | Contexto | | Problem Statement | Definição do Problema | Definición del Problema | | Scope | Escopo | Alcance | | Technical Solution | Solução Técnica | Solución Técnica | | Risks | Riscos | Riesgos | | Implementation Plan | Plano de Implementação | Plan de Implementación | | Security Considerations | Considerações de Segurança | Consideraciones de Seguridad | | Testing Strategy | Estratégia de Testes | Estrategia de Pruebas | | Monitoring & Observability | Monitoramento e Observabilidade | Monitoreo y Observabilidad | | Rollback Plan | Plano de Rollback | Plan de Reversión |
This skill follows established patterns from:
**CRITICAL PRINCIPLE**: TDDs document **architectural decisions and contracts**, NOT implementation code.
| Category | Include | Example | | ----------------- | ----------------------------- | --------------------------------------------------------------- | | **API Contracts** | Request/Response schemas | `POST /subscriptions` with JSON body structure | | **Data Schemas** | Table structures, field types | `BillingCustomer` table with fields: id, email, stripeId | | **Architecture** | Components, data flow | "Frontend → API → Service → Stripe → Database" | | **Decisions** | What technology, why chosen | "Use Stripe because: global support, PCI compliance, best docs" | | **Diagrams** | Sequence, architecture, flow | Mermaid/PlantUML diagrams showing interactions | | **Structures** | Log format, event schemas | JSON structure for structured logging | | **Strategies** | Approach, not commands | "Rollback via feature flag" (not the curl command) |
| Category | Avoid | Why | | ------------------------ | ---------------------------------------- | ------------------------------------------------- | | **CLI Commands** | `nx db:generate`, `kubectl rollout undo` | Too specific, may change with tooling | | **Code Snippets** | TypeScript/JavaScript implementation | Belongs in code, not docs | | **Framework Specifics** | `@Injectable()`, `extends Repository` | Framework may change, decision is what matters | | **File Paths** | `scripts/backfill-feature.ts` | Implementation detail, not architectural decision | | **Tool-Specific Syntax** | NestJS decorators, TypeORM entities | Document pattern, not implementation |
**Rollback Steps**: ```bash curl -X PATCH https://api.launchdarkly.com/flags/
The secure, validated skill registry for professional AI coding agents. Extend Antigravity, Claude Code, Cursor, Copilot and more with absolute confidence.
Repo: tech-leads-club/agent-skills
Finds duplicate business logic spread across multiple components and suggests consolidation. Use when asking "where is this logic duplicated?", "find common…
Detects misplaced classes and fixes component hierarchy problems — finds code that should belong inside a component but sits at the root level. Use when asking…
Maps architectural components in a codebase and measures their size to identify what should be extracted first. Use when asking "how big is each module?",…
Analyzes coupling between modules using the three-dimensional model (strength, distance, volatility) from "Balancing Coupling in Software Design". Use when…
Creates step-by-step decomposition plans and migration roadmaps for breaking apart monolithic applications. Use when asking "what order should I extract…
Maps business domains and suggests service boundaries in any codebase using DDD Strategic Design. Use when asking "what are the domains in this codebase?",…