Gui: Add IntentFrame Control Plane (port 9720) with operator UI and Docker test harness by maniotrix · Pull Request #7 · intentframe/agent-integrations · GitHub
Introduces a standalone IntentFrame Control Plane on port 9720 — separate from Hermes chat (9119) — with a React operator UI (Overview, Governance, Policy, Audit) and FastAPI backend under intentframe-control-plane/.
Adds CLI lifecycle commands: intentframe-integrations control-plane start|stop|status|serve, plus --json on status/governance/policy reads.
Updates the installer to build the frontend, seed ~/.intentframe/.env, and start the control plane by default (--no-control-plane for CI/Docker).
Extends the Docker harness (tests/docker/) to publish 9720 and 9119, seed Docker config, start the control plane, then bring up Hermes enforcement + dashboard.
Fixes control-plane health checks that could deadlock or falsely report unhealthy on single-worker uvicorn (loopback probe for 0.0.0.0, lightweight /api/health, in-process status skips self HTTP probe).
Test plan
uv run --package intentframe-control-plane python tests/intentframe_control_plane/test_lifecycle.py
uv run --package intentframe-control-plane python tests/intentframe_control_plane/test_read_models.py
uv run --package intentframe-control-plane python tests/intentframe_control_plane/test_server.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan