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

@@ -8,6 +8,14 @@ description: Design and implement Node-RED node editor UI and runtime-facing con
## Mission
Implement robust Node-RED editor experiences that keep UI defaults, runtime config parsing, and behavior in lockstep.
## Harness Execution Contract
- Start from impacted files and active runtime/editor contracts.
- Define invariants before editing:
- `.html` defaults and runtime parsing parity
- endpoint path stability (`/<nodeName>/menu.js`, `/<nodeName>/configData.js`)
- released topic/output compatibility unless migration is declared
- Provide evidence for changed behavior (tests or smoke checks).
## Repo-Specific Rules
- Use CommonJS patterns in runtime files.
- Keep node names aligned across `RED.nodes.registerType('<nodeName>', ...)`, runtime registration in `<nodeName>.js`, and package/node mapping.
@@ -52,3 +60,8 @@ Return:
- changed files
- tests added and what they prove
- migration notes if backward compatibility changed
Decision interview triggers:
- form or default changes that alter existing deployed behavior
- endpoint contract/path changes
- UI/runtime migration that could break saved Node-RED flows

View File

@@ -1,4 +1,4 @@
interface:
display_name: "EVOLV Frontend + Node-RED"
short_description: "Build EVOLV Node-RED editor/runtime UX safely"
default_prompt: "Implement EVOLV Node-RED editor HTML and runtime config mapping with strict UI/runtime parity, stable endpoint contracts, and tests."
default_prompt: "Implement EVOLV Node-RED editor/runtime changes from a file-level impact map, preserve UI/runtime parity and stable endpoint contracts, provide verification evidence, and ask decision-gate questions before compatibility-breaking edits."