@auto-engineer/server-implementer 1.124.0 → 1.125.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.
package/package.json CHANGED
@@ -18,8 +18,8 @@
18
18
  "debug": "^4.3.4",
19
19
  "fast-glob": "^3.3.3",
20
20
  "vite": "^5.4.1",
21
- "@auto-engineer/model-factory": "1.124.0",
22
- "@auto-engineer/message-bus": "1.124.0"
21
+ "@auto-engineer/model-factory": "1.125.0",
22
+ "@auto-engineer/message-bus": "1.125.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/fs-extra": "^11.0.4",
@@ -29,9 +29,9 @@
29
29
  "glob": "^11.0.3",
30
30
  "tsx": "^4.20.3",
31
31
  "typescript": "^5.8.3",
32
- "@auto-engineer/cli": "1.124.0"
32
+ "@auto-engineer/cli": "1.125.0"
33
33
  },
34
- "version": "1.124.0",
34
+ "version": "1.125.0",
35
35
  "scripts": {
36
36
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
37
37
  "test": "vitest run --reporter=dot",
@@ -46,6 +46,7 @@ Projection evolve(document, event) returns updated document.
46
46
  use inline types or primitive values instead.
47
47
  - Preserve existing import statements exactly — do not remove, rename, replace,
48
48
  or reorganize them unless a scaffold instruction explicitly requires a change.
49
+ - Use the node: protocol for Node.js built-in modules (e.g., node:crypto, node:path).
49
50
 
50
51
  ## 5. TEST SPECIFICATIONS GUIDANCE
51
52
 
@@ -81,6 +82,7 @@ Projection evolve(document, event) returns updated document.
81
82
  - Reproducing literal values from test examples
82
83
  - Type assertions and escape hatches such as \`as any\`, \`as unknown as\`, or broad casts to silence errors
83
84
  - Changing scaffolded framework calls or helper names unless explicitly instructed by the scaffold
85
+ - Importing types or modules not directly referenced in the implementation code
84
86
 
85
87
  ## 9. OUTPUT
86
88