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.
npx skills add sonature-lab/timsquad --skill tsq-dddgit clone --depth 1 https://github.com/sonature-lab/timsquadWrote 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.
[](https://agentmods.dev/skills/sonature-lab/timsquad/tsq-ddd)<a href="https://agentmods.dev/skills/sonature-lab/timsquad/tsq-ddd"><img src="https://agentmods.dev/badge/skills/sonature-lab/timsquad/tsq-ddd/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.
<a href="https://agentmods.dev/skills/sonature-lab/timsquad/tsq-ddd"><img src="https://agentmods.dev/badge/skills/sonature-lab/timsquad/tsq-ddd.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00063 | $0.00714 |
| Opus 5 | $0.00032 | $0.00357 |
| Sonnet 5 | $0.00013 | $0.00143 |
| Haiku 4.5 | $0.00006 | $0.00071 |
Grade A, and why
tsq-ddd 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.
What it actually says
DDD (Domain-Driven Design) — Strategic
철학
- 도메인 전문가와 개발자의 협업
- 유비쿼터스 언어 (Ubiquitous Language)
- 모델 주도 설계 (Model-Driven Design)
- 경계 컨텍스트로 복잡성 분리
전략적 vs 전술적
| 레벨 | 내용 | 위치 |
|---|---|---|
| 전략적 | Bounded Context, Ubiquitous Language, Context Map, Subdomain | 이 스킬 |
| 전술적 | Aggregate, Entity, Value Object, Repository, Domain Event | architectures/ |
핵심 개념
Ubiquitous Language
도메인 전문가와 개발자가 공유하는 공통 언어. 코드, 문서, 대화 모두에서 동일한 용어 사용.
// Bad: 개발자 용어
class DataProcessor { processRecord(record: Record) { ... } }
// Good: 유비쿼터스 언어
class OrderFulfillment { shipOrder(order: Order) { ... } }
Bounded Context
특정 도메인 모델이 적용되는 명시적 경계. 같은 "Product"도 Catalog(정보), Inventory(재고), Pricing(가격)에서 다른 의미.
Subdomain
- Core: 비즈니스 핵심 차별화 → 최고 인력, 자체 개발
- Supporting: Core 지원, 차별화 아님 → 적당한 품질
- Generic: 모든 비즈니스에 공통 → 구매/오픈소스
Context Map
Bounded Context 간 관계: Partnership, Shared Kernel, Customer-Supplier, Conformist, ACL, Open Host Service
Rules
필수
- 용어 사전 (Glossary) 작성 및 유지
- 코드에서 유비쿼터스 언어 사용
- Bounded Context 경계 명확히 정의
- 컨텍스트 간 통신은 명시적 인터페이스로
- 외부 시스템 연동 시 ACL 사용
금지
- Bounded Context 간 도메인 모델 직접 공유
- 하나의 Aggregate가 여러 Context에 걸침
- 기술 용어를 도메인 모델에 사용
Checklist
| Priority | Item |
|---|---|
| CRITICAL | 용어 사전 존재 및 최신화 |
| CRITICAL | Bounded Context 경계 정의됨 |
| HIGH | 코드가 유비쿼터스 언어 사용 |
| HIGH | Context Map 문서화 |
| MEDIUM | 외부 연동에 ACL 적용 |
| MEDIUM | Subdomain 분류 (Core/Supporting/Generic) |
참조
rules/strategic-patterns.md— Context Map, ACL 예시, Event Storming, 디렉토리 구조
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 9d ago First seen · 80 lines · 63 tokens per session scan A b398554ad300
tsq-ddd is a skill published in the GitHub repository sonature-lab/timsquad (11 stars, last pushed 9d ago), licensed MIT. It adds 63 tokens to every session and 714 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.
Other skills, from other repositories
architecture-patterns
Software architecture patterns and best practices.
ddd-aggregate-modeling
Guides aggregate modeling decisions for DDD services: aggregate root boundaries, child entity vs value object decisions, invariants, snapshot/primitives mapping, specification/criteria usage, and repository contract design. Invoked when the user asks to model or refactor domain entities and aggregate behavior.
domain-driven-design
Design and review software using patterns from Eric Evans' "Domain-Driven Design." Use for DDD tactical patterns (Entities, Value Objects, Aggregates, Repositories, Factories, Domain Services), strategic patterns (Bounded Context, Context Map, Anticorruption Layer, Shared Kernel, Open Host Service), supple design…
domain-modeling
DDD practical guide: Event Storming, Bounded Contexts, Aggregates and domain-driven design patterns.
ddd-architect
A code-organization guide based on Domain-Driven Design, an approach that keeps business rules separate from application actions, outside systems, and user interfaces. It also separates data-access code from the rest of the application.
sparc-methodology
SPARC (Specification, Pseudocode, Architecture, Refinement, Completion) comprehensive development methodology with multi-agent orchestration.