generated from coulomb/repo-seed
custodian_cli.py:
- register-project now writes CLAUDE.custodian.md (suggestion) instead
of overwriting CLAUDE.md; includes preamble with integration instructions
- registers repo via POST /repos/
- creates a "Repo Integration: {slug}" workstream in the domain's topic
with 4 onboarding tasks (integrate CLAUDE.md, first workplan, SBOM,
EPs/TDs); checks for existing workstream to be idempotent
- fixes {REPO_SLUG} template substitution (previously missing)
dashboard:
- repos.md: fetches workstreams; detects active repo-integration-* slugs;
adds "Integrating" KPI card; shows ⚙ integrating badge per repo in
coverage map and table; replaces "How to Ingest a Repo" with
"Onboard a New Repo" 4-step panel with doc help button
- docs/repo-integration.md (new): full collaboration model doc — custodian
as coach, repo agent as executor; journey, generated tasks, first session
protocol, ongoing relationship
- docs/repos.md: links to new repo-integration doc; updates "What is a
managed repo?" section; adds onboarding quick reference
- docs/reference.md: fix latent build error — code examples were in ```js
fences (executed by OF); changed to ```javascript (display only)
- observablehq.config.js: adds "Repo Integration" to Reference nav
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
61 lines
3.3 KiB
JavaScript
61 lines
3.3 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: "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" },
|
|
// ── 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: "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: "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.",
|
|
};
|