@eventmodelers/cli 0.0.31 → 0.0.32

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": "0.0.31",
3
+ "version": "0.0.32",
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": {
@@ -37,7 +37,7 @@ You now have complete knowledge of the eventmodelers platform API. Use this refe
37
37
 
38
38
  ```typescript
39
39
  MODEL_CONTEXT // Context/domain modeling container
40
- CHAPTER // Timeline/sequence container
40
+ CHAPTER // Timeline/sequence container — a "chapter" IS a timeline (chapterId === timelineId); the terms are used interchangeably across the API
41
41
  ACTOR // System participant (swimlane label)
42
42
  AUTOMATION // Automated action
43
43
  API // External service
@@ -128,6 +128,8 @@ Create a Supabase storage bucket for the board.
128
128
 
129
129
  **File**: `src/slices/change/api-chapters/routes.ts`
130
130
 
131
+ A "chapter" is a timeline — the same entity, referenced as `chapterId` in node/placement payloads and as `:timelineId` in the column/lane/cell routes below.
132
+
131
133
  ### POST `/api/org/:orgId/boards/:boardId/chapters`
132
134
  Create a chapter node.
133
135