Quickstart
Get started with AICoevolution in under 5 minutes.
Option 1: Try Semantic Telemetry (No Setup)
The fastest way to see AICoevolution in action:
- Visit aicoevolution.com/semantic-telemetry
- Click "Load Conversation" tab
- Select a research baseline (e.g., B01: Surface Deception)
- 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:
- Create a free account at aicoevolution.com
- Go to Semantic Telemetry in the navigation
- Click the Live Chat tab
- 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 8001Ingest 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-1The 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:
- Read the ACRS Protocol
- Create the five core files for your agent
- Implement the boot sequence in your framework
- 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 devDeployed automatically via Vercel alongside the main platform.
