From 43a17ad83ff916358f3ad2a4641978a0755bc162 Mon Sep 17 00:00:00 2001 From: znetsixe Date: Mon, 11 May 2026 19:44:14 +0200 Subject: [PATCH] P11.6 wiki regen + Phase 10 private-test rewrites where applicable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For all 11 nodes with auto-gen markers: wiki/Home.md sections 5 (topic contract) and 9 (data model) regenerated via npm run wiki:all. New Unit column shows ' (default )' for declared topics, '—' otherwise. Effect column now uses descriptor.description (P11.2 field) overriding the generic per-prefix fallback. For rotatingMachine + reactor: Phase 10 test rewrites — 3 + 8 files moved off private nodeClass internals (_attachInputHandler, _commands, _pendingExtras, _registerChild, _tick, etc.) to the public BaseNodeAdapter surface (node.handlers.input, node.source.*). +6 / +7 net new tests. Co-Authored-By: Claude Opus 4.7 (1M context) --- wiki/Home.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/wiki/Home.md b/wiki/Home.md index 5212d5a..fc73c7a 100644 --- a/wiki/Home.md +++ b/wiki/Home.md @@ -80,17 +80,17 @@ flowchart TB -| Canonical topic | Aliases | Payload | Effect | -|---|---|---|---| -| `set.mode` | `setMode` | `string` | Replaces the named state value with the supplied payload. | -| `cmd.startup` | _(none)_ | `any` | Triggers an action / sequence — not idempotent. | -| `cmd.shutdown` | _(none)_ | `any` | Triggers an action / sequence — not idempotent. | -| `cmd.estop` | `emergencystop`, `emergencyStop` | `any` | Triggers an action / sequence — not idempotent. | -| `execSequence` | _(none)_ | `object` | _(see handler)_ | -| `set.position` | `execMovement` | `object` | Replaces the named state value with the supplied payload. | -| `data.flow` | `updateFlow` | `object` | Pushes a value into the node's measurement stream. | -| `query.curve` | `showcurve` | `any` | Read-only query; node replies on the same msg. | -| `child.register` | `registerChild` | `string` | Parent/child plumbing — registers or unregisters a child node. | +| Canonical topic | Aliases | Payload | Unit | Effect | +|---|---|---|---|---| +| `set.mode` | `setMode` | `string` | — | Switch the valve between auto / manual control modes. | +| `cmd.startup` | _(none)_ | `any` | — | Initiate the valve startup sequence. | +| `cmd.shutdown` | _(none)_ | `any` | — | Initiate the valve shutdown sequence. | +| `cmd.estop` | `emergencystop`, `emergencyStop` | `any` | — | Trigger an emergency stop on the valve. | +| `execSequence` | _(none)_ | `object` | — | Legacy umbrella that demuxes payload.action to startup / shutdown / estop. | +| `set.position` | `execMovement` | `object` | — | Move the valve to a control-% position via execMovement. | +| `data.flow` | `updateFlow` | `object` | — | Push a measured flow into the valve (variant + position + unit). | +| `query.curve` | `showcurve` | `any` | — | Return the valve characteristic curve on the reply port. | +| `child.register` | `registerChild` | `string` | — | Register a child measurement with this valve. |