@archinsight/cli 3.0.0-snapshot.5 → 3.0.0-snapshot.7
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 +9 -1
- package/build/index.js +1040 -100
- 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
|
|
|
@@ -67,9 +67,11 @@ The generic target writes a runtime-neutral guide:
|
|
|
67
67
|
c2-containers.md
|
|
68
68
|
c3-components.md
|
|
69
69
|
c4-deployment.md
|
|
70
|
+
scaling.md
|
|
70
71
|
project-structure.md
|
|
71
72
|
core.md
|
|
72
73
|
queries.md
|
|
74
|
+
query-recipes.md
|
|
73
75
|
validation.md
|
|
74
76
|
.core/
|
|
75
77
|
*.ai
|
|
@@ -80,6 +82,12 @@ The generic target writes a runtime-neutral guide:
|
|
|
80
82
|
c4-deployment-framework.ai
|
|
81
83
|
c4-deployment.ai
|
|
82
84
|
c2-containers.aiq
|
|
85
|
+
builtin-views/
|
|
86
|
+
no-filter.aiq
|
|
87
|
+
c1.aiq
|
|
88
|
+
c2.aiq
|
|
89
|
+
c3.aiq
|
|
90
|
+
c4.aiq
|
|
83
91
|
```
|
|
84
92
|
|
|
85
93
|
Codex and Claude targets package the same Insight reference directly into the
|