@archinsight/cli 3.0.0-snapshot.2 → 3.0.0-snapshot.4
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 +11 -4
- package/build/index.js +2885 -2015
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,7 +24,8 @@ archinsight skill init [project-dir] [--target generic|codex|claude] [--out dir]
|
|
|
24
24
|
- `-s, --source <file>` - selected source file for queries using `$tab`.
|
|
25
25
|
- `--tab <source>` - compatibility alias for `--source`.
|
|
26
26
|
- `-v, --view <name>` - built-in view: `c1`, `c2`, `c3`, `c4`, `no-filter`.
|
|
27
|
-
- `-q, --query <file>` - custom query file; overrides `--view
|
|
27
|
+
- `-q, --query <file>` - custom query file; overrides `--view`; relative paths
|
|
28
|
+
are resolved from `project-dir`.
|
|
28
29
|
- `-f, --format <format>` - command output format.
|
|
29
30
|
- `-o, --out <file>` - write payload output to a file instead of stdout.
|
|
30
31
|
- `-t, --theme <theme>` - render theme; defaults to `light`.
|
|
@@ -60,10 +61,15 @@ The generic target writes a runtime-neutral guide:
|
|
|
60
61
|
.archinsight/agent/
|
|
61
62
|
archinsight.md
|
|
62
63
|
references/
|
|
64
|
+
modeling.md
|
|
63
65
|
syntax.md
|
|
64
66
|
layered-architecture.md
|
|
67
|
+
project-structure.md
|
|
68
|
+
core.md
|
|
65
69
|
queries.md
|
|
66
70
|
validation.md
|
|
71
|
+
.core/
|
|
72
|
+
*.ai
|
|
67
73
|
examples/
|
|
68
74
|
layered-architecture.ai
|
|
69
75
|
c2-containers.aiq
|
|
@@ -95,9 +101,10 @@ agent session so the skill is discovered. Pass `--out <dir>` to write the same
|
|
|
95
101
|
package somewhere else.
|
|
96
102
|
|
|
97
103
|
The guide tells agents to treat `archinsight` as the validation source of truth,
|
|
98
|
-
avoid guessing Insight syntax from other architecture DSLs,
|
|
99
|
-
|
|
100
|
-
|
|
104
|
+
avoid guessing Insight syntax from other architecture DSLs, inspect project
|
|
105
|
+
structure before broad edits or imports, read bundled core language sources for
|
|
106
|
+
built-in types/presentations/projections, describe systems layer by layer, and
|
|
107
|
+
write custom `.aiq` diagram queries with the supported Cypher-style subset.
|
|
101
108
|
|
|
102
109
|
## Output Contract
|
|
103
110
|
|