generated from coulomb/repo-seed
- Move Interventions under Workstreams in the navigator - Add action-confirm.js: shared modal component for actions requiring a mandatory comment (survives live-poll re-renders, unlike inline DOM mutation) - Wire action-confirm into Interventions (Mark done) and Decisions (Resolve) - Fix Interventions completed section: fetch all tasks and filter client-side so resolved interventions (needs_human=false) still appear under Completed - Add docs/interventions.md help page with ? button on the h1 - Replace all hardcoded "Bernd" with "human" across dashboard src and docs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
73 lines
3.9 KiB
JavaScript
73 lines
3.9 KiB
JavaScript
export default {
|
|
root: "src",
|
|
title: "Custodian State Hub",
|
|
pages: [
|
|
// ── Overview ──────────────────────────────────────────────────────────────
|
|
{ name: "Overview", path: "/" },
|
|
{ name: "Todo", path: "/todo" },
|
|
// ── Organizational Entity Views ───────────────────────────────────────────
|
|
{ name: "Domains", path: "/domains" },
|
|
{ name: "Repos", path: "/repos" },
|
|
{
|
|
name: "Workstreams",
|
|
path: "/workstreams",
|
|
collapsible: true,
|
|
open: false,
|
|
pages: [
|
|
{ name: "Decisions", path: "/decisions" },
|
|
{ name: "Tasks", path: "/tasks" },
|
|
{ name: "Interventions", path: "/interventions" },
|
|
{ name: "Debt", path: "/techdept" },
|
|
{ name: "Extends", path: "/extensions" },
|
|
{ name: "Dependencies", path: "/dependencies" },
|
|
],
|
|
},
|
|
// ── Functional Report Views ────────────────────────────────────────────────
|
|
{ name: "Contributions", path: "/contributions" },
|
|
{ name: "SBOM", path: "/sbom" },
|
|
{ name: "Progress", path: "/progress" },
|
|
// ── Policy ────────────────────────────────────────────────────────────────
|
|
{
|
|
name: "Policy",
|
|
collapsible: true,
|
|
open: true,
|
|
pages: [
|
|
{ name: "Workstream DoD", path: "/policy/workstream-dod" },
|
|
],
|
|
},
|
|
// ── Reference ─────────────────────────────────────────────────────────────
|
|
{
|
|
name: "Reference",
|
|
path: "/reference",
|
|
collapsible: true,
|
|
open: false,
|
|
pages: [
|
|
{ name: "Contributions", path: "/docs/contributions" },
|
|
{ name: "Decision Health", path: "/docs/decisions-kpi" },
|
|
{ name: "Decisions", path: "/docs/decisions" },
|
|
{ name: "Dependencies", path: "/docs/dependencies" },
|
|
{ name: "Domains", path: "/docs/domains" },
|
|
{ name: "Extension Points", path: "/docs/extensions" },
|
|
{ name: "Inter-Repo Communication", path: "/docs/inter-repo-communication" },
|
|
{ name: "Interventions", path: "/docs/interventions" },
|
|
{ name: "Live Data", path: "/docs/live-data" },
|
|
{ name: "Overview", path: "/docs/overview" },
|
|
{ name: "Progress Log", path: "/docs/progress-log" },
|
|
{ name: "Reference & Context Help", path: "/docs/reference" },
|
|
{ name: "Repo Integration", path: "/docs/repo-integration" },
|
|
{ name: "Repos", path: "/docs/repos" },
|
|
{ name: "SBOM", path: "/docs/sbom" },
|
|
{ name: "Tasks", path: "/docs/tasks" },
|
|
{ name: "Technical Debt", path: "/docs/debt" },
|
|
{ name: "Todo", path: "/docs/todo" },
|
|
{ name: "Workstream Health", path: "/docs/workstream-health-index" },
|
|
{ name: "Workstream Lifecycle", path: "/docs/workstream-lifecycle" },
|
|
{ name: "Workstreams", path: "/docs/workstreams" },
|
|
],
|
|
},
|
|
],
|
|
theme: ["air", "near-midnight"],
|
|
head: `<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🗄️</text></svg>">`,
|
|
footer: "Custodian State Hub — local-first, append-only, sovereignty-preserving.",
|
|
};
|