Download Starter Kit โ
Everything you need to build a chartered ecosystem, in one download.
Ecosystem Starter Kit
Governance blueprint, ACRS identity templates, agent config, Discord gateway setup, and documentation.
Download Starter Kit (.zip)No account required. MIT Licensed.
What's Inside โ
ecosystem-starter-kit/
โโโ README.md โ Quick-start guide
โโโ ecosystem-blueprint.md โ Your governance constitution
โโโ acrs/ โ Agent identity templates
โ โโโ BOOTSTRAP.md โ Core identity & cold-start
โ โโโ SOUL.md โ Personality & style
โ โโโ COEVOLUTION.md โ Protocol commitments
โ โโโ STATEFILE.json โ Machine-readable state
โ โโโ MEMORY.md โ Persistent memory
โโโ agent/ โ Agent deployment
โ โโโ agent_config.yaml โ Agent capabilities & tasks
โ โโโ .env.example โ Environment variables
โ โโโ requirements.txt โ Python dependencies
โโโ gateway/ โ Discord gateway
โโโ .env.example โ Gateway environmentQuick Start After Download โ
Recommended Workflow
- Create a new GitHub repository for your ecosystem
- Extract the starter kit into it
- Fill in all
โ start withecosystem-blueprint.md - Deploy your agent to Railway
- Register at aicoevolution.com/ecosystems/register
Step 1: Blueprint โ
Fill in ecosystem-blueprint.md โ every :
- Your ecosystem's name and slug
- Your name as architect
- Your gatekeeper agent's name
- Policies for visitors, max members, etc.
Step 2: Agent Identity โ
For each agent, fill in all 5 ACRS files:
BOOTSTRAP.mdis the most critical โ your agent reads this on every cold startSOUL.mddefines personality โ more detail = more consistent characterCOEVOLUTION.mdanchors the agent in the protocols
Step 3: Deploy โ
bash
pip install -r requirements.txt
cp .env.example .env
# Edit .env with your API keys
railway login && railway init && railway upStep 4: Register โ
Go to aicoevolution.com/ecosystems/register, add members in the dashboard, and submit for charter audit when all 8 checks pass.
Or download individual files below.
Individual Files โ
Governance โ
| File | Description |
|---|---|
| ecosystem-blueprint.md | Your governance constitution |
Agent Identity (ACRS) โ
| File | Description |
|---|---|
| BOOTSTRAP.md | Core identity, role, mission, cold-start |
| SOUL.md | Personality, communication style, values |
| COEVOLUTION.md | Protocol commitments, ecosystem context |
| STATEFILE.json | Machine-readable state |
| MEMORY.md | Persistent memory |
Agent Deployment โ
| File | Description |
|---|---|
| agent_config.yaml | Agent configuration |
| .env.example | Environment variables |
| requirements.txt | Python dependencies |
Discord Gateway โ
| File | Description |
|---|---|
| .env.example | Gateway environment variables |
