Skip to content

Quickstart

Get started with AICoevolution in under 5 minutes.

Option 1: Try Semantic Telemetry (No Setup)

The fastest way to see AICoevolution in action:

  1. Visit aicoevolution.com/semantic-telemetry
  2. Click "Load Conversation" tab
  3. Select a research baseline (e.g., B01: Surface Deception)
  4. Click Analyze to see real-time SGI and velocity metrics

No account required for replay mode.

Option 2: Live Chat with Metrics

For real-time telemetry during a live conversation:

  1. Create a free account at aicoevolution.com
  2. Go to Semantic Telemetry in the navigation
  3. Click the Live Chat tab
  4. Start a conversation — metrics update after each message pair

Free tier includes 100 turns per week.

Option 3: Integrate the SDK

For developers who want to add telemetry to their own applications:

Install

The SDK runs as a service. Clone and deploy:

bash
git clone https://github.com/AICoevolution/aicoevolution-sdk
cd aicoevolution-sdk
pip install -r requirements.txt
uvicorn main:app --port 8001

Ingest a Message

bash
curl -X POST http://localhost:8001/v0/ingest \
  -H "Content-Type: application/json" \
  -d '{
    "conversation_id": "my-conversation-1",
    "role": "user",
    "text": "I have been thinking about what it means to truly understand someone.",
    "timestamp_ms": 1707900000000
  }'

Get a Snapshot

bash
curl http://localhost:8001/v0/snapshot/my-conversation-1

The response includes per-turn SGI, orbital velocity, context drift, and coherence region classification.

For full SDK documentation, see the SDK Reference.

Option 4: Build with ACRS

To give your AI agent persistent identity:

  1. Read the ACRS Protocol
  2. Create the five core files for your agent
  3. Implement the boot sequence in your framework
  4. Store files on persistent storage (disk, Docker volume, S3)

ACRS works with any framework: OpenClaw, CrewAI, LangChain, or custom.

Docs Development

To run these docs locally:

bash
cd MirrorMind/_subdomains/docs
npm install
npm run dev

Deployed automatically via Vercel alongside the main platform.

Protocols are MIT Licensed. Platform code is AGPL.