@auto-engineer/server-implementer 1.124.0 → 1.125.1
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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-test.log +3 -3
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +72 -0
- package/dist/src/prompts/systemPrompt.d.ts +1 -1
- package/dist/src/prompts/systemPrompt.d.ts.map +1 -1
- package/dist/src/prompts/systemPrompt.js +2 -0
- package/dist/src/prompts/systemPrompt.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/prompts/systemPrompt.ts +2 -0
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.
|
|
22
|
-
"@auto-engineer/message-bus": "1.
|
|
21
|
+
"@auto-engineer/model-factory": "1.125.1",
|
|
22
|
+
"@auto-engineer/message-bus": "1.125.1"
|
|
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.
|
|
32
|
+
"@auto-engineer/cli": "1.125.1"
|
|
33
33
|
},
|
|
34
|
-
"version": "1.
|
|
34
|
+
"version": "1.125.1",
|
|
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
|
|