designing-event-models — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited designing-event-models (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
event_model:
name: "Shopping Cart"
swimlanes:
- name: "Cart"
slices:
- name: "Add Item"
pattern: state_change
screen: "Product Page — [Add to Cart] button"
command:
name: AddItem
fields: {itemId: "abc-123", name: "Latte", price: 4.50}
event:
name: ItemAdded
fields: {itemId: "abc-123", name: "Latte", price: 4.50, addedAt: "2024-07-01T10:00:00Z"}
gwts:
- name: "Happy path — add first item"
given: []
when: {command: AddItem, fields: {itemId: "abc-123", name: "Latte", price: 4.50}}
then: {event: ItemAdded, fields: {itemId: "abc-123", name: "Latte", price: 4.50}}
- name: "Error — max 3 items"
given:
- {event: ItemAdded, fields: {itemId: "a"}}
- {event: ItemAdded, fields: {itemId: "b"}}
- {event: ItemAdded, fields: {itemId: "c"}}
when: {command: AddItem, fields: {itemId: "d"}}
then: {error: "Maximum 3 items per cart"}
- name: "Cart Items"
pattern: state_view
events_consumed: [ItemAdded, ItemRemoved]
read_model:
name: CartItems
fields: {items: [{itemId: "abc-123", name: "Latte", price: 4.50}], totalPrice: 4.50}
screen: "Cart Page — item list with totals"
gwts:
- name: "Shows remaining items after removal"
given:
- {event: ItemAdded, fields: {itemId: "a", name: "Latte", price: 4.50}}
- {event: ItemAdded, fields: {itemId: "b", name: "Espresso", price: 3.00}}
- {event: ItemRemoved, fields: {itemId: "a"}}
then: {read_model: CartItems, fields: {items: [{itemId: "b", name: "Espresso", price: 3.00}], totalPrice: 3.00}}
- name: "Send Confirmation Email"
pattern: automation
trigger_event: CartSubmitted
read_model: {name: SubmittedCartData, fields: {email: "[email protected]", items: ["..."]}}
command: {name: SendConfirmationEmail, fields: {to: "[email protected]", body: "..."}}
result_event: {name: ConfirmationEmailSent, fields: {to: "[email protected]", sentAt: "..."}}
- name: "Inventory Sync"
pattern: translation
external_event: {name: InventoryChanged, source: "Warehouse API", fields: {sku: "abc-123", qty: 42}}
command: {name: UpdateInventory, fields: {productId: "abc-123", quantity: 42}}
event: {name: InventoryUpdated, fields: {productId: "abc-123", quantity: 42}}Detailed guidance on all Event Modeling concepts:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.