@auto-engineer/model-factory 1.154.0 → 1.156.0

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @auto-engineer/model-factory@1.154.0 build /home/runner/work/auto-engineer/auto-engineer/packages/model-factory
2
+ > @auto-engineer/model-factory@1.156.0 build /home/runner/work/auto-engineer/auto-engineer/packages/model-factory
3
3
  > tsc && tsx ../../scripts/fix-esm-imports.ts
4
4
 
5
5
  Fixed ESM imports in dist/
@@ -1,5 +1,5 @@
1
1
 
2
- > @auto-engineer/model-factory@1.153.0 test /home/runner/work/auto-engineer/auto-engineer/packages/model-factory
2
+ > @auto-engineer/model-factory@1.155.0 test /home/runner/work/auto-engineer/auto-engineer/packages/model-factory
3
3
  > vitest run --reporter=dot
4
4
 
5
5
 
@@ -9,6 +9,6 @@
9
9
 
10
10
   Test Files  1 passed (1)
11
11
   Tests  5 passed (5)
12
-  Start at  19:34:06
13
-  Duration  2.21s (transform 423ms, setup 0ms, collect 329ms, tests 181ms, environment 0ms, prepare 596ms)
12
+  Start at  15:46:25
13
+  Duration  1.91s (transform 373ms, setup 0ms, collect 309ms, tests 153ms, environment 0ms, prepare 544ms)
14
14
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @auto-engineer/model-factory@1.153.0 type-check /home/runner/work/auto-engineer/auto-engineer/packages/model-factory
2
+ > @auto-engineer/model-factory@1.155.0 type-check /home/runner/work/auto-engineer/auto-engineer/packages/model-factory
3
3
  > tsc --noEmit
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,55 @@
1
1
  # @auto-engineer/model-factory
2
2
 
3
+ ## 1.156.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`a6b41da`](https://github.com/BeOnAuto/auto-engineer/commit/a6b41da5ff4a0dfe158d051e810f7a56adf9e820) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed state reference detection to use all stream events, preventing sibling event names from being incorrectly identified as state references
8
+ - Added field hints for sibling events in generated state types
9
+
10
+ - [`3dad664`](https://github.com/BeOnAuto/auto-engineer/commit/3dad66402eeef694318da8d470adc1ba2771f6ff) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added automatic detection of sibling events across shared streams for smarter event evolution
11
+ - Wired all stream events into the evolve template with proper temporal ordering and deduplication
12
+
13
+ - [`14dab22`](https://github.com/BeOnAuto/auto-engineer/commit/14dab22ee206a249deebf4db6910f0bb131347c3) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - State-ref Given steps with preceding siblings now generate Inspect state instructions instead of succeeding from initial state, improving event stream resolution accuracy
14
+
15
+ - [`dbe3629`](https://github.com/BeOnAuto/auto-engineer/commit/dbe3629bd3f8479631c9af94f9a9bcb1fe6a247a) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added sibling event resolution for shared streams in Given lookups
16
+ - State-ref fallback now uses preceding sibling events with example data
17
+
18
+ - [`061af97`](https://github.com/BeOnAuto/auto-engineer/commit/061af97904cca0eebb574e536974520e6560098c) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added utility to find events produced by sibling command moments that share the same stream pattern, enabling cross-command event awareness
19
+
20
+ - [`d27048c`](https://github.com/BeOnAuto/auto-engineer/commit/d27048c4089c2d3b7b3c6580dd91a81e1be441da) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added normalizeStreamPattern() utility that converts template variables to wildcards for flexible stream pattern matching
21
+
22
+ ### Patch Changes
23
+
24
+ - [`52b0795`](https://github.com/BeOnAuto/auto-engineer/commit/52b0795f94c2eb03c71943a708742c8a0f1982fe) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added planning document for shared-stream sibling event awareness in the Apollo Emmett server generator
25
+
26
+ - [`83f9321`](https://github.com/BeOnAuto/auto-engineer/commit/83f93210969133e9a4b18444b7a2a8b1be97593c) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added named UUID constant generation in handle.ts, producing readable variables (e.g., `const workoutId = randomUUID()`) instead of inline calls
27
+ - UUID variables from stream patterns are now available to all templates, not just the commands where they appear
28
+ - Generated UUIDs are passed to the decide function via a structured context object for cleaner data flow
29
+
30
+ - [`28745a6`](https://github.com/BeOnAuto/auto-engineer/commit/28745a6b8551184279237130d41775bcb6bf3e3b) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **global**: version packages
31
+ - **global**: fix pnpm lock
32
+
33
+ - [`d21b666`](https://github.com/BeOnAuto/auto-engineer/commit/d21b666e72b44017b73cb4b4e0d200a19d4f2c65) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed package manager lock file to ensure consistent dependency resolution
34
+
35
+ - [`d95fb26`](https://github.com/BeOnAuto/auto-engineer/commit/d95fb26b13f40791929b480e4133fe96c9e47dda) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Accept an optional context parameter in decide functions for UUID coordination across command handling
36
+ - Auto-assign UUID fields from context when a stream UUID is also an event field, falling back to randomUUID()
37
+ - Clean up generated code comments by filtering auto-assigned fields from instruction hints
38
+
39
+ ## 1.155.0
40
+
41
+ ### Minor Changes
42
+
43
+ - [`d9af280`](https://github.com/BeOnAuto/auto-engineer/commit/d9af280fa8fb26e1b146e5ed25ed276c3ba20baf) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **packages/react-gen**: improves react gen
44
+ - **react-gen**: add moment agent with single-component generation
45
+ - **react-gen**: add page agent with inspect_components tool for page composition
46
+ - **react-gen**: add inspect_components tool using component-parser + ts-morph
47
+ - **react-gen**: add deterministic index file generator for feature re-exports
48
+
49
+ ### Patch Changes
50
+
51
+ - [`5ce69d6`](https://github.com/BeOnAuto/auto-engineer/commit/5ce69d60a687dfbd4923b1ef7a1df81e77e55477) Thanks [@osamanar](https://github.com/osamanar)! - - Fixed package manager lock file to ensure consistent dependency resolution
52
+
3
53
  ## 1.154.0
4
54
 
5
55
  ### Minor Changes
package/package.json CHANGED
@@ -22,7 +22,7 @@
22
22
  "publishConfig": {
23
23
  "access": "public"
24
24
  },
25
- "version": "1.154.0",
25
+ "version": "1.156.0",
26
26
  "scripts": {
27
27
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
28
28
  "test": "vitest run --reporter=dot",