@archinsight/cli 3.0.0-snapshot.4 → 3.0.0-snapshot.6
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/README.md +22 -3
- package/build/index.js +2651 -49
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ archinsight skill init [project-dir] [--target generic|codex|claude] [--out dir]
|
|
|
30
30
|
- `-o, --out <file>` - write payload output to a file instead of stdout.
|
|
31
31
|
- `-t, --theme <theme>` - render theme; defaults to `light`.
|
|
32
32
|
- `--target <target>` - skill target for `skill init`: `generic`, `codex`, or `claude`.
|
|
33
|
-
- `--force` -
|
|
33
|
+
- `--force` - delete and recreate the generated skill directory before writing.
|
|
34
34
|
- `-V, --version` - print version.
|
|
35
35
|
- `-h, --help` - print help.
|
|
36
36
|
|
|
@@ -63,16 +63,31 @@ The generic target writes a runtime-neutral guide:
|
|
|
63
63
|
references/
|
|
64
64
|
modeling.md
|
|
65
65
|
syntax.md
|
|
66
|
-
|
|
66
|
+
c1-context.md
|
|
67
|
+
c2-containers.md
|
|
68
|
+
c3-components.md
|
|
69
|
+
c4-deployment.md
|
|
70
|
+
scaling.md
|
|
67
71
|
project-structure.md
|
|
68
72
|
core.md
|
|
69
73
|
queries.md
|
|
74
|
+
query-recipes.md
|
|
70
75
|
validation.md
|
|
71
76
|
.core/
|
|
72
77
|
*.ai
|
|
73
78
|
examples/
|
|
74
|
-
|
|
79
|
+
c1-context.ai
|
|
80
|
+
c2-containers.ai
|
|
81
|
+
c3-components.ai
|
|
82
|
+
c4-deployment-framework.ai
|
|
83
|
+
c4-deployment.ai
|
|
75
84
|
c2-containers.aiq
|
|
85
|
+
builtin-views/
|
|
86
|
+
no-filter.aiq
|
|
87
|
+
c1.aiq
|
|
88
|
+
c2.aiq
|
|
89
|
+
c3.aiq
|
|
90
|
+
c4.aiq
|
|
76
91
|
```
|
|
77
92
|
|
|
78
93
|
Codex and Claude targets package the same Insight reference directly into the
|
|
@@ -105,6 +120,10 @@ avoid guessing Insight syntax from other architecture DSLs, inspect project
|
|
|
105
120
|
structure before broad edits or imports, read bundled core language sources for
|
|
106
121
|
built-in types/presentations/projections, describe systems layer by layer, and
|
|
107
122
|
write custom `.aiq` diagram queries with the supported Cypher-style subset.
|
|
123
|
+
The bundled core reference includes standard deployment infrastructure
|
|
124
|
+
constructors such as `compute`, `storage`, `broker`, and `networkConnection`,
|
|
125
|
+
including projection rules for storage, broker dependencies, and direct network
|
|
126
|
+
paths.
|
|
108
127
|
|
|
109
128
|
## Output Contract
|
|
110
129
|
|