@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.
- package/.turbo/turbo-format.log +16 -15
- package/.turbo/turbo-lint.log +5 -4
- package/.turbo/turbo-test.log +1 -1
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +9 -0
- package/README.md +7 -7
- package/package.json +4 -4
package/.turbo/turbo-format.log
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
src/
|
|
11
|
-
src/
|
|
12
|
-
src/generate-ia-
|
|
13
|
-
src/
|
|
14
|
-
src/
|
|
15
|
-
|
|
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.md[2K[1G[90mCHANGELOG.md[39m 24ms (unchanged)
|
|
7
|
+
DEBUG.md[2K[1G[90mDEBUG.md[39m 4ms (unchanged)
|
|
8
|
+
package.json[2K[1G[90mpackage.json[39m 15ms (unchanged)
|
|
9
|
+
README.md[2K[1G[90mREADME.md[39m 48ms (unchanged)
|
|
10
|
+
src/auto-ux-schema.json[2K[1G[90msrc/auto-ux-schema.json[39m 4ms (unchanged)
|
|
11
|
+
src/cli-manifest.ts[2K[1G[90msrc/cli-manifest.ts[39m 3ms (unchanged)
|
|
12
|
+
src/commands/generate-ia.ts[2K[1G[90msrc/commands/generate-ia.ts[39m 22ms (unchanged)
|
|
13
|
+
src/generate-ia-schema.ts[2K[1G[90msrc/generate-ia-schema.ts[39m 8ms (unchanged)
|
|
14
|
+
src/index.ts[2K[1G[90msrc/index.ts[39m 12ms (unchanged)
|
|
15
|
+
src/types.ts[2K[1G[90msrc/types.ts[39m 3ms (unchanged)
|
|
16
|
+
tsconfig.json[2K[1G[90mtsconfig.json[39m 1ms (unchanged)
|
package/.turbo/turbo-lint.log
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
>
|
|
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
|
+
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/information-architect@0.6.
|
|
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.
|
|
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
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
|
|
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
|
|
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/
|
|
337
|
-
- **@auto-engineer/
|
|
338
|
-
- **@auto-engineer/react-graphql
|
|
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-
|
|
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
|
-
-
|
|
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.
|
|
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.
|
|
18
|
-
"@auto-engineer/message-bus": "^0.5.
|
|
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.
|
|
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/",
|