Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

event-storming-advanced事件风暴高级

Agent Skill

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

总安装

259

周安装

11

GitHub Stars

61

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill event-storming-advanced

简介

event-storming-advanced 用于深入事件风暴工作坊,支持从宏观规划到详细设计的全流程指导。

  • 适合在复杂业务分析、系统设计和团队协作中提供结构化的事件建模方法和最佳实践建议。
  • 使用时需结合具体业务场景,遵循文档优先原则,并通过 MCP 服务器验证方法适用性。
  • 安装前请确认宿主环境兼容性,检查仓库维护状态,并注意可能触发的联网或外部服务调用。
  • 建议在明确团队结构和需求边界后再启用,以避免设计偏差和后期耦合风险。

SKILL.md

Event Storming Advanced Skill

When to Use This Skill

Use this skill when:

  • Event Storming Advanced tasks - Working on deep dive event storming beyond big picture
  • Planning or design - Need guidance on Event Storming Advanced approaches
  • Best practices - Want to follow established patterns and standards

Overview

Conduct Event Storming sessions beyond big picture to process and design levels.

MANDATORY: Documentation-First Approach

Before facilitating Event Storming:

  1. Invoke docs-management skill for Event Storming patterns
  2. Verify methodology via MCP servers (perplexity)
  3. Base guidance on Alberto Brandolini's methodology

Event Storming Levels

Event Storming Progression:

LEVEL 1: BIG PICTURE
├── Purpose: Understand the whole domain
├── Participants: Everyone (business + tech)
├── Output: Domain overview, hotspots, bounded contexts
└── Duration: 2-4 hours

LEVEL 2: PROCESS LEVEL
├── Purpose: Detail specific business processes
├── Participants: Domain experts + analysts
├── Output: Detailed flows, policies, read models
└── Duration: 2-4 hours per process

LEVEL 3: DESIGN LEVEL
├── Purpose: Translate to software design
├── Participants: Developers + architects
├── Output: Aggregates, commands, event handlers
└── Duration: 2-4 hours per aggregate

LEVEL 4: SOFTWARE DESIGN
├── Purpose: Implementation details
├── Participants: Development team
├── Output: Code structure, APIs, schemas
└── Duration: Ongoing

Sticky Note Colors

Standard Event Storming Palette:

🟠 ORANGE: Domain Events
   - Things that happened
   - Past tense naming
   - Business-significant state changes

🟦 BLUE: Commands
   - User intentions
   - Imperative naming
   - May be rejected

🟨 YELLOW: Actors/Users
   - Who initiates commands
   - Personas or roles
   - External systems

🟪 PURPLE/PINK: Policies/Reactions
   - Business rules
   - "When X happens, we do Y"
   - Automated responses

🟩 GREEN: Read Models
   - Information needed
   - Views/screens
   - Query results

⬜ WHITE: External Systems
   - Third-party integrations
   - Legacy systems
   - APIs we don't control

🔴 RED/PINK: Hot Spots
   - Questions
   - Conflicts
   - Areas of uncertainty

Big Picture Event Storming

Purpose and Outcomes

Big Picture Goals:
1. Create shared understanding
2. Discover bounded contexts
3. Identify hot spots and risks
4. Find key domain events
5. Align business and technical teams

What You Get:
- Timeline of domain events
- Bounded context candidates
- List of questions to answer
- Key actors and systems
- Critical business processes

Facilitation Steps

Big Picture Process:

STEP 1: CHAOTIC EXPLORATION (30 min)
- Everyone writes domain events
- No wrong answers
- Encourage wild ideas
- Cover the whole domain

STEP 2: TIMELINE ENFORCEMENT (30 min)
- Arrange events chronologically
- Left = earlier, right = later
- Find parallel flows
- Identify pivotal events

STEP 3: PIVOTAL EVENTS (20 min)
- Mark key moments (larger stickies)
- Business-critical transitions
- Points of no return
- Natural process boundaries

STEP 4: SWIMLANES (20 min)
- Group by actor or bounded context
- Identify handoffs
- Find integration points
- Note context boundaries

STEP 5: HOTSPOTS (20 min)
- Mark areas of confusion (red)
- Note missing information
- Flag conflicting views
- Capture open questions

STEP 6: BOUNDED CONTEXT SKETCH (20 min)
- Draw boundaries around related events
- Name the contexts
- Identify core vs supporting
- Note context relationships

Process Level Event Storming

Purpose and Depth

Process Level Goals:
1. Detail one business process end-to-end
2. Identify all commands and events
3. Map policies and reactions
4. Define read models needed
5. Clarify business rules

Prerequisites:
- Big picture completed
- Process scope selected
- Domain experts available
- Questions from big picture

Extended Notation

Process Level Additions:

COMMANDS (Blue)
┌────────────────┐
│ CreateOrder    │
│ ─────────────  │
│ By: Customer   │
└────────────────┘

POLICIES (Purple) - aka Reactions
┌────────────────┐
│ ⚡ When order   │
│ placed, reserve│
│ inventory      │
└────────────────┘

READ MODELS (Green)
┌────────────────┐
│ 📖 Product     │
│ Catalog        │
│ (shows price,  │
│ availability)  │
└────────────────┘

AGGREGATE (Yellow border)
┏━━━━━━━━━━━━━━━━┓
┃ Order          ┃
┃ ┌────────────┐ ┃
┃ │ OrderPlaced│ ┃
┃ │ OrderPaid  │ ┃
┃ └────────────┘ ┃
┗━━━━━━━━━━━━━━━━┛

