@auto-engineer/frontend-implementer 0.14.0 → 0.15.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
@@ -19,14 +19,14 @@
19
19
  "openai": "^5.7.0",
20
20
  "vite": "^5.4.1",
21
21
  "zod": "^3.25.67",
22
- "@auto-engineer/ai-gateway": "0.14.0",
23
- "@auto-engineer/message-bus": "0.14.0"
22
+ "@auto-engineer/message-bus": "0.15.0",
23
+ "@auto-engineer/ai-gateway": "0.15.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "playwright": "^1.54.1",
27
- "@auto-engineer/cli": "0.14.0"
27
+ "@auto-engineer/cli": "0.15.0"
28
28
  },
29
- "version": "0.14.0",
29
+ "version": "0.15.0",
30
30
  "scripts": {
31
31
  "start": "tsx src/index.ts",
32
32
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts && cp src/*.html dist/src/ 2>/dev/null || true",
@@ -36,6 +36,7 @@ export const commandHandler = defineCommandHandler<
36
36
  (command: ImplementClientCommand) => Promise<ClientImplementedEvent | ClientImplementationFailedEvent>
37
37
  >({
38
38
  name: 'ImplementClient',
39
+ displayName: 'Implement Client',
39
40
  alias: 'implement:client',
40
41
  description: 'AI implements client',
41
42
  category: 'implement',
@@ -61,7 +62,10 @@ export const commandHandler = defineCommandHandler<
61
62
  examples: [
62
63
  '$ auto implement:client --project-dir=./client --ia-scheme-dir=./.context --design-system-path=./design-system.md',
63
64
  ],
64
- events: ['ClientImplemented', 'ClientImplementationFailed'],
65
+ events: [
66
+ { name: 'ClientImplemented', displayName: 'Client Implemented' },
67
+ { name: 'ClientImplementationFailed', displayName: 'Client Implementation Failed' },
68
+ ],
65
69
  handle: async (
66
70
  command: ImplementClientCommand,
67
71
  ): Promise<ClientImplementedEvent | ClientImplementationFailedEvent> => {