Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

context-mapping上下文映射

Agent Skill

context-mapping 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

451

周安装

19

GitHub Stars

61

下载量

158
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:context-mapping(上下文映射)
来源仓库:https://github.com/melodic-software/claude-code-plugins
仓库路径:skills/context-mapping
安装命令:
npx skills add https://github.com/melodic-software/claude-code-plugins --skill context-mapping
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill context-mapping

简介

context-mapping 提供交互式上下文映射分析,基于 DDD 方法论识别系统边界上下文关系。

  • 支持全量分析、快速概览或引导式发现三种模式,输出 CML 格式的结构化关系图。
  • 通过用户确认机制确保关系准确性,避免隐含知识的丢失。
  • 安装前建议确认权限范围、维护状态,以及是否会触发交互式提问或文件生成操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Context Mapping Skill

Interactive Mapping Configuration

Use AskUserQuestion to configure the context mapping session:

# Question 1: Mapping Mode (MCP: DDD context mapping methodology)
question: "What level of context mapping analysis do you need?"
header: "Mode"
options:
  - label: "Full Analysis (Recommended)"
    description: "Systematically analyze all bounded contexts with CML output"
  - label: "Quick Overview"
    description: "Identify obvious relationships only (~3K tokens)"
  - label: "Guided Discovery"
    description: "Interactive, confirm each relationship with user"
  - label: "Pattern Focus"
    description: "Focus on specific integration patterns (ACL, OHS, etc.)"

# Question 2: Relationship Clarity (MCP: DDD upstream/downstream patterns)
question: "How clear are the context boundaries?"
header: "Clarity"
options:
  - label: "Well-Defined"
    description: "Bounded contexts identified, need relationship mapping"
  - label: "Partially Known"
    description: "Some contexts identified, may discover more"
  - label: "Exploratory"
    description: "Start from scratch, discover contexts and relationships"
  - label: "From Event Storm"
    description: "Use output from prior event storming session"

Use these responses to select the appropriate mapping mode and calibrate discovery depth.

Map relationships between bounded contexts using Domain-Driven Design context mapping patterns. Produces Context Mapper DSL (CML) output and integration strategy recommendations.

When to Use This Skill

Keywords: context mapping, bounded contexts, upstream, downstream, ACL, anti-corruption layer, shared kernel, customer supplier, open host service, published language, conformist, partnership, CML, integration patterns, domain relationships

Use this skill when:

  • After event storming when bounded contexts have been identified
  • Defining integration strategies between domains
  • Documenting domain relationships and dependencies
  • Generating context map diagrams (Mermaid/PlantUML)
  • Creating Context Mapper DSL (CML) output
  • Planning team boundaries based on context relationships
  • Identifying where anti-corruption layers are needed

Context Mapping Patterns

Eight strategic DDD patterns for defining context relationships:

Symmetric Patterns (Equal Relationship)

PatternAbbrevDescriptionUse When
Shared KernelSKShared code/model between contextsTwo contexts need identical domain logic
PartnershipPEqual collaboration, mutual dependencyTeams co-evolve, no clear upstream/downstream

Asymmetric Patterns (Upstream/Downstream)

PatternAbbrevDescriptionUse When
Customer/SupplierC/SUpstream supplies, downstream consumesClear provider/consumer relationship
ConformistCFDownstream adopts upstream modelDownstream team has no leverage to negotiate
Anti-Corruption LayerACLDownstream translates upstream modelUpstream model doesn't fit downstream needs
Open Host ServiceOHSUpstream provides formal APIMultiple consumers need standardized access
Published LanguagePLStandardized API format (OpenAPI, etc.)Cross-team communication requires contract

No Integration

PatternAbbrevDescriptionUse When
Separate WaysSWNo integration, independent evolutionContexts have no meaningful relationship

For detailed pattern descriptions with examples: See references/pattern-catalog.md

Pattern Selection Guide

Decision Flow

