@auto-engineer/information-architect 0.14.0 → 0.16.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
@@ -14,14 +14,14 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "fast-glob": "^3.3.2",
17
- "@auto-engineer/message-bus": "0.14.0",
18
- "@auto-engineer/ai-gateway": "0.14.0",
19
- "@auto-engineer/narrative": "0.14.0"
17
+ "@auto-engineer/ai-gateway": "0.16.0",
18
+ "@auto-engineer/narrative": "0.16.0",
19
+ "@auto-engineer/message-bus": "0.16.0"
20
20
  },
21
21
  "devDependencies": {
22
- "@auto-engineer/cli": "0.14.0"
22
+ "@auto-engineer/cli": "0.16.0"
23
23
  },
24
- "version": "0.14.0",
24
+ "version": "0.16.0",
25
25
  "scripts": {
26
26
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts && cp src/auto-ux-schema.json dist/",
27
27
  "test": "vitest run --reporter=dot",
@@ -58,11 +58,16 @@ export const commandHandler = defineCommandHandler<
58
58
  (command: GenerateIACommand) => Promise<IAGeneratedEvent | IAGenerationFailedEvent | IAValidationFailedEvent>
59
59
  >({
60
60
  name: 'GenerateIA',
61
+ displayName: 'Generate IA',
61
62
  alias: 'generate:ia',
62
63
  description: 'Generate Information Architecture',
63
64
  category: 'generate',
64
65
  icon: 'building',
65
- events: ['IAGenerated', 'IAGenerationFailed', 'IAValidationFailed'],
66
+ events: [
67
+ { name: 'IAGenerated', displayName: 'IA Generated' },
68
+ { name: 'IAGenerationFailed', displayName: 'IA Generation Failed' },
69
+ { name: 'IAValidationFailed', displayName: 'IA Validation Failed' },
70
+ ],
66
71
  fields: {
67
72
  outputDir: {
68
73
  description: 'Context directory',