Adds deferment.md — a source-verified inventory of new-driver status, all 17
open issues, in-code deferrals, open live gates and plan bookkeeping. Every
claim was checked against src/ and git, not against documentation.
Headline finding: three subsystems are authored, persisted and shipped but
never executed —
* Node ACLs: IPermissionEvaluator/TriePermissionEvaluator have zero
production consumers and OtOpcUaNodeManager never references them, yet
ClusterAcls.razor authors NodeAcl rows and ConfigComposer.cs:51 ships them
in every artifact. An authored deny rule has no effect.
* IRediscoverable / IHostConnectivityProbe raise into the void (#518/#507);
nothing ever writes a DriverHostStatus row.
* DriverTypeRegistry is vestigial, so no factory passes a tier and every
driver runs Tier A with the Tier-C protections dormant.
Also records the Calculation driver as picker-visible but unauthorable
(DriverConfigModal has no case) — the "registered but unauthorable" class
recurring after the Sql picker defect — and notes that no parity test guards
DriverConfigModal/DeviceModal, which is why it survived review.
Documentation corrections (source-verified):
* ReadWriteOperations.md claimed "a denied read never hits the driver" via
four types that do not exist in src/. Bannered + struck through; a security
review reading that page would have concluded a per-node ACL gate exists.
* CLAUDE.md: the Change Detection sentence was false (DriverHost consumes
nothing); the mesh Phase 4 and Phase 5 live gates and the auto-down 1-vs-1
gate had all PASSED; the ScriptedAlarmState table was already dropped.
* driver-expansion tracking: Modbus RTU and SQL poll are merged, not
pending — its command table would have made someone rebuild two shipped
drivers in a fresh worktree.
* drivers/README.md: dead DriverTypeRegistry paragraph, retired
SystemPlatform namespace kind, missing Sql + Calculation rows, missing
Modbus RTU-over-TCP transport.
* TwinCAT.md/Galaxy.md promised an address-space rebuild that never happens.
* Historian.md gained the #491 unproven-value-capture pointer.
* IncrementalSync.md and AddressSpace.md bannered as wholesale v2-era (the
rewrite is recorded as still owed, not done here); four v2 status docs
bannered as historical; three wrong-name-for-a-live-type fixes.
Left deliberately untouched: the secrets NoOpSecretReplicator line, which
makes a security claim and needs the real behaviour identified rather than a
rename.
21 KiB
Driver-expansion — Waves 0–2 tracking
Living status tracker for the driver-expansion program (Waves 0, 1, 2). One row per deliverable, each pointing at its design doc, its implementation plan (once written), and its current status. The authoritative architecture index is the program design doc; this file is the authoritative progress index.
Program design (architecture / shared contract / build order):
2026-07-15-driver-expansion-program-design.mdLast updated: 2026-07-27.
Legend
| Status | Meaning |
|---|---|
| ✅ Done | Merged to master, tests green. |
| 🟡 Live gate open | Code merged; a live /run or hardware-gated verification still outstanding. |
| 📝 Plan ready | Executable implementation plan (*-implementation.md + .tasks.json) written; not yet built. |
| 📐 Design only | Design doc exists; no implementation plan yet — writing-plans is the next step. |
| ⛔ Not started | No design, no plan. |
Doc types (per the writing-plans skill): a design states architecture, decisions, and risks;
an implementation plan is the bite-sized, TDD, file-path-level task list the subagent-driven
executor runs off, with a co-located .tasks.json for resume. A deliverable is only buildable once
it reaches 📝.
Summary
| Wave | Deliverable | Design | Impl. plan | Status | Effort | Fixture / hardware |
|---|---|---|---|---|---|---|
| 0 | Universal Discover-backed browser | design | plan · tasks | 🟡 Live gate open | S–M | none (retrofits shipped drivers) |
| 1 | Modbus RTU (extend Modbus) | design | plan · tasks | ✅ Done — merged to master 0f38f486 (#495), 11 tasks, live gate PASSED |
S (lowest) | pymodbus rtu_over_tcp — CI-simulatable, no new infra |
| 1 | SQL poll | design | plan · tasks | ✅ Done — merged to master 4ad54037, 22 tasks, live gate PASSED; follow-ups #496/#497/#498 closed in 28c28667 |
S–M | existing central SQL Server 10.100.0.35,14330 + SQLite unit |
| 2 | MTConnect Agent | design | plan · tasks | ✅ COMPLETE — P1 Agent MVP, all 23 tasks + the 5-leg live gate PASSED (branch feat/mtconnect-driver, PR #506) |
S–M | Dockerized mtconnect/agent:2.7.0.12 (not cppagent) — CI-simulatable, live at 10.100.0.35:5000 |
| 2 | MQTT / Sparkplug B | design | plan · tasks | ✅ COMPLETE — P1 + P2 shipped, both live-gated (Tasks 0–26) | M–L | Mosquitto TLS+auth + C# Sparkplug edge-node simulator, live at 10.100.0.35:8883 |
Waves 3+ (BACnet/IP, Omron) and the deferred MELSEC are tracked in the program design doc §6/§8, not here. Omron CIP is the program's sole real-hardware wire gate; BACnet's broadcast/BBMD leg is env-gated live. Both are out of this file's scope until they're pulled forward.
Executing a plan (git worktree + subagent-per-task)
Each 📝 plan is executed with the subagent-driven-development skill: it sets up an isolated
git worktree first (via using-git-worktrees), then dispatches a fresh subagent per task,
running the classification-driven review chain (trivial = implement only … high-risk =
spec-review → code-review → integration review) between tasks. The .tasks.json next to each plan
tracks progress and lets a later session resume.
⚠️ All four plans below have been executed and merged. This table is retained as the pattern for executing a future driver plan — do not run these four commands, they would rebuild shipped drivers in a fresh worktree. (Their
.tasks.jsonfiles still readpending; that is stale bookkeeping, not backlog — seedeferment.md§6.1.)
| Deliverable | Status | Command (pattern only — do not re-run) |
|---|---|---|
| Modbus RTU (Wave 1) | ✅ merged 0f38f486 |
… execute docs/plans/2026-07-24-modbus-rtu-driver.md … |
| SQL poll (Wave 1) | ✅ merged 4ad54037 |
… execute docs/plans/2026-07-24-sql-poll-driver.md … |
| MTConnect (Wave 2) | ✅ merged 90bdaa44 (#506) |
… execute docs/plans/2026-07-24-mtconnect-driver.md … |
| MQTT/Sparkplug (Wave 2) | ✅ merged c3a2b0f7 |
… execute docs/plans/2026-07-24-mqtt-sparkplug-driver.md … |
For a new driver the invocation shape is:
Use superpowers-extended-cc:subagent-driven-development to execute <plan-path> in a new git worktree
- Slash-command form (equivalent):
/superpowers-extended-cc:subagent-driven-development <plan-path>. - Parallel-session / resume form (batch execution with checkpoints, no fresh-subagent-per-task):
/superpowers-extended-cc:executing-plans <plan-path>— reads the same.tasks.jsonand continues from the first pending task. - Order (historical): the four were built lowest-effort-first — Modbus RTU → SQL poll → MTConnect → MQTT/Sparkplug. All are merged; nothing in this list remains to schedule. Run one plan per worktree; independent plans may run concurrently in separate worktrees.
Wave 0 — Universal Discover-backed browser 🟡
What it is. One generic DiscoveryDriverBrowser (+ CapturingAddressSpaceBuilder,
CapturedTreeBrowseSession, BrowserSessionService fallback, and the
ITagDiscovery.SupportsOnlineDiscovery gate) that turns any driver's ITagDiscovery.DiscoverAsync
into an AdminUI browse tree. It is the Wave-0 gate: every browsable new driver depends on this
seam, and it retrofits browse to the already-shipped AbCip / TwinCAT / FOCAS drivers for near-zero
marginal cost.
- Design:
2026-07-15-universal-discovery-browser-design.md - Implementation plan:
2026-07-15-universal-discovery-browser-implementation.md·.tasks.json - Status: 🟡 code-complete + merged, live gate open.
- Merged to master —
056887d6(Merge feat/universal-discovery-browser — Wave-0 universal Discover-backed browser), 2026-07-15. - Implementation plan: 19 / 19 tasks completed.
- Lit up AbCip / TwinCAT / FOCAS pickers with zero per-driver browse code.
- Merged to master —
- Outstanding: the full tree-render live
/rungate is fixture-blocked — tracked as Gitea #468. Complete this before leaning on browse in Wave 2/3.
Wave 1 — low-effort / high-leverage pair ✅
Both are fully CI-simulatable with zero new hardware; Modbus RTU needs no new infra at all, and SQL poll reuses the always-on central SQL Server. Both shipped.
Modbus RTU — ✅ Done (merged 0f38f486 / #495, live gate PASSED)
- Design:
2026-07-15-modbus-rtu-driver-design.md - Implementation plan:
2026-07-24-modbus-rtu-driver.md·.tasks.json— 11 tasks (1 trivial / 5 small / 2 standard / 3 high-risk), all complete via subagent-driven-development. - Scope: extend the existing Modbus driver with a
Transportselector (RTU CRC-16 + FC-aware length, no TxId) + artu_over_tcppymodbusdocker profile + the AdminUI selector. Direct-serial transport is descoped (user, 2026-07-15) — RTU-over-TCP via a serial→Ethernet gateway is the only shipped mode, so there is no serial hardware gate. - Fixture: added the
rtu_over_tcpprofile (framer=rtu, host:5021, co-runs withstandard) to the Modbus integration fixture. Unknown confirmed: pymodbus 3.13's simulator DOES honourframer=rtuon a TCP server (wire-probed a pure RTU FC03 response, no MBAP) — so the simple profile path was taken; no stdlib fallback server was needed. - Verification (all green): unit suite 344/344; full solution build 0 errors; the 2 RTU
integration tests pass live against the real
framer=rtufixture (read HR5→5, write+readback HR200←4242). Per-task review chain (spec + code reviewers) + a final whole-branch review, all approved-to-merge. - Live
/rungate — PASSED (2026-07-24, docker-dev rebuilt from this branch):- AdminUI
/rawModbus driver config modal renders the new Transport selector (with the operator hint) — set toRtuOverTcp, saved. - Device Test Connect →
OK · 23 MS— the probe built aModbusRtuOverTcpTransportvia the factory and spoke FC03 over real RTU framing to10.100.0.35:5021. - Authored raw tags HR5 (r/o) + HR200 (r/w) → deployment
06ec1632Sealed (all 6 nodes acked). - Client.CLI on
opc.tcp://localhost:4840(multi-role/password): readns=2;s=rtu-gate/Device1/HR5→ 5, Good; writens=2;s=rtu-gate/Device1/HR200= 4242 → readback 4242, Good.
- AdminUI
- Effort: S — the lowest on the roadmap. Delivered first, as recommended.
SQL poll — ✅ Done (merged 4ad54037, live gate PASSED)
- Design:
2026-07-15-sql-poll-driver-design.md - Implementation plan:
2026-07-24-sql-poll-driver.md·.tasks.json— 22 tasks, all done.ISqlDialect+SqlServerDialectshipped; Postgres/ODBC remain deferred to P2/P3 behind the same seam. - Post-merge follow-ups closed in
28c28667: #496 catalog identifier-validation gate (4dc2ad80), #497 wrong status-code constants across six drivers, #498 deploy-gate rejection of a persistedconnectionString(1919a8e5). - Scope: a bespoke schema-browser driver polling a SQL table into equipment tags (SQL Server
shipped; Postgres/ODBC deferred behind
ISqlDialect). - Fixture: SQLite unit fixture (primary) + an env-gated integration fixture against the
existing central SQL Server (
10.100.0.35,14330) with a seededSqlPollFixtureDB. The blackhole/timeout live-gate pauses a dedicatedmssqlcontainer — never the shared central SQL Server (it hostsConfigDb). - Effort: S–M.
Wave 2 — strategic telemetry / UNS pair ✅
Both CI-simulatable on the shared docker host, no hardware.
MTConnect Agent — ✅ Done (P1 Agent MVP)
- Design:
2026-07-15-mtconnect-driver-design.md - Implementation plan:
2026-07-24-mtconnect-driver.md·.tasks.json— 23 tasks; 22 built, Task 21 (live/rungate) tracked separately in the plan file. - Driver guide:
docs/drivers/MTConnect.md— config keys, capability surface, data-plane precedence rules, quality-code mapping, and (most load-bearing) the Known limitations section. - Scope shipped:
IDriver+ITagDiscovery+IReadable+ISubscribable+IHostConnectivityProbe+IRediscoverable(deliberately noIWritable— read-only Agent surface), browse free via the Wave-0 universal browser (SupportsOnlineDiscovery=true, no browser project), typed AdminUI tag editor,UNAVAILABLE→BadNoCommunicationmapping, CONDITION-as-String, ring-buffer re-baseline paging (both the sequence-gap andOUT_OF_RANGElegs). - Diverged from the design: Task 0/6/7 dropped the planned TrakHound
MTConnect.NET-Common/-HTTPdependency entirely — the pinned packages ship no XML formatter and the HTTP stream client has no injectable handler to test behind the driver's seam. Parsing is hand-rolledSystem.Xml.Linq, matching onLocalNameonly (namespace-agnostic, so 1.3–2.x all parse). See the driver guide's "Built vs. planned" section. - Test results: MTConnect unit suite 491/491; integration suite 12/12 against a real Agent
(
mtconnect/agent:2.7.0.12, notmtconnect/cppagent— that Docker Hub repo doesn't exist); skips cleanly (12 Skipped) offline. AdminUI 749/749; full solution 0 build errors. - Deferred (documented, not built): write-back via MTConnect Interfaces (design §3.6); P1.5
CONDITION→native Part-9 alarms,
TIME_SERIESarray materialization, EVENT→enum vocab (design §9); P2 SHDR adapter ingest (design §9). Also two pre-existing fleet-wide gaps this build surfaced rather than caused:IRediscoverable/IHostConnectivityProbehave no server-side consumer (eight drivers besides Galaxy), and no driver form blocks Save on a required-field validation error. - Fixture: canned XML unit fixtures (bulk of coverage) + a dockerized
mtconnect/agent+ stdlib-SHDR-adapter integration fixture (env-gated), deployed at/opt/otopcua-mtconnect/on the shared docker host. See the fixture's ownDocker/README.md. - Effort: S–M, hand-rolled (the TrakHound estimate in the design doc did not apply once that path was ruled out).
MQTT / Sparkplug B — ✅ COMPLETE (P1 + P2, both live-gated)
- Design:
2026-07-15-mqtt-sparkplug-driver-design.md - Implementation plan:
2026-07-24-mqtt-sparkplug-driver.md·.tasks.json— 27 tasks, all done (P1 plain MQTT = Tasks 0–14; P2 Sparkplug B = Tasks 15–26). - Scope delivered: P1 plain MQTT (MQTTnet-5 connect/TLS/auth + hand-rolled reconnect, subscribe→
OnDataChange, retained last-value read,#-observation browser); P2 Sparkplug B ingest (vendored Tahu proto +Grpc.Toolscodegen, birth/alias/seq-gap/rebirth state machine, death→STALE, birth-driven browse tree, scoped Request-rebirth NCMD, typed tag editor). Write-through (IWritable) is deferred to P3 — every MQTT node materializes read-only. - Fixture: Mosquitto TLS+auth broker + JSON publisher sidecar, live at
10.100.0.35:8883(:1883plaintext-but-authenticated); stack/opt/otopcua-mqtt, compose intests/Drivers/….Driver.Mqtt.IntegrationTests/Docker/. Env-gated live suite (MQTT_FIXTURE_ENDPOINT, seeinfra/README.md§3). The project-owned C# Sparkplug edge-node simulator (--profile sparkplug, groupOtOpcUaSim, nodesEdgeA/EdgeB,EdgeAdeviceFiller1) shipped with P2 and answers rebirth NCMDs. - P2 status (2026-07-25): Tasks 15–26 complete. Offline 1528 passed / 0 failed (581 driver · 809 AdminUI · 138 Core.Abstractions); live 15/15 against the broker + simulator.
- P1 live gate found two AdminUI authoring gaps (the gate's whole point — both invisible to green
unit tests, because AdminUI has no bUnit and nothing tied these hand-maintained lists to
DriverTypeNames):- FIXED —
RawDriverTypeDialog's option array never got an MQTT row, so no operator could create an MQTT driver at all. Fixed, plus a reflection parity guard (RawDriverTypeDialogParityTests) that fails for any futureDriverTypeNamesentry missing from the picker. - FIXED —
MqttDriverForm/MqttDeviceFormdid not exist, so the broker connection was unauthorable from the AdminUI. Both shipped after the P1 gate.
- FIXED —
- P2 live gate found a third one, of the same family — FIXED:
MqttDriverFormstill carried its P1 Sparkplug placeholder. Switching Mode toSparkplugBrendered a "not available yet" notice and no Group ID field — so once Sparkplug ingest shipped there was still no way to author a Sparkplug driver from the AdminUI, andSparkplug.GroupIdis the driver's entire subscription filter (spBv1.0/{GroupId}/#): blank ⇒ connected,Healthy, ingesting nothing. Fixed (all five Sparkplug keys, merge-not-replace on save, group-id segment validation) + 8 falsifiableMqttDriverFormModelTestscases. Three gates, three instances of the same defect class: a hand-maintained AdminUI surface left behind by a driver-side feature. - P2 live gate — two open UI gaps, documented not fixed (see
docs/drivers/Mqtt.md§Known gaps):- A completely empty browse tree cannot arm a rebirth. The scope comes from a tree click, so on
a plant that has not birthed since the window opened
Request rebirth…stays disabled — the very case the affordance exists for.MqttBrowseSession.ResolveRebirthTargetsalready accepts a bare{group}/{edgeNode}("the prime rebirth target"); only a UI path to enter one is missing. Mitigation shipped: a Refresh button on the browse tree (it re-reads the same session, which previously rendered exactly once at open and never again).
- A completely empty browse tree cannot arm a rebirth. The scope comes from a tree click, so on
a plant that has not birthed since the window opened
- P2 live gate also found a PRE-EXISTING, cross-driver AdminUI defect — FIXED: every node label in
the shared
DriverBrowseTreewas an<a href="#">. In a Blazor Web App,blazor.web.js's enhanced-navigation click interceptor resolves a bare#against<base href="/">, so clicking any browse-tree node label navigated the whole AdminUI to/, tore down the circuit and destroyed the hosting modal — losing the browse session and the tag selection.@onclick:preventDefaultdoes not help: it suppresses the browser's default action, not Blazor's own interceptor. The labels are now<button type="button">. It dates to the component's introduction (2026-05-28) and affects every driver's picker; it only surfaced now because Sparkplug's Request-rebirth is the first feature that requires clicking a label rather than the ▶ toggle (always a<button>, always fine).- A metric name containing
/cannot be browse-committed. The derived raw tag Name is a RawPath segment and may not contain/, whilemetricNamelegitimately may — so the spec-mandatoryNode Control/Rebirthis refused at commit (Row N: Name must not contain '/'). The refusal is loud and all-or-nothing, never a silently mis-bound tag, and Manual entry is the working path (the Sparkplug tag editor accepts a slashed metric name). Fixing it needs a name-sanitisation policy with a collision answer, so it was recorded rather than guessed at. _canRebirthis captured at browse-open, so a reaped session still draws the button.- The tag editor injects the Plain-only
payloadFormatkey into a Sparkplug blob — cosmetic; the factory routes on the Sparkplug tuple and ignores it.
- A metric name containing
- Rediscovery is inert in v3 (platform gap, not MQTT's). The Sparkplug driver raises
OnRediscoveryNeededon a changed birth metric-set, but nothing subscribes to it andDriverHostActor.HandleDiscoveredNodeshard-returns. A DBIRTH introducing a metric does not change the OPC UA tree — redeploy. Driver-side behaviour is log-observable only. - Redundant-pair hazard (documented, not a code change): both nodes of a pair run the driver, so a
fixed
clientIdmakes them evict each other forever — the broker logsalready connected, closing old connectionand both nodes reconnect every ~2 s while still reportingHealthy. Unset (the default) is correct.MqttDriverFormwarns inline the moment a value is typed. - Effort: M–L, delivered. The MQTTnet-5/net10 + central-pinning risk is retired (Task 0's spike held through both phases); Sparkplug state-machine correctness was carried by golden-payload vectors + the live simulator.
Next actions
- Close the Wave-0 live gate (Gitea #468) — unblocks browse verification for BACnet (MTConnect
shipped its own Task-21 live
/rungate independently — see the plan file). - Wave 1 is done. Both deliverables shipped and live-gated: Modbus RTU-over-TCP (merged
0f38f486/ #495) and SQL poll (merged4ad54037; follow-ups #496/#497/#498 closed in28c28667). Remaining SQL work is optional follow-on — Postgres/ODBC dialects behindISqlDialect, andSqlTagModel.Query(P3, currently rejected end-to-end by design). - Wave 2 is done. Both deliverables shipped and live-gated: MQTT / Sparkplug B (P1 + P2) and MTConnect Agent (P1 Agent MVP, PR #506). Remaining work on both is optional follow-on — MQTT P3 write-through (
IWritable: NCMD/DCMD + plain publish) plus its two browse-UI gaps, and MTConnect write-back (deliberately deferred; the Agent surface is read-only).
Update this file's Summary table and per-wave status whenever a deliverable changes state.