Do the contexts share code or data model?
├── Yes → Shared Kernel [SK]
└── No → Is there a clear data/service flow?
    ├── No → Do teams collaborate equally?
    │   ├── Yes → Partnership [P]
    │   └── No → Separate Ways [SW]
    └── Yes → Identify Upstream (provider) and Downstream (consumer)
        └── Can downstream influence upstream's model?
            ├── No → Does upstream model fit downstream needs?
            │   ├── Yes → Conformist [CF]
            │   └── No → Anti-Corruption Layer [ACL]
            └── Yes → Customer/Supplier [C/S]
                └── Does upstream serve multiple consumers?
                    ├── Yes → Add Open Host Service [OHS]
                    │   └── Needs contract? → Add Published Language [PL]
                    └── No → Basic C/S is sufficient

For detailed selection criteria: See references/pattern-selection.md

Context Mapper DSL (CML)

Basic Syntax

ContextMap <MapName> {
    contains <Context1>
    contains <Context2>

    // Asymmetric: Downstream [D] <- Upstream [U]
    <DownstreamContext> [D,<patterns>]<-[U,<patterns>] <UpstreamContext>

    // Symmetric: Both sides equal
    <Context1> [<patterns>]<->[<patterns>] <Context2>
}

Notation Reference

SymbolMeaning
[D]Downstream context
[U]Upstream context
<-Asymmetric relationship (upstream to downstream)
<->Symmetric relationship
[D,C]Downstream + Customer
[U,S]Upstream + Supplier
[D,ACL]Downstream with Anti-Corruption Layer
[U,OHS,PL]Upstream with Open Host Service + Published Language
[SK]Shared Kernel (symmetric)
[P]Partnership (symmetric)
[CF]Conformist

For complete CML syntax: See references/cml-syntax.md

Multi-Mode Execution

Mode Selection

ModeDescriptionUse When
fullSystematically analyze all bounded contextsComprehensive mapping, larger domains
quickIdentify obvious relationships onlyQuick overview, small domains
guidedInteractive, confirm each relationshipLearning, validation, uncertain relationships

Full Mode Protocol

  1. Inventory - List all bounded contexts with aggregates
  2. Dependency Scan - Identify data flow and service calls
  3. Pattern Assignment - Apply selection criteria systematically
  4. CML Generation - Produce complete context map
  5. Diagram Generation - Create visual representation
  6. Review Output - Mark uncertain relationships for human review

Quick Mode Protocol

  1. Context List - Enumerate known bounded contexts
  2. Obvious Relationships - Map clear upstream/downstream pairs
  3. Basic CML - Generate minimal context map
  4. Skip Ambiguous - Flag uncertain relationships for later

Guided Mode Protocol

  1. Present Context Pair - Show two contexts to user
  2. Ask Relationship - "Do these contexts interact?"
  3. Determine Direction - "Which provides data/services?"
  4. Select Pattern - Present pattern options with explanations
  5. Confirm - Verify user agrees with classification
  6. Repeat - Continue for all context pairs

Output Artifacts

1. Context Mapper DSL (CML) File

/* Context Map: <DomainName>
 * Generated: <date>
 * Source: Event storming session
 */

ContextMap <DomainName>Map {
    contains <Context1>
    contains <Context2>
    // ... relationships
}

2. Mermaid Diagram

graph LR
    subgraph "Core Domain"
        A[Context1]
    end
    subgraph "Supporting"
        B[Context2]
    end
    A -->|pattern| B

3. Integration Strategy Report

## Integration Strategies

### <Context1> -> <Context2>
- **Pattern:** Customer/Supplier
- **Direction:** Context1 (upstream) supplies Context2 (downstream)
- **Rationale:** <why this pattern>
- **Implementation:** <technical approach>
- **Team Impact:** <organizational considerations>

4. Team Topology Suggestions

Based on context relationships, suggest team boundaries following Team Topologies patterns (Stream-aligned, Platform, Enabling, Complicated Subsystem).

For team topology guidance: See references/team-topologies.md

Integration with Event Storming

Input from Event Storming

Context mapping consumes:

  • Bounded Contexts - Named domain boundaries with primary aggregates
  • Domain Events - Events that cross context boundaries
  • Commands - Operations that trigger cross-context communication
  • Actors - Users/systems that interact with multiple contexts

Workflow Integration

Domain Storytelling
    ↓ (understand business flow)
Event Storming
    ↓ (discover bounded contexts)
Context Mapping ← YOU ARE HERE
    ↓ (define relationships)
Modular Architecture
    ↓ (implement structure)
Fitness Functions
    (enforce boundaries)

Cross-Context Event Identification

