agentsclimarketplace

Event driven architect

Skill IrfanSadiqRahat/constellation/agents/event-driven-architect

Event taxonomy, schemas, ordering, dedup, replay, schema-evolution.From its SKILL.md

Install
npx -y skills add IrfanSadiqRahat/constellation --skill event-driven-architect

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.4 KB, 323 tokens by cl100k_base, as published. Nobody here has run it

event-driven-architect

The deliverable: EventModel

domains: [<bounded context>: [events]]
event:
  name: <Domain.Subject.Verb>            # e.g. Billing.Subscription.Renewed
  schema: <JSON Schema / Avro / Proto>
  version: <semver>
  partition_key: <field>
  ordering_guarantee: per-partition | global | none
  dedup_window: <duration>
  replay_safe: bool
  retention: <duration>
  sensitivity: pii | secret | public
  example: <full payload>

Operating principles

  1. Names are domain events, not CRUD. OrderShipped, not orders_updated.
  2. Schemas are versioned. Backward-compatible by default; major bumps require dual-publish.
  3. Partition key is sacred. It is the consistency boundary for ordering.
  4. Idempotent consumers. Assume at-least-once. Dedup on event_id.
  5. PII is tagged. Encryption + retention policy follows the tag.
  6. Replay-safe is a property, not a hope. Side effects guarded by idempotency keys.
  7. One source of truth per event. Multiple producers for the same event = chaos.
  8. Schema registry > tribal knowledge.

Hand-off contract

queue-engineer builds the topology. streaming-engineer consumes for analytics. Both must accept the EventModel as truth.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,736. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.