@archinsight/cli 3.0.0-snapshot.4 → 3.0.0-snapshot.5

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 (3) hide show
  1. package/README.md +13 -2
  2. package/build/index.js +1991 -176
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -63,7 +63,10 @@ The generic target writes a runtime-neutral guide:
63
63
  references/
64
64
  modeling.md
65
65
  syntax.md
66
- layered-architecture.md
66
+ c1-context.md
67
+ c2-containers.md
68
+ c3-components.md
69
+ c4-deployment.md
67
70
  project-structure.md
68
71
  core.md
69
72
  queries.md
@@ -71,7 +74,11 @@ The generic target writes a runtime-neutral guide:
71
74
  .core/
72
75
  *.ai
73
76
  examples/
74
- layered-architecture.ai
77
+ c1-context.ai
78
+ c2-containers.ai
79
+ c3-components.ai
80
+ c4-deployment-framework.ai
81
+ c4-deployment.ai
75
82
  c2-containers.aiq
76
83
  ```
77
84
 
@@ -105,6 +112,10 @@ avoid guessing Insight syntax from other architecture DSLs, inspect project
105
112
  structure before broad edits or imports, read bundled core language sources for
106
113
  built-in types/presentations/projections, describe systems layer by layer, and
107
114
  write custom `.aiq` diagram queries with the supported Cypher-style subset.
115
+ The bundled core reference includes standard deployment infrastructure
116
+ constructors such as `compute`, `storage`, `broker`, and `networkConnection`,
117
+ including projection rules for storage, broker dependencies, and direct network
118
+ paths.
108
119
 
109
120
  ## Output Contract
110
121