@auto-engineer/dev-server 1.138.0 → 1.140.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,44 @@
1
1
  # @auto-engineer/dev-server
2
2
 
3
+ ## 1.140.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`2b1315d`](https://github.com/BeOnAuto/auto-engineer/commit/2b1315d27aa7fbb5137f098c174b7b1daebbb821) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **react-gen**: domain-aware theming, flexible layouts, chain-of-thought color selection
8
+ - **global**: version packages
9
+
10
+ ### Patch Changes
11
+
12
+ - [`26e5682`](https://github.com/BeOnAuto/auto-engineer/commit/26e56821d984838ba3720baca89c74fc012357c5) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Renamed core entity hierarchy: Journey→Narrative, Narrative→Scene, Slice→Moment for clearer domain language
13
+ - Updated DSL functions and schemas to match new naming (narrative(), scene(), moment())
14
+ - Server-generated directory structure now uses narrative-prefixed paths under domain/narratives
15
+ - Narratives are now required on Model and auto-populated by assembleSpecs
16
+ - Updated dependencies [[`2b1315d`](https://github.com/BeOnAuto/auto-engineer/commit/2b1315d27aa7fbb5137f098c174b7b1daebbb821), [`26e5682`](https://github.com/BeOnAuto/auto-engineer/commit/26e56821d984838ba3720baca89c74fc012357c5)]:
17
+ - @auto-engineer/cli@1.140.0
18
+ - @auto-engineer/message-bus@1.140.0
19
+
20
+ ## 1.139.0
21
+
22
+ ### Minor Changes
23
+
24
+ - [`2451a60`](https://github.com/BeOnAuto/auto-engineer/commit/2451a6024eeec4787b6cd5be965e25a8fc147363) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **react-gen**: simplify interaction rules and prevent duplicate nav header
25
+ - **react-gen**: add specific micro-interaction patterns for cards, buttons, and stat elements
26
+ - **react-gen**: reduce overfitting by offering layout pattern choices instead of mandating one
27
+ - **react-gen**: enhance landing page feature previews and dark CTA footer
28
+ - **react-gen**: add nav CTA button and enforce stat cards on query pages
29
+
30
+ - [`e78f764`](https://github.com/BeOnAuto/auto-engineer/commit/e78f7640fa34a7feb76837e37d082b4a69cd4ce1) Thanks [@osamanar](https://github.com/osamanar)! - - Domain-aware theming with chain-of-thought color selection that analyzes the domain before picking brand-appropriate colors
31
+ - Flexible layouts and persona-driven design for landing and narrative pages, replacing rigid templates
32
+ - Configurable environment variables for model path, schema path, and output directory
33
+ - Added pet adoption sample model for comparison testing
34
+ - Fixed duplicate navigation header rendering
35
+
36
+ ### Patch Changes
37
+
38
+ - Updated dependencies [[`2451a60`](https://github.com/BeOnAuto/auto-engineer/commit/2451a6024eeec4787b6cd5be965e25a8fc147363), [`e78f764`](https://github.com/BeOnAuto/auto-engineer/commit/e78f7640fa34a7feb76837e37d082b4a69cd4ce1)]:
39
+ - @auto-engineer/cli@1.139.0
40
+ - @auto-engineer/message-bus@1.139.0
41
+
3
42
  ## 1.138.0
4
43
 
5
44
  ### Minor Changes
package/package.json CHANGED
@@ -18,16 +18,16 @@
18
18
  "chokidar": "^3.6.0",
19
19
  "debug": "^4.4.1",
20
20
  "execa": "^9.5.2",
21
- "@auto-engineer/cli": "1.138.0",
22
- "@auto-engineer/message-bus": "1.138.0"
21
+ "@auto-engineer/cli": "1.140.0",
22
+ "@auto-engineer/message-bus": "1.140.0"
23
23
  },
24
24
  "publishConfig": {
25
25
  "access": "public"
26
26
  },
27
27
  "devDependencies": {
28
- "@auto-engineer/cli": "1.138.0"
28
+ "@auto-engineer/cli": "1.140.0"
29
29
  },
30
- "version": "1.138.0",
30
+ "version": "1.140.0",
31
31
  "scripts": {
32
32
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
33
33
  "test": "vitest run --reporter=dot",