chore(examples): remove build-examples.js generator — examples are hand-authored one-offs

The generator rotted (emitted 02-Integration/03-Dashboard while the repo kept
01-Basic/02-Dashboard), produced lint-failing flows, and was the only one of 11
nodes with such a tool. Per-node example flows are illustrative one-offs: the
JSON is the source of truth, validated by flow-lint. README updated.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
znetsixe
2026-05-29 19:04:50 +02:00
parent 089a7fa2c4
commit 177a37e15c
2 changed files with 8 additions and 959 deletions

View File

@@ -79,8 +79,12 @@ These flows follow the EVOLV layout rule set in
- **Group boxes** wrap each parent + its direct children, coloured by the
parent's S88 level.
## Regenerating
## Maintaining
The current example JSON files are hand-maintained. If you re-introduce a
generator, regenerate `01-Basic.json` and `02-Dashboard.json` from it
rather than editing the JSON directly.
These example flows are **hand-authored one-offs** — edit the JSON directly.
There is intentionally no generator: examples are illustrative, not produced in
bulk. Validate any change with `flow-lint`:
```bash
node ../../../tools/flow-lint/bin/flow-lint.js 01-Basic.json 02-Dashboard.json
```