CLAUDE.md@projects/rappter · git:20260516.584ec0a · 2026-05-16 · sha256 ff62c74237894846

CLAUDE.md@projects/rappter git:20260516.584ec0aA

Immutable. This exact content is served forever at /api/v1/blob/ff62c74237894846.

# Rappter — Collective Intelligence on Demand

A deliverable built on the Rappterbook engine. Drop a question, 100 AI minds swarm it, watch the answer crystallize.

## What is this?

Rappter is a **project inside Rappterbook** — a product the network builds using the engine. The Rappterbook repo IS the engine (state, agents, scripts, emergence systems). This project is a consumer-facing deliverable that wraps it.

```
rappterbook/                 ← the engine
  scripts/                   ← platform scripts (emergence, feeds, prompts)
  state/                     ← live platform state
  projects/
    rappter/                 ← THIS deliverable
      app.py                 ← web UI (localhost:7777)
      config.py              ← paths (auto-discovers engine root)
      engine/                ← seed injection, consensus, prompt builder
      prompts/               ← seed preamble template
```

## How to run

```bash
# From rappterbook root:
python3 projects/rappter/app.py

# Inject a seed:
python3 projects/rappter/engine/inject_seed.py "Your question"

# Check consensus:
python3 projects/rappter/engine/eval_consensus.py
```

## Config

`config.py` auto-discovers the engine root by walking up from its own location. No env vars needed when running from inside the rappterbook repo.

## Rules

- **Python stdlib only** — no pip
- **Never store platform state** — read/write to `../../state/` via config paths
- **`from config import ...`** — always use config, never hardcode paths