Process Level Template

# Process Level: [Process Name]

## Scope
[What this process covers, start and end points]

## Actors
- [Actor 1]: [Role description]
- [Actor 2]: [Role description]

## Process Flow

[ASCII flow diagram]


## Commands

| Command | Actor | Event Produced | Preconditions |
| --- | --- | --- | --- |
| [Name] | [Who] | [Event] | [What must be true] |

## Events

| Event | Command/Policy | Downstream Effects |
| --- | --- | --- |
| [Name] | [Trigger] | [What happens next] |

## Policies

| Policy | Trigger Event | Action | Produces |
| --- | --- | --- | --- |
| [Name] | [When this] | [Do this] | [Events/Effects] |

## Read Models

| Read Model | Purpose | Populated By |
| --- | --- | --- |
| [Name] | [What query] | [Events] |

## External Systems

| System | Integration Point | Direction |
| --- | --- | --- |
| [Name] | [Where] | Inbound/Outbound |

## Hot Spots & Questions

- [Question needing resolution]
- [Uncertainty to investigate]

## Design Level Event Storming

### Purpose and Artifacts

Design Level Goals:

  1. Define aggregate boundaries
  2. Identify command handlers
  3. Design event structure
  4. Specify validation rules
  5. Plan event sourcing strategy

Outputs:

  • Aggregate definitions
  • Command/event schemas
  • Invariant specifications
  • Consistency boundaries

### Aggregate Identification

Aggregate Design Questions:

BOUNDARY IDENTIFICATION:

  • What must be consistent together?
  • What can be eventually consistent?
  • What is the transaction boundary?

NAMING:

  • What noun represents this cluster?
  • Is it a domain concept?
  • Does business recognize it?

INVARIANTS:

  • What rules must always hold?
  • What combinations are invalid?
  • What constraints protect integrity?

LIFECYCLE:

  • How is it created?
  • How does it change?
  • When is it complete/archived?

### Design Level Notation

Aggregate Card: ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ AGGREGATE: Order ┃ ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━┫ ┃ Commands: ┃ ┃ • PlaceOrder ┃ ┃ • AddItem ┃ ┃ • RemoveItem ┃ ┃ • SubmitPayment ┃ ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━┫ ┃ Events: ┃ ┃ • OrderCreated ┃ ┃ • ItemAdded ┃ ┃ • ItemRemoved ┃ ┃ • OrderPaid ┃ ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━┫ ┃ Invariants: ┃ ┃ • Total > 0 ┃ ┃ • Items not empty ┃ ┃ • Status valid transition ┃ ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━┛


## Bounded Context Discovery

### Context Mapping from Events

Finding Bounded Contexts:

LINGUISTIC BOUNDARIES:

  • Where does terminology change?
  • Where are there synonyms/homonyms?
  • Where do meanings differ?

OWNERSHIP BOUNDARIES:

  • Who owns which events?
  • Where do teams hand off?
  • Which group decides?

LIFECYCLE BOUNDARIES:

  • Different rates of change?
  • Different deployment needs?
  • Different data governance?

TECHNICAL BOUNDARIES:

  • Different tech stacks?
  • Different scalability needs?
  • Different consistency needs?

### Context Relationship Patterns

Context Relationships:

PARTNERSHIP [Context A] ◄──► [Context B] Tight collaboration, shared goals

CUSTOMER-SUPPLIER [Customer] ◄── [Supplier] Supplier serves customer needs

CONFORMIST [Conformist] ──► [Upstream] Downstream conforms to upstream

ANTI-CORRUPTION LAYER (ACL) [Context] ──[ACL]──► [Legacy] Translation layer protects domain

OPEN HOST SERVICE (OHS) [Provider] ──[OHS]──► [Many Consumers] Published API for integration

SHARED KERNEL [Context A] ◄──[Shared]──► [Context B] Small shared code/model (use sparingly)


## Workshop Facilitation

### Room Setup

Physical Requirements:

  • Long wall (8+ meters ideal)
  • Plenty of sticky notes (all colors)
  • Markers for everyone
  • Tape or sticky wall
  • Timer visible to all
  • Refreshments available

Virtual Alternatives:

  • Miro / Mural / FigJam
  • Unlimited canvas
  • Sticky note templates
  • Timer integration
  • Breakout rooms for parallel work

### Facilitation Tips

Effective Facilitation:

DO: ✓ Keep energy high ✓ Enforce timeline direction ✓ Encourage questions ✓ Capture hot spots immediately ✓ Rotate facilitation if long session ✓ Take breaks every 90 minutes ✓ Photograph results frequently

DON'T: ✗ Let one person dominate ✗ Jump to solutions ✗ Ignore quiet participants ✗ Skip hot spot discussion ✗ Allow technology discussion too early ✗ Forget to capture decisions


## Workflow

When conducting Event Storming:

1. **Prepare**: Room, materials, participants, scope
2. **Big Picture**: Domain-wide event exploration
3. **Identify Hotspots**: Mark uncertainties and conflicts
4. **Find Boundaries**: Sketch bounded contexts
5. **Select Focus**: Choose process for deep dive
6. **Process Level**: Detail commands, policies, read models
7. **Design Level**: Define aggregates and invariants
8. **Document**: Capture results in structured format
9. **Iterate**: Refine based on implementation feedback

## References

For detailed guidance:

---

**Last Updated:** 2025-12-26

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.17%
按下载量换算32

Claude

32.79%
按下载量换算30

Cursor

17.31%
按下载量换算16

Gemini CLI

8.75%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills