Migrate to new Gitea instance (gitea.wbd-rd.nl)

- Update all submodule URLs from gitea.centraal.wbd-rd.nl to gitea.wbd-rd.nl
- Add settler as proper submodule in .gitmodules
- Add agent skills, function anchors, decisions, and improvements
- Add Docker configuration and scripts
- Add manuals and third_party docs
- Update .gitignore with secrets and build artifacts
- Remove stale .tgz build artifact

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
znetsixe
2026-03-04 21:07:04 +01:00
parent fbd9e6ec11
commit 6a6c04d34b
169 changed files with 21332 additions and 1512 deletions

View File

@@ -0,0 +1,75 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PumpingStation Anchor Map</title>
<style>
:root {
--bg: #f5f7fb;
--panel: #ffffff;
--line: #9ab0d9;
--text: #14233d;
--muted: #4d6084;
--pump: #0c99d9;
--child: #e7faf5;
--sensor: #eef8e8;
--dash: #fff5e5;
}
body { margin: 0; font-family: "Segoe UI", sans-serif; background: var(--bg); color: var(--text); }
.wrap { max-width: 1100px; margin: 24px auto; padding: 0 16px 24px; }
.panel { background: var(--panel); border: 1px solid #dde5f5; border-radius: 12px; padding: 16px; }
h1 { margin: 0 0 8px; font-size: 24px; }
p { margin: 0 0 12px; color: var(--muted); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.chip { border: 1px solid #d1ddf5; border-radius: 999px; padding: 4px 10px; background: #f7faff; font-size: 12px; }
svg { width: 100%; height: auto; border-radius: 10px; background: #f9fbff; }
</style>
</head>
<body>
<div class="wrap">
<div class="panel">
<h1>PumpingStation Function Anchor</h1>
<p>Preparation baseline map. Keep this topology in sync with `ANCHOR-pumpingStation.md` and runtime contracts.</p>
<div class="chips">
<span class="chip">input: registerChild / calibrate* / q_in / changemode</span>
<span class="chip">output[0]: process</span>
<span class="chip">output[1]: influx</span>
<span class="chip">output[2]: registerChild</span>
</div>
<svg viewBox="0 0 900 360" role="img" aria-label="PumpingStation integration map">
<defs>
<marker id="arr" markerWidth="10" markerHeight="10" refX="8" refY="3" orient="auto">
<path d="M0,0 L0,6 L9,3 z" fill="#6f85aa"></path>
</marker>
</defs>
<rect x="360" y="140" width="180" height="72" rx="10" fill="var(--pump)"></rect>
<text x="450" y="182" text-anchor="middle" fill="#fff" font-size="16">pumpingStation</text>
<rect x="40" y="40" width="210" height="56" rx="9" fill="var(--child)" stroke="#9edcca"></rect>
<text x="145" y="74" text-anchor="middle" fill="#1e5244" font-size="13">machine / machineGroupControl</text>
<rect x="40" y="250" width="210" height="56" rx="9" fill="var(--sensor)" stroke="#b7d89e"></rect>
<text x="145" y="284" text-anchor="middle" fill="#2e5a22" font-size="13">measurement (level/flow/pressure)</text>
<rect x="650" y="40" width="210" height="56" rx="9" fill="var(--dash)" stroke="#e9c589"></rect>
<text x="755" y="74" text-anchor="middle" fill="#634319" font-size="13">dashboard / manual control</text>
<rect x="650" y="250" width="210" height="56" rx="9" fill="#e9f1ff" stroke="#aac0ef"></rect>
<text x="755" y="284" text-anchor="middle" fill="#244271" font-size="13">parent process / orchestrator</text>
<line x1="250" y1="68" x2="360" y2="152" stroke="var(--line)" stroke-width="2" marker-end="url(#arr)"></line>
<line x1="250" y1="278" x2="360" y2="198" stroke="var(--line)" stroke-width="2" marker-end="url(#arr)"></line>
<line x1="650" y1="68" x2="540" y2="150" stroke="var(--line)" stroke-width="2" marker-end="url(#arr)"></line>
<line x1="540" y1="202" x2="650" y2="278" stroke="var(--line)" stroke-width="2" marker-end="url(#arr)"></line>
<text x="268" y="128" fill="var(--muted)" font-size="12">flow.predicted.* / control handoff</text>
<text x="260" y="240" fill="var(--muted)" font-size="12">*.measured.&lt;position&gt;</text>
<text x="566" y="128" fill="var(--muted)" font-size="12">q_in / calibrate / mode</text>
<text x="560" y="240" fill="var(--muted)" font-size="12">registerChild + process/influx consumers</text>
</svg>
</div>
</div>
</body>
</html>