multiAI Summary Pending
ddd-context-mapping
Map relationships between bounded contexts and define integration contracts using DDD context mapping patterns.
231 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/ddd-context-mapping/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/sickn33/ddd-context-mapping/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/ddd-context-mapping/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How ddd-context-mapping Compares
| Feature / Agent | ddd-context-mapping | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Map relationships between bounded contexts and define integration contracts using DDD context mapping patterns.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# DDD Context Mapping ## Use this skill when - Defining integration patterns between bounded contexts. - Preventing domain leakage across service boundaries. - Planning anti-corruption layers during migration. - Clarifying upstream and downstream ownership for contracts. ## Do not use this skill when - You have a single-context system with no integrations. - You only need internal class design. - You are selecting cloud infrastructure tooling. ## Instructions 1. List all context pairs and dependency direction. 2. Choose relationship patterns per pair. 3. Define translation rules and ownership boundaries. 4. Add failure modes, fallback behavior, and versioning policy. If detailed mapping structures are needed, open `references/context-map-patterns.md`. ## Output requirements - Relationship map for all context pairs - Contract ownership matrix - Translation and anti-corruption decisions - Known coupling risks and mitigation plan ## Examples ```text Use @ddd-context-mapping to define how Checkout integrates with Billing, Inventory, and Fraud contexts, including ACL and contract ownership. ``` ## Limitations - This skill does not replace API-level schema design. - It does not guarantee organizational alignment by itself. - It should be revisited when team ownership changes.