Summary
The Docusaurus landing page (docs/docusaurus/src/pages/index.tsx) includes a Mermaid graph TD diagram at the bottom that visualizes the collection hierarchy as a flat star topology from hve-core-all to 9 child collections. This diagram is redundant given the collection cards section directly above it, which already presents the same information with richer detail (descriptions, maturity badges, artifact counts).
Problem
- The diagram is a flat star topology with no hierarchy, dependencies, or data flow — it restates what the cards already show.
- The diagram data is stale (e.g., artifact counts don't match current values).
- 3 collections present in
collections/ (gitlab, jira, rai-planning) are missing from the diagram.
- The diagram previously had a parse error (multiple node definitions on the same line) and rendering issues (SVG too small), both patched but symptoms of low maintainability.
Proposed Changes
- Remove the
collectionDiagram template literal from index.tsx
- Remove the
<Mermaid> component and its diagramContainer wrapper
- Remove the
import Mermaid from '@theme/Mermaid' import
- Clean up
.diagramContainer CSS rules from styles.module.css
Acceptance Criteria
Summary
The Docusaurus landing page (
docs/docusaurus/src/pages/index.tsx) includes a Mermaidgraph TDdiagram at the bottom that visualizes the collection hierarchy as a flat star topology fromhve-core-allto 9 child collections. This diagram is redundant given the collection cards section directly above it, which already presents the same information with richer detail (descriptions, maturity badges, artifact counts).Problem
collections/(gitlab,jira,rai-planning) are missing from the diagram.Proposed Changes
collectionDiagramtemplate literal fromindex.tsx<Mermaid>component and itsdiagramContainerwrapperimport Mermaid from '@theme/Mermaid'import.diagramContainerCSS rules fromstyles.module.cssAcceptance Criteria