@auto-engineer/app-implementer 1.28.0 → 1.29.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 +45 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,50 @@
1
1
  # @auto-engineer/app-implementer
2
2
 
3
+ ## 1.29.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`2ef9632`](https://github.com/BeOnAuto/auto-engineer/commit/2ef9632a2db081f201981422f2ba26b026fa7277) Thanks [@SamHatoum](https://github.com/SamHatoum)! - ### react-component-implementer
8
+ - Add staging workflow with `writeStagedStory`, `checkStagedTypes`, and `promoteFromStaging`
9
+ - Add MCP connection pool and browser pool for resource reuse
10
+ - Add context filtering and system prompt caching to reduce tokens
11
+ - Add ts-service for type-aware error feedback with property suggestions
12
+ - Parallelize type checking and browser validation
13
+ - Replace score-based visual evaluation with binary ACK/NACK criteria
14
+ - Enable incremental TypeScript checking in staging
15
+
16
+ ### pipeline
17
+ - Add `.declare().accepts()` builder for AcceptsDescriptor type
18
+ - Show source commands in pipeline graph
19
+
20
+ ### job-graph-processor
21
+ - Add `hasFailedJobs` utility and discriminate GraphProcessed vs GraphProcessingFailed
22
+ - Bridge context.emit in command handler for downstream event routing
23
+
24
+ ### server-generator-apollo-emmett
25
+ - Add cleanServerDir to preserve node_modules during regeneration
26
+ - Accept Model directly instead of modelPath
27
+
28
+ ### server-generator-nestjs
29
+ - Accept Model directly instead of modelPath
30
+
31
+ ### generate-react-client
32
+ - Lock in overwrite behavior for copyStarter
33
+
34
+ ### narrative
35
+ - Remove export-schema command
36
+
37
+ ### global
38
+ - Remove references to information-architect and model-diff packages
39
+ - Fix biome lint errors for CI compliance
40
+ - Update examples and configuration files
41
+
42
+ ### Patch Changes
43
+
44
+ - Updated dependencies [[`2ef9632`](https://github.com/BeOnAuto/auto-engineer/commit/2ef9632a2db081f201981422f2ba26b026fa7277)]:
45
+ - @auto-engineer/message-bus@1.29.0
46
+ - @auto-engineer/model-factory@1.29.0
47
+
3
48
  ## 1.28.0
4
49
 
5
50
  ### Minor Changes
package/package.json CHANGED
@@ -21,13 +21,13 @@
21
21
  "@modelcontextprotocol/sdk": "^1.12.1",
22
22
  "ai": "^6.0.0",
23
23
  "debug": "^4.4.1",
24
- "@auto-engineer/model-factory": "1.28.0",
25
- "@auto-engineer/message-bus": "1.28.0"
24
+ "@auto-engineer/message-bus": "1.29.0",
25
+ "@auto-engineer/model-factory": "1.29.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/debug": "^4.1.12"
29
29
  },
30
- "version": "1.28.0",
30
+ "version": "1.29.0",
31
31
  "scripts": {
32
32
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
33
33
  "type-check": "tsc --noEmit"