generated from coulomb/repo-seed
New page with: - Data fetch: /tasks/ + /workstreams/ + /topics/ in parallel, enriched with domain and workstream_title per task - Task Overview KPI card in TOC sidebar: open / blocked (red if >0) / in progress / done with % of total - Status Distribution chart (horizontal bar, colour-coded by status) - Blocked Tasks section: cards with priority badge, domain, workstream, blocking_reason highlighted in amber - All Tasks: filterable table (status, priority, domain, assignee multiselect + text), sorted blocked→in_progress→todo→done, 25 rows Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
1.0 KiB
JavaScript
26 lines
1.0 KiB
JavaScript
export default {
|
|
root: "src",
|
|
title: "Custodian State Hub",
|
|
pages: [
|
|
{ name: "Overview", path: "/" },
|
|
{ name: "Workstreams", path: "/workstreams" },
|
|
{ name: "Tasks", path: "/tasks" },
|
|
{ name: "Decisions", path: "/decisions" },
|
|
{ name: "Progress", path: "/progress" },
|
|
{
|
|
name: "Reference",
|
|
pages: [
|
|
{ name: "Live Data", path: "/docs/live-data" },
|
|
{ name: "Workstreams", path: "/docs/workstreams" },
|
|
{ name: "Workstream Health", path: "/docs/workstream-health-index" },
|
|
{ name: "Decisions", path: "/docs/decisions" },
|
|
{ name: "Decision Health", path: "/docs/decisions-kpi" },
|
|
{ name: "Progress Log", path: "/docs/progress-log" },
|
|
],
|
|
},
|
|
],
|
|
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.",
|
|
};
|