Soliplex Plumber¶
soliplex-plumber is the shared library for reading and
modifying the configuration of an existing Soliplex stack. It is the common
dependency for the skill projects that operate on a generated stack -- the
soliplex-template skill's add_room.py and the soliplex-concierge
installer -- so the stack-wiring rules live in one place.
Status
The library is implemented and tested (100% branch coverage). The core
(rooms / installation / sections) does pure filesystem work -- no
Docker, no running backend. The soliplex_config module is the
exception: it queries a running stack, so it needs Docker.
What it provides¶
rooms-- generic, template-agnostic logic for adding a room to a stack: resolve and validate the stack root, infer its package, and ensureinstallation.yaml'sroom_pathsloads the room (editing line-based, so comments and layout are preserved). See the API reference.stack-- shared plumbing to runsoliplex-cliagainst a stack in a throwawaydocker compose run --rmcontainer (validate the stack, build the argv, capture or stream output), optionally binding an alternative installation tree to dry-run against. Needs Docker.soliplex_config-- query a running stack's resolved installation config viasoliplex-cli configin a one-off backend container (show/get/rooms/room); installs thesoliplex-configconsole script. Builds onstack.
There is no re-exporting package __init__; client code imports the submodule
and uses its members by dotted name: