wabachi 0.2.0 → 0.3.0
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/.codex-plugin/plugin.json +6 -0
- package/LICENSE +1 -1
- package/README.md +17 -21
- package/dist/architecture/cli.js +51 -36
- package/dist/architecture/cli.js.map +1 -1
- package/dist/architecture/documentation/react-flow.d.ts +23 -0
- package/dist/architecture/documentation/react-flow.js +436 -0
- package/dist/architecture/documentation/react-flow.js.map +1 -0
- package/dist/architecture/documentation/site.d.ts +10 -13
- package/dist/architecture/documentation/site.js +58 -24
- package/dist/architecture/documentation/site.js.map +1 -1
- package/dist/architecture/projection/react-flow.d.ts +96 -0
- package/dist/architecture/projection/react-flow.js +388 -0
- package/dist/architecture/projection/react-flow.js.map +1 -0
- package/dist/cli.js +53 -14
- package/dist/cli.js.map +1 -1
- package/dist/command-contract.d.ts +78 -0
- package/dist/command-contract.js +194 -0
- package/dist/command-contract.js.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/runtime/repository.d.ts +3 -0
- package/dist/runtime/repository.js +140 -16
- package/dist/runtime/repository.js.map +1 -1
- package/dist/runtime/run.js +3 -1
- package/dist/runtime/run.js.map +1 -1
- package/dist/skill.d.ts +47 -0
- package/dist/skill.js +160 -0
- package/dist/skill.js.map +1 -0
- package/dist/working-set/codec.d.ts +7 -0
- package/dist/working-set/codec.js +53 -0
- package/dist/working-set/codec.js.map +1 -0
- package/dist/working-set/conflicts.d.ts +46 -0
- package/dist/working-set/conflicts.js +97 -0
- package/dist/working-set/conflicts.js.map +1 -0
- package/dist/working-set/derive.d.ts +34 -0
- package/dist/working-set/derive.js +634 -0
- package/dist/working-set/derive.js.map +1 -0
- package/dist/working-set/index.d.ts +3 -0
- package/dist/working-set/index.js +3 -0
- package/dist/working-set/index.js.map +1 -0
- package/dist/working-set/model.d.ts +93 -0
- package/dist/working-set/model.js +204 -0
- package/dist/working-set/model.js.map +1 -0
- package/dist/working-set/quality.d.ts +201 -0
- package/dist/working-set/quality.js +447 -0
- package/dist/working-set/quality.js.map +1 -0
- package/dist/working-set/seeds.d.ts +135 -0
- package/dist/working-set/seeds.js +433 -0
- package/dist/working-set/seeds.js.map +1 -0
- package/docs/USAGE.md +118 -0
- package/docs/examples/minimal-canon.json +24 -0
- package/package.json +14 -4
- package/skills/wabachi/SKILL.md +39 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: wabachi
|
|
3
|
+
description: |
|
|
4
|
+
Use Wabachi for deterministic repository analysis, provider matrices, and
|
|
5
|
+
Architecture Canon validation or rendering. Resolve current workflows and
|
|
6
|
+
exact syntax through the live CLI.
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Wabachi
|
|
10
|
+
|
|
11
|
+
This bundled Skill is a routing entrypoint. The installed CLI is the authority
|
|
12
|
+
for command syntax and operational playbooks; this file intentionally does not
|
|
13
|
+
duplicate flags or workflow details.
|
|
14
|
+
|
|
15
|
+
Start with:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
wabachi skill
|
|
19
|
+
wabachi --help
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Then choose a bounded intent with `wabachi skill <scenario>`. Resolve exact
|
|
23
|
+
syntax for each command through its progressive help pointer, for example:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
wabachi architecture --help
|
|
27
|
+
wabachi architecture example
|
|
28
|
+
wabachi architecture validate
|
|
29
|
+
wabachi architecture render --out ./artifacts/site
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Omitted-file validation and rendering use `.wabachi/architecture.json` only.
|
|
33
|
+
Pass an explicit Canon path to either command when overriding that default.
|
|
34
|
+
|
|
35
|
+
Architecture rendering is npm-native and uses the bundled React Flow + ELK
|
|
36
|
+
renderer. The default render path does not require Java, Docker, Chromium,
|
|
37
|
+
Structurizr, CDN, or network access.
|
|
38
|
+
|
|
39
|
+
Use `--json` on `skill` or help when a machine-readable projection is needed.
|