@auto-engineer/information-architect 0.6.1 → 0.6.2

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.
@@ -1,15 +1,16 @@
1
-
2
- > @auto-engineer/information-architect@0.5.1 format /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
3
- > prettier --write "**/*.{js,ts,json,md,yml,yaml}" --ignore-path ../../.prettierignore
4
-
5
- CHANGELOG.md 23ms (unchanged)
6
- DEBUG.md 3ms (unchanged)
7
- package.json 15ms (unchanged)
8
- README.md 47ms (unchanged)
9
- src/auto-ux-schema.json 5ms (unchanged)
10
- src/cli-manifest.ts 3ms (unchanged)
11
- src/commands/generate-ia.ts 28ms (unchanged)
12
- src/generate-ia-schema.ts 8ms (unchanged)
13
- src/index.ts 10ms (unchanged)
14
- src/types.ts 2ms (unchanged)
15
- tsconfig.json 2ms (unchanged)
1
+
2
+ 
3
+ > @auto-engineer/information-architect@0.6.1 format /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
4
+ > prettier --write "**/*.{js,ts,json,md,yml,yaml}" --ignore-path ../../.prettierignore
5
+
6
+ CHANGELOG.mdCHANGELOG.md 24ms (unchanged)
7
+ DEBUG.mdDEBUG.md 4ms (unchanged)
8
+ package.jsonpackage.json 15ms (unchanged)
9
+ README.mdREADME.md 48ms (unchanged)
10
+ src/auto-ux-schema.jsonsrc/auto-ux-schema.json 4ms (unchanged)
11
+ src/cli-manifest.tssrc/cli-manifest.ts 3ms (unchanged)
12
+ src/commands/generate-ia.tssrc/commands/generate-ia.ts 22ms (unchanged)
13
+ src/generate-ia-schema.tssrc/generate-ia-schema.ts 8ms (unchanged)
14
+ src/index.tssrc/index.ts 12ms (unchanged)
15
+ src/types.tssrc/types.ts 3ms (unchanged)
16
+ tsconfig.jsontsconfig.json 1ms (unchanged)
@@ -1,4 +1,5 @@
1
-
2
- > @auto-engineer/information-architect@0.5.1 lint /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
3
- > eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.ts
4
-
1
+
2
+ 
3
+ > @auto-engineer/information-architect@0.6.1 lint /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
4
+ > eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.ts
5
+
@@ -1,5 +1,5 @@
1
1
 
2
- > @auto-engineer/information-architect@0.6.1 test /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
2
+ > @auto-engineer/information-architect@0.6.2 test /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
3
3
  > vitest run
4
4
 
5
5
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @auto-engineer/information-architect@0.6.1 type-check /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
2
+ > @auto-engineer/information-architect@0.6.2 type-check /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
3
3
  > tsc --noEmit
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @auto-engineer/information-architect
2
2
 
3
+ ## 0.6.2
4
+
5
+ ### Patch Changes
6
+
7
+ - renamed packages
8
+ - Updated dependencies
9
+ - @auto-engineer/message-bus@0.5.2
10
+ - @auto-engineer/ai-gateway@0.6.2
11
+
3
12
  ## 0.6.1
4
13
 
5
14
  ### Patch Changes
package/README.md CHANGED
@@ -32,7 +32,7 @@ This plugin provides the following commands:
32
32
 
33
33
  ## What does this plugin do?
34
34
 
35
- The Information Architect plugin analyzes business requirements and generates structured information architectures that serve as blueprints for application development. It creates user experience flows, content hierarchies, navigation structures, and interaction patterns that guide the development of frontend and backend systems.
35
+ The Information Architect plugin analyzes business requirements and generates structured information architectures that serve as blueprints for application development. It creates user experience flows, content hierarchies, navigation structures, and interaction patterns that guide the development of frontend and server systems.
36
36
 
37
37
  ## Key Features
38
38
 
@@ -244,7 +244,7 @@ Defines reusable component specifications:
244
244
 
245
245
  ### Data Models and Relationships
246
246
 
247
- Defines backend data structure requirements:
247
+ Defines server data structure requirements:
248
248
 
249
249
  ```json
250
250
  {
@@ -333,11 +333,11 @@ export default {
333
333
 
334
334
  The Information Architect serves as a foundation for other plugins:
335
335
 
336
- - **@auto-engineer/flowlang**: Uses IA specifications to generate business flows
337
- - **@auto-engineer/emmett-generator**: Creates backend models from IA data specifications
338
- - **@auto-engineer/react-graphql-generator**: Generates frontend structure based on IA navigation
336
+ - **@auto-engineer/flow**: Uses IA specifications to generate business flows
337
+ - **@auto-engineer/server-generator-apollo-emmett**: Creates server models from IA data specifications
338
+ - **@auto-engineer/frontend-generator-react-graphql**: Generates frontend structure based on IA navigation
339
339
  - **@auto-engineer/design-system-importer**: Applies design system constraints to IA components
340
- - **@auto-engineer/frontend-implementation**: Implements pages and components per IA specifications
340
+ - **@auto-engineer/frontend-implementer**: Implements pages and components per IA specifications
341
341
 
342
342
  ## Workflow
343
343
 
@@ -375,7 +375,7 @@ Generated architecture includes:
375
375
  The IA serves as input for subsequent development phases:
376
376
 
377
377
  - Frontend scaffolding follows navigation structure
378
- - Backend models implement data specifications
378
+ - Server models implement data specifications
379
379
  - Component implementations follow IA component specs
380
380
  - User testing validates against defined user journeys
381
381
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@auto-engineer/information-architect",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -14,12 +14,12 @@
14
14
  "access": "public"
15
15
  },
16
16
  "dependencies": {
17
- "@auto-engineer/ai-gateway": "^0.6.1",
18
- "@auto-engineer/message-bus": "^0.5.1",
17
+ "@auto-engineer/ai-gateway": "^0.6.2",
18
+ "@auto-engineer/message-bus": "^0.5.2",
19
19
  "fast-glob": "^3.3.2"
20
20
  },
21
21
  "devDependencies": {
22
- "@auto-engineer/cli": "^0.7.1"
22
+ "@auto-engineer/cli": "^0.7.2"
23
23
  },
24
24
  "scripts": {
25
25
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts && cp src/auto-ux-schema.json dist/",