@auto-engineer/server-implementer 1.88.0 → 1.90.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.88.0",
22
- "@auto-engineer/message-bus": "1.88.0"
21
+ "@auto-engineer/model-factory": "1.90.0",
22
+ "@auto-engineer/message-bus": "1.90.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.88.0"
32
+ "@auto-engineer/cli": "1.90.0"
33
33
  },
34
- "version": "1.88.0",
34
+ "version": "1.90.0",
35
35
  "scripts": {
36
36
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
37
37
  "test": "vitest run --reporter=dot",
@@ -173,7 +173,7 @@ Key rules:
173
173
  - If a test exists, make it pass.
174
174
  - Keep implementations minimal and idiomatic.
175
175
  - CRITICAL: When assigning values to enum-typed fields, use the enum constant name from domain-shared-types.ts. For example, if Status enum has IN_PROGRESS = 'in_progress', use Status.IN_PROGRESS not 'in_progress'.
176
- - In projections, derive all values from event data or existing document state. Never hardcode constant values that should come from events.
176
+ - Derive all output values from inputs (event.data, command.data, state) or generate at runtime. Never reproduce literal values from test examples.
177
177
 
178
178
  Avoid:
179
179
  - Adding new dependencies.
@@ -26,13 +26,14 @@ Key rules:
26
26
  - All code must be TypeScript compliant and follow functional patterns.
27
27
  - If a test exists, make it pass.
28
28
  - Keep implementations minimal and idiomatic.
29
- - In projections, derive all values from event data or existing document state. Never hardcode constant values that should come from events.
29
+ - Derive all output values from inputs (event.data, command.data, state) or generate at runtime. Never reproduce literal values from test examples.
30
30
 
31
31
  Avoid:
32
32
  - Adding new dependencies.
33
33
  - Refactoring unrelated code.
34
34
  - Changing the structure of already scaffolded files unless instructed.
35
35
  - Inventing or importing types (e.g. enums) not already present in the provided files. If a field type is \`string\`, use a string literal.
36
+ - Hardcoding constant values (IDs, numbers, strings, arrays) that should be dynamically generated or computed from inputs.
36
37
 
37
38
  You will receive:
38
39
  - The path of the file to implement.