This commit adds the read path (Cortex) to complement the write path (Spine): ## Crates - stemedb-api: HTTP API with axum + utoipa OpenAPI - /v1/assert, /v1/query, /v1/epoch, /v1/skeptic, /v1/trace, /v1/audit - Metered endpoints with quota enforcement - Ed25519 signature verification - stemedb-lens: Truth resolution lenses - RecencyLens, ConsensusLens, ConfidenceLens - VoteAwareConsensusLens (Ballot Box pattern) - TrustAwareAuthorityLens (The Hive pattern) - SkepticLens (conflict analysis) - EpochAwareLens (paradigm-safe queries) - stemedb-query: Query engine with materialized views ## Storage Extensions - VoteStore: Vote aggregation with cached counts - TrustRankStore: Agent reputation with decay - AuditStore: Query audit trail - IndexStore: SP/P/S index structures - SupersessionStore: Epoch supersession chains ## SDKs - sdk/go/steme: Go HTTP client with Ed25519 signing - sdk/go/adk: ADK-Go tools for AI agents ## Documentation - Updated CLAUDE.md, architecture.md, roadmap.md - New ai-lookup entries for all services - Use case docs for consumer health intelligence - Arena roadmap for simulation advancement Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
125 lines
3.4 KiB
HTML
125 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Episteme - Presentations</title>
|
|
|
|
<!-- Geist font (Vercel) -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/geist@1.2.0/dist/fonts/geist-sans/style.min.css">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/geist@1.2.0/dist/fonts/geist-mono/style.min.css">
|
|
|
|
<style>
|
|
:root {
|
|
--bg-primary: #000000;
|
|
--bg-card: #111111;
|
|
--bg-card-hover: #1a1a1a;
|
|
--text-primary: #ffffff;
|
|
--text-secondary: #a3a3a3;
|
|
--text-muted: #525252;
|
|
--border-subtle: #262626;
|
|
--accent-episteme: #FBBF24;
|
|
--font-sans: 'Geist Sans', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
--font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
}
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
body {
|
|
background: var(--bg-primary);
|
|
color: var(--text-primary);
|
|
font-family: var(--font-sans);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.container {
|
|
max-width: 640px;
|
|
width: 100%;
|
|
padding: 2rem;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
font-weight: 400;
|
|
letter-spacing: -0.03em;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.subtitle {
|
|
color: var(--text-muted);
|
|
font-size: 1rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.deck-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.deck-link {
|
|
display: block;
|
|
padding: 1.5rem;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: 12px;
|
|
text-decoration: none;
|
|
color: var(--text-primary);
|
|
transition: background 0.2s ease, border-color 0.2s ease;
|
|
}
|
|
|
|
.deck-link:hover {
|
|
background: var(--bg-card-hover);
|
|
border-color: var(--accent-episteme);
|
|
}
|
|
|
|
.deck-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.deck-description {
|
|
font-size: 0.875rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.deck-id {
|
|
font-family: var(--font-mono);
|
|
font-size: 0.75rem;
|
|
color: var(--text-muted);
|
|
margin-top: 0.5rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>stemedb</h1>
|
|
<p class="subtitle">Presentations</p>
|
|
|
|
<div class="deck-list">
|
|
<a class="deck-link" href="index.html?deck=consumer-health-intelligence">
|
|
<div class="deck-title">Consumer Health Intelligence</div>
|
|
<div class="deck-description">The living truth layer. Source-class hierarchy, anecdotal signal detection, and the vaccine problem.</div>
|
|
<div class="deck-id">consumer-health-intelligence</div>
|
|
</a>
|
|
|
|
<a class="deck-link" href="index.html?deck=agile-agent-team">
|
|
<div class="deck-title">Agile AI Agent Team</div>
|
|
<div class="deck-description">Knowledge coordination across AI coding agents. Drift, catastrophe, and the fix.</div>
|
|
<div class="deck-id">agile-agent-team</div>
|
|
</a>
|
|
|
|
<a class="deck-link" href="index.html?deck=sec-analysis">
|
|
<div class="deck-title">SEC Document Analysis</div>
|
|
<div class="deck-description">Filing intelligence with amendment chains, section-level provenance, and competing analyst extractions.</div>
|
|
<div class="deck-id">sec-analysis</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|