@c4a/context-cli 0.5.38 → 0.5.39
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 +1 -1
- package/cli.js +4863 -3609
- package/package.json +3 -1
- package/plugin/commands/align.md +9 -8
- package/plugin/commands/capture.md +2 -2
- package/plugin/commands/compile.md +6 -6
- package/plugin/skills/skill-align-workflow/SKILL.md +9 -7
- package/plugin/skills/skill-align-workflow/references/density-profile.md +1 -1
- package/plugin/skills/skill-compile-draft/SKILL.md +5 -5
- package/plugin/skills/skill-compile-judge/SKILL.md +1 -1
- package/plugin/skills/skill-semantic-reconcile/references/temporal-and-evidence.md +4 -4
- package/scripts/build-aspect-runtime.ts +45 -0
- package/templates/aspect-runtime/aspectRunnerSdk.js +776 -0
- package/templates/aspects/README.md +7 -5
- package/templates/aspect-runtime/aspectRunnerSdk.ts +0 -749
- /package/templates/aspects/code/{prompt.md → README.md} +0 -0
- /package/templates/aspects/design-system/{prompt.md → README.md} +0 -0
- /package/templates/aspects/graphql/{prompt.md → README.md} +0 -0
- /package/templates/aspects/openapi/{prompt.md → README.md} +0 -0
package/README.md
CHANGED
|
@@ -109,7 +109,7 @@ Embedded layout (default):
|
|
|
109
109
|
│ ├── changelog.md # append-only compile / drop log (derivable from git)
|
|
110
110
|
│ ├── domain/ entity/ action/ # one directory per Node type
|
|
111
111
|
├── archive/ # dropped but restorable raw / knowledge artifacts
|
|
112
|
-
└── aspects/<name>/
|
|
112
|
+
└── aspects/<name>/README.md # per-aspect maintainer guides
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
Root layout (`context init --layout root`) uses the same tree directly in the current directory: `config.yaml`, `raw/`, `output/`, `knowledge/`, `archive/`, `aspects/`, and `inbox/` live at repo root. Root layout is intended for dedicated knowledge repositories; initialization refuses to run if those C4A-owned entries already exist.
|