@archinsight/cli 3.0.0-snapshot.1 → 3.0.0-snapshot.3

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 +21 -6
  2. package/build/index.js +3116 -2031
  3. 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,14 +61,22 @@ 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
69
+ queries.md
65
70
  validation.md
71
+ .core/
72
+ *.ai
66
73
  examples/
67
74
  layered-architecture.ai
75
+ c2-containers.aiq
68
76
  ```
69
77
 
70
- Codex and Claude targets package the same Insight reference as skill folders:
78
+ Codex and Claude targets package the same Insight reference directly into the
79
+ native skill folders:
71
80
 
72
81
  ```shell
73
82
  archinsight skill init --target codex
@@ -75,21 +84,27 @@ archinsight skill init --target claude
75
84
  ```
76
85
 
77
86
  ```text
78
- .archinsight/skills/codex/archinsight/
87
+ .codex/skills/archinsight/
79
88
  SKILL.md
80
89
  agents/openai.yaml
81
90
  references/
82
91
  examples/
83
92
 
84
- .archinsight/skills/claude/archinsight/
93
+ .claude/skills/archinsight/
85
94
  SKILL.md
86
95
  references/
87
96
  examples/
88
97
  ```
89
98
 
99
+ After generating a Codex or Claude skill into the default location, restart the
100
+ agent session so the skill is discovered. Pass `--out <dir>` to write the same
101
+ package somewhere else.
102
+
90
103
  The guide tells agents to treat `archinsight` as the validation source of truth,
91
- avoid guessing Insight syntax from other architecture DSLs, and describe systems
92
- layer by layer from context to containers, components, and deployment details.
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.
93
108
 
94
109
  ## Output Contract
95
110