From a8228fc7802d3ee8787cb54c5246f6f185416682 Mon Sep 17 00:00:00 2001 From: tegwick Date: Sun, 3 May 2026 16:30:07 +0200 Subject: [PATCH] railiance-bootstrap to railiance-cluster rename cleanup --- dashboard/src/docs/goals.md | 2 +- dashboard/src/docs/sbom.md | 2 +- mcp_server/server.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dashboard/src/docs/goals.md b/dashboard/src/docs/goals.md index c6198b8..a049cf1 100644 --- a/dashboard/src/docs/goals.md +++ b/dashboard/src/docs/goals.md @@ -66,7 +66,7 @@ The Goals page groups everything by domain: │ │ Improve the railiance repositories so that I can … │ │ │ │ ───────────────────────────────────────────────────────── │ │ │ │ Repository Goals │ │ -│ │ ┌─ #10 railiance-bootstrap ─────────── [active] ────────┐ │ │ +│ │ ┌─ #10 railiance-cluster ───────────── [active] ────────┐ │ │ │ │ │ Secure Single-Server Bootstrap at HostEurope │ │ │ │ │ │ Bootstrap a new server securely at hosteurope … │ │ │ │ │ └────────────────────────────────────────────────────────┘ │ │ diff --git a/dashboard/src/docs/sbom.md b/dashboard/src/docs/sbom.md index dff1703..e57e0b5 100644 --- a/dashboard/src/docs/sbom.md +++ b/dashboard/src/docs/sbom.md @@ -147,7 +147,7 @@ A more powerful alternative is **[Syft](https://github.com/anchore/syft)** curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin # Scan a directory -syft dir:/home/worsch/railiance-bootstrap -o cyclonedx-json > sbom.json +syft dir:/home/worsch/railiance-cluster -o cyclonedx-json > sbom.json ``` Syft integration is tracked as **EP-CUST-002** in the Extension Points diff --git a/mcp_server/server.py b/mcp_server/server.py index 098aa3c..f42b90b 100644 --- a/mcp_server/server.py +++ b/mcp_server/server.py @@ -1716,7 +1716,7 @@ def create_repo_goal( determines ordering. Optionally link to the parent domain goal. Args: - repo_slug: Slug of the repository (e.g. 'railiance-bootstrap') + repo_slug: Slug of the repository (e.g. 'railiance-cluster') title: Short goal title description: Full description including boundary conditions and scope domain_goal_id: UUID of the parent domain goal (optional) @@ -1747,7 +1747,7 @@ def get_repo_goals(repo_slug: str, status: str | None = None) -> str: """List repository goals for a repo, ordered by priority. Args: - repo_slug: Slug of the repository (e.g. 'railiance-bootstrap') + repo_slug: Slug of the repository (e.g. 'railiance-cluster') status: active | paused | completed | archived (omit for all) """ return json.dumps(_get("/repo-goals", {"repo_slug": repo_slug, "status": status}), indent=2)