/** * Amaru (conduit) /thesis — TH1→TH8 lineage ribbon surface. * * Amaru is the Andean ouroboros artifact; it hosts the only first-class * TH1→TH8 lineage ribbon. The other six shipped artifacts surface the * lineage as a single panel inside their GovernancePanels; this page is the * canonical render. * * Author: Stephen P. Lutar — SZL Holdings — ORCID 0009-0001-0110-4173 */ import { Layout } from '@/components/layout'; import { THESIS_LINEAGE, THESIS_PAPERS, thesisPaperSummary } from '@szl-holdings/szl-doctrine'; const GOLD = '#c9b787'; const MONO = 'ui-monospace, SFMono-Regular, Menlo, monospace'; function StatusDot({ status }: { status: string }) { const ok = status.includes('published') || status.includes('closed') || status.includes('complete'); const partial = status.includes('partial') || status.includes('skeleton'); const color = ok ? '#7fb893' : partial ? GOLD : '#888'; return ( ); } function paperAnchor(key: string) { return `paper-${key.toLowerCase().replace(/[^a-z0-9]+/g, '-')}`; } function PaperCard({ paperKey }: { paperKey: 'TH1-TH3' | 'TH4-TH7' | 'TH8-GLR' }) { const paper = THESIS_PAPERS.find((p) => p.key === paperKey)!; const s = thesisPaperSummary(paper); return (
{s.paperKey} · {s.versionText}
{paper.title}
{s.statusText}
{paper.theorems.map((th) => (
{th.id} {th.name} {th.proofStatus}
))}
DOI {s.doiText} ↗
); } export default function AmaruThesisPage() { const { audit, arxiv, zenodo } = THESIS_LINEAGE; return (
Amaru · Thesis lineage

TH1 → TH8 — full proof chain

The Andean ouroboros surfaces the canonical paper lineage from the SZL Zenodo community. Every theorem listed below resolves to a section in the published PDF, an entry in the doctrine evidence ledger, and (for TH8) a Lean 4 file in szl-holdings/lutar-lean.

Fly High V6 audit — live counters
Doctrine · {audit.doctrine}
P0 fixes · {audit.p0Fixes}
Beautify avg · {audit.beautifyAvg}
TH8 theorems · {audit.leanTheorems}
TH8 sorries open · {audit.leanSorriesOpen}
Closed in mirror · {audit.leanSorriesClosed.length}
Citation hardening · {audit.citationHardening}
Mirror updated · {audit.updatedAt}
arXiv: {arxiv.status}{arxiv.targetVenue} Zenodo: {zenodo.status} ({zenodo.targetVersion}) → DOI one-way doors: {zenodo.oneWayDoor || arxiv.oneWayDoor ? 'PENDING' : 'PASSED'}
); }