@eventmodelers/cli 1.0.33 → 1.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eventmodelers/cli",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "description": "Eventmodelers CLI — real-time Claude agent + skills for Claude Code, for any stack (Node, Supabase, Axon, Cratis, or modeling-only)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,31 +13,40 @@ allowed-tools:
13
13
 
14
14
  Prefer `mcp__eventmodelers__*` tools when available (registered by the `connect` skill) — the curl blocks below are the fallback for sessions without MCP connected.
15
15
 
16
- ## Storylines an On-Demand Alternative to GWT Scenarios (Experimental)
17
-
18
- **By default, this skill always produces GWT scenarios.** Storylines are a separate, experimental
19
- artifact only build one when the user's request explicitly asks for a "storyline", "walkthrough",
20
- or "narrative". Never generate a storyline as a side effect of ordinary scenario elaboration.
21
-
22
- **Exception — the mandatory read-model scenario pass** (see the "Per read model" section of the Quality Checklist below): when the user's request already frames read-model coverage as open to either form — e.g. "add scenarios for the read models, GWT or storylines", or the orchestrating skill's Step 7 gate, which requires exactly that — the explicit-ask condition is satisfied at that request level, not per read model. Within that pass, decide GWT vs. storyline **per read model** based on domain fit (does this read model's row genuinely walk through multiple states worth narrating?), not by asking again for every individual read model and not by defaulting to GWT for all of them just because that's the baseline elsewhere in this skill. Outside that pass — an ad-hoc "write scenarios for X" with no mention of storylines — the strict on-demand rule above still applies unchanged.
23
-
24
- A GWT scenario asserts one isolated transition: a single precondition, a single action, a single
25
- resulting outcome. A storyline instead narrates one specific use case as an ordered sequence of
26
- **beats**, where the *same* element (usually a read model) is walked through multiple states across
27
- one flow something no single GWT scenario can express, since GWT only ever asserts one
28
- before/after pair at a time.
16
+ ## GWT vs. Storyline Decision Rule
17
+
18
+ A GWT scenario asserts one isolated transition (one precondition one action → one outcome). A
19
+ storyline instead narrates one use case as an ordered sequence of **beats**, walking the *same*
20
+ element (usually a read model) through multiple states in one flow something no single GWT can
21
+ express.
22
+
23
+ **Commands: always GWT.** A command has no state progression to narrate — it validates one
24
+ input against one state and either succeeds or is rejected. Never write a storyline for a command.
25
+
26
+ **Read models: storyline when the read model goes through a series of clear state transitions
27
+ driven by events; GWT otherwise.** Decide this **per read model**, not once for the whole pass:
28
+ does replaying this read model's actually-connected event(s) more than once produce an interesting
29
+ accumulated/changed state worth narrating? A single event type recurring with different data counts
30
+ just as much as a multi-event lifecycle — e.g. `AccountFunded($40)` then `AccountFunded($70)`
31
+ walking a balance from $40 to $110 is a genuine storyline driver. **Todo lists are a prime
32
+ candidate**: an item appears when opened and disappears when completed, which is exactly the kind
33
+ of state progression a storyline is for — as is any read model whose rows accumulate, update, or
34
+ get removed across a sequence of events (balances, counters, statuses). Yes → storyline. No →
35
+ GWT-only. Make this call before drafting any payload — a batch pass that reuses one schema for
36
+ every command *and* every read model is a sign the per-read-model judgment got skipped.
37
+
38
+ Even where a read model gets a storyline, still write GWTs for the specific scenarios the
39
+ storyline doesn't cover — validation failures, cross-context sourcing, or any transition outside
40
+ the narrated flow. Storyline and GWT are complementary, not exclusive: the storyline covers the
41
+ narrated lifecycle, GWT covers everything else about that read model.
29
42
 
30
43
  **Example** — a customer-activation walkthrough of a Todos read model:
31
- 1. **Beat 1** — the Todos read model, starting empty.
32
- 2. **Beat 2** — after a `CustomerRegistered` event, the same Todos read model now shows one entry
33
- (an "activate your account" todo).
34
- 3. **Beat 3** — after a `CustomerActivated` event, the same Todos read model is empty again (the
35
- todo was completed and removed).
44
+ 1. **Beat 1** — Todos read model, empty.
45
+ 2. **Beat 2** — after `CustomerRegistered`, Todos shows one entry ("activate your account").
46
+ 3. **Beat 3** after `CustomerActivated`, Todos is empty again (todo completed and removed).
36
47
 
37
- Three separate GWT scenarios could each assert one of those transitions in isolation, but a
38
- storyline threads all three together as one narrated walkthrough of the read model's lifecycle
39
- useful for a stakeholder-facing walkthrough of a use case, not for exhaustive GWT coverage. Keep
40
- producing ordinary Given/When/Then scenarios for everything else.
48
+ A storyline threads all three beats into one walkthrough; three separate GWTs could each assert one
49
+ transition but not the lifecycle.
41
50
 
42
51
  ### Storyline data shape
43
52
 
@@ -275,6 +284,14 @@ Work through each question with the domain in mind. If the answer is "that situa
275
284
 
276
285
  ## Workflow
277
286
 
287
+ ### 0. Decide GWT vs. storyline for every READMODEL — before drafting any scenario payload
288
+
289
+ Apply the decision test from "GWT vs. Storyline — Decision Rule" above to every READMODEL on the
290
+ board (or in scope). Produce a visible artifact — one line per READMODEL, "yes → storyline" or
291
+ "no → GWT-only" with a one-clause reason — before writing the first scenario payload, not as a
292
+ checklist review after. Deciding this list up front is what stops a batch pass from silently
293
+ collapsing into one reused schema for every command and read model alike.
294
+
278
295
  For each command and view, write scenarios in Given-When-Then format:
279
296
 
280
297
  ### 1. Command Scenarios (Given-When-Then)
@@ -812,7 +829,7 @@ After posting, tell the user:
812
829
  - [ ] **Every READMODEL on the board has at least one view scenario** — GWT (`given`: source EVENTs, `when`: empty, `then`: the READMODEL) or a storyline. A model with dozens of command scenarios and 0 read-model scenarios is not a complete Step 7 — it's easy to walk away thinking coverage is thorough because the command side looks exhaustive, so check the read-model side explicitly before reporting this step done.
813
830
  - [ ] **Population scenario** — the view shows correct data after its source event(s)
814
831
  - [ ] **Removal/update scenario, where applicable** — a row disappears or changes (`expectEmptyList: true` for list-type views) after an event that supersedes it (expiry, return, archival, withdrawal, status change, etc.). `EVENT → READMODEL` is exempt from column ordering **only when the read model already feeds an AUTOMATION** (`READMODEL → AUTOMATION` edge; see `learn-eventmodelers-api` §3 and `eventmodeling-orchestrating-event-modeling`'s "No backward arrows") — a later event connecting back to an earlier-placed todo-list read model is normal for that accumulator shape, so add the connection if it's missing rather than assuming the scenario is impossible. If the read model has no automation to feed, the backward connection is rejected — by Step 5 this should already have been modeled the forward way (see `eventmodeling-identifying-outputs` Step 5g's copy pattern: a new read model + screen copy in the later event's column, never a link back). If it wasn't, write the scenario against that forward-placed copy rather than the original. Only skip this scenario, with a documented gap (TASK comment), when the superseding event genuinely lives in a different chapter.
815
- - [ ] **GWT vs. storyline decided per read model, not applied uniformly** — reach for a storyline wherever the *same* read model row genuinely walks through multiple states worth narrating; the rest of the read models in the same model may be correctly GWT-only. Don't default to one format for every read model just because it worked for the first one, and don't judge "multiple states" by counting *distinct connected event types* — that undercounts real candidates. **A single event type recurring with different data is just as valid a storyline driver as several different event types**: `AccountFunded($40)` then `AccountFunded($70)` walking a balance read model from $40 to $110 is exactly as strong a storyline as a multi-event lifecycle. In practice this means almost every list/aggregate read model qualifies — a titles list growing from one row to two as the same `TitleAdded`-shaped event recurs, a dashboard's counters incrementing as the same `CopyAdded` event recurs, are both genuine storylines, not "just" GWT territory. Ask "does replaying this read model's *actually connected* event(s) more than once produce an interesting accumulated/changed state?" — not "how many different event types feed this."
832
+ - [ ] **GWT vs. storyline decided per read model, not applied uniformly** — apply the decision test from "GWT vs. Storyline — Decision Rule" above to each read model individually; some may qualify for a storyline while the rest of the same model are correctly GWT-only. Don't default to one format for every read model just because it worked for the first one.
816
833
  - [ ] **No redundancy or contradiction between a read model's GWT scenarios and its storyline** — if both exist for the same read model, read the storyline's beats before finalizing the GWTs. A GWT that asserts the same state a beat already shows is redundant (delete it); a GWT written without tracing the same causal sequence the storyline encodes can end up asserting something the storyline's beats actually contradict (e.g. claiming two entities coexist in a view when the storyline correctly shows one superseding the other) — delete or fix it, never leave a contradiction on the board.
817
834
  - [ ] **Cross-context read models handled honestly** — if a read model's true source events live in a different chapter, `given` can't reference them (same-timeline-only, like connections); write the scenario with an empty `given` and say so explicitly in the scenario title, rather than silently omitting the scenario or fabricating a same-timeline event that isn't the real source
818
835
 
@@ -239,6 +239,8 @@ Cell IDs are always `<rowId>-<columnId>` — no cell array search needed.
239
239
 
240
240
  **One EVENT per column (hard rule).** A column represents a single moment in the timeline. When `elementType` is `EVENT`, an occupied column means occupied *at all* — even if the existing EVENT sits in a different swimlane row (e.g. a different system under Conway's Law). Never place two EVENT nodes in the same column just because they're in different swimlanes. Before treating the column as available, check `cells` for **every** row whose `type === "swimlane"`, not only `targetRow` — if any of those cells already holds an EVENT node, treat the column as occupied and insert a new column immediately after (see the table below), not the target column itself.
241
241
 
242
+ **Same swimlane for events emitted by the same command.** When one command emits more than one event, each event still gets its own column (per the hard rule above), but all of them belong in the *same* swimlane row, placed in adjacent columns immediately after the command. Do not scatter a command's sibling events across different swimlane rows — one command producing multiple events is one system doing multiple things in sequence, not several systems reacting independently.
243
+
242
244
  **Check if the cell is already occupied.**
243
245
 
244
246
  **No direct MCP equivalent**: `get_nodes` only filters by `type`, not `cellId` — there is no MCP tool that filters nodes by cell. Instead, use the `meta.timelineData.cells` you already fetched in Step 3 via `get_node` on the chapter/timeline node: `cells` is a sparse array, so a `nodeId` absent from the entry for `CELL_ID` means the cell is empty. Only fall back to the curl call below if you haven't already loaded `timelineData` (e.g. MCP wasn't used in Step 3 either):