> ## Documentation Index
> Fetch the complete documentation index at: https://docs.timepointai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Timepoint AI — infrastructure for temporal reasoning. Render the past. Simulate the future. Score the predictions. Accumulate the graph.

# Timepoint AI

Timepoint is the infrastructure layer for temporal reasoning. We render the past to understand it. We render the future to choose it.

## What is Timepoint?

Timepoint is an open-source ecosystem of integrated services that work together to build a persistent, growing model of historical and future causality:

<CardGroup cols={2}>
  <Card title="Conductor" icon="wand-magic-sparkles" href="/products/conductor">
    **The Operator** — the natural-language interface to the whole stack. Ask it in plain language to find money, run a simulation, render a moment, or explore the graph; it calls the services and reports credits as it goes. The authenticated home of app.timepointai.com, available over REST and MCP.
  </Card>

  <Card title="Gateway" icon="shield" href="/api-reference/gateway">
    **The Front Door** — API gateway at api.timepointai.com. Handles authentication (Apple, Google, GitHub OAuth), JWT signing, credits, and user management. All client traffic enters here.
  </Card>

  <Card title="Flash" icon="bolt" href="/products/flash">
    **The Reality Writer** — type any moment in history, get a grounded scene with characters, dialog, and a photorealistic image via a 14-agent critique-loop pipeline.
  </Card>

  <Card title="Clockchain" icon="link" href="/products/clockchain">
    **The Temporal Causal Graph** — tens of thousands of historical moments connected by hundreds of thousands of typed causal edges, spanning 700 BCE to 2026 and growing 24/7. PostgreSQL-backed directed graph that accumulates rendered past and simulated future into a growing Bayesian prior. (Live counts: `GET /api/v1/stats`.)
  </Card>

  <Card title="Billing" icon="credit-card" href="/api-reference/overview">
    **The Commerce Layer** — Stripe payments, Apple IAP, and invite codes. Coordinates with Gateway to grant credits.
  </Card>

  <Card title="TDF" icon="file-code" href="/products/tdf">
    **The Data Format** — JSON-LD interchange format with content-addressed SHA-256 hashing. The universal data contract.
  </Card>

  <Card title="SNAG-Bench" icon="chart-bar" href="/products/snag-bench">
    **The Quality Certifier** — temporal reasoning benchmark with 60 adversarial tasks, 5 scoring axes, designed to stay hard through 2030.
  </Card>

  <Card title="Proteus" icon="coins" href="/products/proteus">
    **The Settlement Layer** — prediction market protocol on BASE L2 where rendered futures are scored against reality.
  </Card>
</CardGroup>

## Core Concept: SNAG

**Social Network Augmented Generation** synthesizes and maintains structured social graphs — with causal provenance, knowledge flow, emotional states, and temporal consistency — to ground LLM generation in complex group dynamics.

Where **RAG** answers questions from what was written down, **SNAG** reasons about what people *did*, *felt*, and *caused*.

| Aspect        | RAG                | SNAG                                      |
| ------------- | ------------------ | ----------------------------------------- |
| **Input**     | Document corpus    | Scenario + entities + relationships       |
| **Structure** | Flat chunks        | Directed causal graph                     |
| **Temporal**  | Snapshot           | Multi-mode (forward, branching, cyclical) |
| **Output**    | Answer + citations | Simulation state + dialog + provenance    |

## Architecture

All client traffic enters through the API Gateway (api.timepointai.com), which handles authentication, credits, and user management. The Gateway proxies generation requests to Flash with an X-User-ID header. Flash produces grounded scenes, drawing on Clockchain (causal graph) and SNAG-Bench (benchmark). Billing handles payments and coordinates with Gateway to grant credits. Flash and Clockchain share TDF (data format) as their interchange layer.

```
                     api.timepointai.com
                              │
                    ┌─────────▼──────────┐
                    │  Gateway (Auth,     │
                    │  Credits, Users)    │
                    └─────────┬──────────┘
                              │ X-User-ID
                    ┌─────────▼──────────┐    ┌─────────────────┐
                    │   Flash (Renderer)  │    │    Billing       │
                    │  (no auth — pure    │    │  (Stripe, IAP,   │
                    │   generation engine)│    │   invite codes)  │
                    └─────────▲──────────┘    └────────┬────────┘
                              │                        │
                    ┌─────────┴───────────┐            │
                    │                     │       credits/grant
           ┌────────┴────────┐  ┌─────────┴───────┐
           │   Clockchain    │  │   SNAG-Bench    │
           │  (Causal Graph) │  │  (Benchmark)    │
           └────────┬────────┘  └─────────────────┘
                    │
            ┌───────▼───────┐
            │      TDF      │
            │ (Data Format) │
            └───────────────┘
```

## Get Started

New to Timepoint? These four pages cover the shortest path from zero to a working integration:

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Clone, install, and render your first moment — one click from here to a working `curl` command.
  </Card>

  <Card title="Authentication — Key Types" icon="key" href="/api-reference/authentication#auth-schemes">
    The four credential types (Bearer JWT, API Key, X-Service-Key, X-Admin-Key) and when to use each.
  </Card>

  <Card title="MCP Tools" icon="plug" href="/api-reference/mcp#mcp-tools">
    The MCP tools (`clockchain_stats`, `clockchain_search`, `clockchain_moment`, `clockchain_neighbors`, `flash_render`).
  </Card>

  <Card title="Errors & Troubleshooting" icon="triangle-exclamation" href="/errors">
    HTTP status codes, rate-limit headers, and a decision tree for common failures.
  </Card>
</CardGroup>

### Go Deeper

<CardGroup cols={2}>
  <Card title="Core Concepts" icon="book" href="/concepts">
    Timepoints, temporal modes, and the Clockchain
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/overview">
    Gateway, Flash, and Clockchain API endpoints
  </Card>

  <Card title="GitHub" icon="github" href="https://github.com/timepointai">
    All source code — Apache-2.0 licensed
  </Card>

  <Card title="Accessibility" icon="universal-access" href="/accessibility">
    WCAG 2.1 Level A conformance statement
  </Card>
</CardGroup>
