T3d grill me
DDD + TDD harness for Claude Code — 5 hooks enforce Domain layer purity, cross-context call rules, and red-green discipline at edit time. Ships 4 skills + project templates.
npx -y skills add coolsocket/t3d --skill t3d-grill-meAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use BEFORE writing code on any non-trivial feature — bounded context selection, aggregate boundaries, invariants, ubiquitous language. The harness assumes you grill-me first.
SKILL.md
1.4 KB, as published. Nobody here has run it
Interview me relentlessly about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one. For each question, provide your recommended answer.
Ask the questions one at a time.
If a question can be answered by exploring the codebase, explore the codebase instead.
When working in a t3d-harnessed project, prioritize grilling on:
- Which bounded context does this feature belong to? (Look at
CONTEXT-MAP.md.) - Which aggregate root owns the state change? Are we introducing a new aggregate?
- What invariants must hold? List them — they'll go in
INVARIANTS.mdand each gets one failing test. - What ubiquitous language terms does this introduce? Are any of them already in
contexts/<ctx>/CONTEXT.md? Are we redefining a term used in another context (that's fine — contexts have local languages)? - Are there cross-context calls? If yes, they MUST go through
contexts.<other>.application.api(not internal domain imports). The PreToolUse hook will enforce this.