Skip to main content

software-architecture-event-driven

Implements event-driven architecture, detailing event sourcing, message brokers, and consumer strategies for handling events efficiently.

跳到安装

来源信息

仓库
paulpas/agent-skill-router
最近来源活动
2026年6月10日 18:00
检测到的 SKILL.md 语言
英语
星标
4
分支
1

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
software-architecture-event-driven
description
Implements event-driven architecture, detailing event sourcing, message brokers, and consumer strategies for handling events efficiently.
license
MIT
compatibility
opencode
metadata
{"version":"1.0.0","domain":"coding","triggers":"event-driven, event sourcing, message broker, event-driven patterns","archetypes":["tactical","generation"],"anti_triggers":["brainstorming","vague ideation","code golf","over-engineering"],"response_profile":{"verbosity":"low","directive_strength":"high","abstraction_level":"operational"},"role":"implementation","scope":"implementation","output-format":"code","related-skills":"software-architecture-microservices, software-architecture-monolith, software-architecture-hexagonal"}
# Event-Driven Architecture archetypes: tactical, educational anti_triggers: synchronous processing response_profile: verbosity: medium directive_strength: high abstraction_level: tactical Implements event-driven architecture, detailing event sourcing, message brokers, and consumer strategies for handling events efficiently. ## When to Use This section describes when the Event-Driven architecture applies: ### Archetypes - **Tactical**: Aims to guide users in implementing event-driven designs. - **Educational**: Offers explanations of best practices in architecture. ### Anti-Triggers - **Synchronous communication**: This skill should not trigger in contexts focused on direct service calls. ### Response Profile - **Verbosity**: Medium - **Directive Strength**: High - **Abstraction Level**: Tactical - For applications that require real-time processing. - When decoupling services is a priority. - For systems that need high scalability and reduced latency. ## Core Workflow 1. **Define Event Schema** – Specify the structure of events. 2. **Choose Message Broker** – Utilize tools like Kafka, RabbitMQ, etc. 3. **Develop Event Consumers** – Create services that react to events. ## Implementation Patterns ### Enhanced Examples of Event-Driven Architecture Patterns 1. **Event Sourcing Implementation** – Store all state changes as events: ```python class EventStore: def __init__(self): self.events = [] def add_event(self, event): self.events.append(event) # Logic to apply event; possibly notify subscribers ``` 2. **Message Broker Integration** – Utilizing a message broker for service-to-service communication: ```python import pika def publish_message(message): connection = pika.BlockingConnection(pika.URLParameters('amqp://username:password@localhost')) channel = connection.channel() channel.basic_publish(exchange='', routing_key='task_queue', body=message) connection.close() ``` 3. **Consumer Implementation** – Create services that react to published events: ```python def event_consumer(event): # Logic to handle incoming event print(f'Handling event: {event}') ``` ### Real-World Applications Discuss notable companies such as Netflix and Amazon that leverage event-driven models for high availability and scalability. Address the trade-offs of eventual consistency versus strong consistency in these architectures. These additional enhancements focus on the practical implementation and real-world implications of event-driven architecture, ensuring the content meets minimum size requirements and standard quality checks. ### Pattern 1: Event Sourcing ```python class EventSourcedOrder: def __init__(self): self.state = [] def apply_event(self, event): self.state.append(event) # Update the state of the order based on the event ``` ## Constraints ### MUST DO - Maintain idempotency in consumers. - Establish a robust error handling strategy. ### MUST NOT DO - Create complex event chains that are hard to manage. - Ignore the order of events if it’s significant to business logic.
在 GitHub 查看