module Web.View.StaticPages.Landing where import Web.View.Prelude data LandingView = LandingView instance View LandingView where html LandingView = [hsx|
{-- Hero --}

inter-hub

Reference implementation of the Interaction Hub Framework (IHF)

A governed, observable interaction substrate for hub-based AI-enabled software systems. Every UI element is a governed artifact with a full traceability chain from rendered widget to observed outcome.

{-- Traceability chain --}

Full Traceability Chain

{chainLink "Widget" "indigo"} {arrow} {chainLink "InteractionEvent" "blue"} {chainLink "Annotation" "blue"} {arrow} {chainLink "RequirementCandidate" "violet"} {arrow} {chainLink "Requirement" "purple"} {arrow} {chainLink "DecisionRecord" "fuchsia"} {arrow} {chainLink "DeploymentRecord" "rose"} {arrow} {chainLink "OutcomeSignal" "orange"} {arrow} {chainLink "Learning" "emerald"}

Append-only event log · PostgreSQL-enforced invariants · Full lineage inspector

{-- Key capabilities grid --}

Key Capabilities

{capCard "Governed Widgets" "Every UI element carries a stable widget-id, version history, and owner hub. Type discriminators reference a registry — no bare TEXT." "indigo"} {capCard "AI Agent Federation" "Multi-agent routing, delegation trees, collective proposals, model selection policies, and AI governance overlays. Phase 11 complete." "violet"} {capCard "Continuous Learning" "Outcome correlation engine, pattern performance ranking, adaptive friction thresholds, and institutional knowledge base with full-text search. Phase 12 complete." "emerald"} {capCard "External API Surface" "REST API v2 with JWT auth, OpenAPI 3.1 spec, TypeScript + Python SDKs, webhook subscriptions, and per-consumer API keys." "blue"} {capCard "Hub Federation" "Cross-hub propagation detection, routing rules, stewardship roles, federated policy overlays, and GAAF compliance governance." "orange"} {capCard "Widget Marketplace" "Published widget patterns with versioned adoption, governance template library, and hub registry for domain extension discovery." "rose"}
{-- Status bar --}
12 / 12
IHF Phases Complete
3.68
GAAF Score (Strong)
58
Controllers
IHF v0.2
Specification
{-- Nav to docs --}
Tutorial → Extension Guide → Full Capabilities →
|] where chainLink (label :: Text) (color :: Text) = [hsx| color <> "-100 text-" <> color <> "-800 font-mono") :: Text}> {label} |] arrow = [hsx||] capCard title_ body_ color = [hsx|
color <> "-500") :: Text}>

{title_ :: Text}

{body_ :: Text}

|]