🔐 Credential Vault

System Status — Active Tracks

Shows all active Telegram threads, background loops, and operations currently running. Tracks that exceed their expected max duration are marked as stale.

Loading…

Deployed Version

Loading…

Runtime Configuration

Loading…

Replicate - Spin Up Your Own Instance

You can spawn a fresh instance of the TrueSight DAO Autopilot on any Linux server. Each instance gets its own identity, context, and transcript repo.

Quick Start (manual)

  1. Clone the repo - git clone https://github.com/TrueSightDAO/truesight_autopilot.git
  2. Install dependencies - pip install -r requirements.txt
  3. Copy .env - cp .env.example .env and fill in your keys (see below)
  4. Fork the context repo - https://github.com/TrueSightDAO/agentic_ai_context - replace the content with your own runbooks and protocols
  5. Create a transcript repo - an empty GitHub repo (e.g. my-autopilot-transcript) - the autopilot writes session history here
  6. Set env vars - point AGENTIC_CONTEXT_REPO and TRANSCRIPT_REPO at your forks
  7. Run - python3 app/main.py - the vault page at /vault/status will confirm it is alive

Required Credentials

CredentialEnv VarWhy
LLM API KeyDEEPSEEK_API_KEY or LITELLM_API_KEYRequired to reason and respond. Without it, the autopilot cannot function.
GitHub PATGITHUB_PATRequired to read repos, open PRs, and submit contributions.
Telegram Bot TokenTELEGRAM_BOT_TOKENRequired to receive and send messages. Get one from @BotFather.

Self-Replication ready

A governor can already say:
"Sophia, spawn a new instance for Bilal" (clone) or
"Sophia, fork the ecosystem for Liz" (new DAO).

There are two paths:

Clone

Same DAO, new operator. New Sophia shares the existing Edgar API and ledger.

  • ~10 minutes
  • Governor provides 3 credentials
  • Shares existing infrastructure

Fork

New DAO, new rules. New Sophia + new Edgar + new DB + blank context.

  • ~1 hour
  • Governor writes their own rules
  • Completely independent ecosystem

Try it: Say "Sophia, spawn a new instance for [name]" or "Sophia, fork the ecosystem for [name]". I'll follow the Self-Replication SOP. The new instance's /vault/status page will show its own runtime config.

Architecture Note

Each instance is content-addressable - its behavior is determined by its context repo, not hardcoded logic. Two instances with different context repos will behave completely differently, even running the same code. The transcript repo is per-instance memory - it starts empty and fills as the instance operates.

Vault Health

Loading…