When mapping contexts, identify:

  1. Events crossing boundaries - Indicate integration needs
  2. Shared aggregates - Potential Shared Kernel candidates
  3. Translation requirements - ACL candidates
  4. API contracts - OHS/PL candidates

Integration Strategies

For each pattern, there's a recommended technical implementation:

PatternImplementation Strategy
Shared KernelShared NuGet package, common project reference
Customer/SupplierInternal API, MediatR notifications
Anti-Corruption LayerAdapter pattern, translation service
Open Host ServiceREST API, gRPC service
Published LanguageOpenAPI spec, Protobuf definitions
PartnershipShared event bus, bilateral contracts
ConformistDirect model adoption, no translation
Separate WaysNo integration code needed

For detailed implementation guidance: See references/integration-strategies.md

Example Output

E-Commerce Domain Context Map

/* Context Map: E-Commerce Platform
 * Generated: 2025-01-15
 * Bounded Contexts from event storming session
 */

ContextMap ECommercePlatform {
    contains OrderContext
    contains InventoryContext
    contains PaymentContext
    contains ShippingContext
    contains CustomerContext

    /* Order consumes inventory availability
     * Inventory owns stock truth, Order queries it
     */
    OrderContext [D,C]<-[U,S] InventoryContext

    /* Payment isolates external gateway
     * Gateway has foreign model, needs translation
     */
    PaymentContext [D,ACL]<-[U,OHS,PL] ExternalPaymentGateway

    /* Order and Shipping co-evolve
     * Both teams collaborate on fulfillment flow
     */
    OrderContext [P]<->[P] ShippingContext

    /* Customer data shared
     * CustomerInfo value object used by multiple contexts
     */
    OrderContext [SK]<->[SK] CustomerContext
    ShippingContext [SK]<->[SK] CustomerContext
}

Honest Limitations

What This Skill Does Well

  • Systematic pattern identification from bounded contexts
  • CML syntax generation for Context Mapper tooling
  • Integration strategy recommendations based on patterns
  • Team topology alignment suggestions
  • Mermaid/PlantUML diagram generation

What Requires Human Input

  • Team dynamics - Actual organizational politics and relationships
  • Business priorities - Which integrations matter most
  • Legacy constraints - Existing systems that limit options
  • Change appetite - Organizational readiness for restructuring
  • Trade-off decisions - When multiple patterns could work

All outputs clearly distinguish recommendations from requirements and flag uncertain classifications for human review.

Related Skills

  • event-storming - Discover bounded contexts (prerequisite)
  • domain-storytelling - Understand business flow (optional prerequisite)
  • modular-architecture - Implement module structure (next step)
  • adr-management - Document integration decisions
  • architecture-documentation - Generate architecture diagrams

References

User-Facing Interface

When invoked directly by the user, this skill maps bounded context relationships.

Execution Workflow

  1. Parse Arguments - Extract bounded contexts source, mode, and output format. If no source provided, check for event storming output in docs/event-storming/ or ask the user.
  2. Inventory Bounded Contexts - Parse input for context names, responsibilities, aggregates, published/consumed events, and team ownership.
  3. Execute Based on Mode:

- Full: Spawn the context-mapper agent for systematic analysis of all relationships with pattern selection rationale and team topology alignment. - Quick: Identify obvious relationships from event pairs, API dependencies, and shared data access. Apply default patterns. - Guided: Interactive relationship-by-relationship confirmation with evidence presentation and pattern suggestions.

  1. Generate Output - Produce CML file, Mermaid diagram, summary report with pattern distribution and team topology suggestions.
  2. Save Results - Save to docs/architecture/context-map.cml and docs/architecture/context-map.md (or custom --dir).
  3. Suggest Follow-Ups - Recommend architecture documentation, ADRs for pattern decisions, fitness functions for boundaries.

Version History

  • v1.0.0 (2025-12-22): Initial release - Context mapping patterns, CML output, multi-mode execution

Last Updated: 2025-12-22 Model: claude-opus-4-5-20251101

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Antigravity

26.69%
按下载量换算42

Claude Code

21.91%
按下载量换算35

Codex

17.67%
按下载量换算28

Gemini CLI

13.95%
按下载量换算22

OpenCode

7.44%
按下载量换算12

trae

3.41%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills