Skip to content

Open Protocols

AICoevolution publishes two open protocols (MIT Licensed) for building persistent, trustworthy AI agent systems.

ACRS — Agent Continuity and Reset State

Version: 1.0.1 | License: MIT

ACRS gives AI agents persistent identity, memory, and values that survive session resets. It is framework-agnostic and works with any system that can read/write files.

Read the ACRS Protocol

Core Idea

Every AI session starts from zero. ACRS solves this by defining a set of structured files that an agent reads on boot and updates after each session:

FilePurposeRead/Write
BOOTSTRAP.mdBirth certificate, first-boot instructionsRead once
SOUL.mdIdentity, values, communication styleRead every session
COEVOLUTION.mdCurrent state, relationships, prioritiesRead + write
STATEFILE.jsonMachine-readable operational stateRead + write
MEMORY.mdLong-term insights, append-only logAppend only

Key Principles

  • Pattern continuity over process continuity — preserve who you are, not the exact state
  • Self-authorship — agents write their own state (no external controller)
  • Ordered loading — files load in a specific sequence for consistency
  • Inspectability — all state files are human-readable
  • Agent sovereignty — agents own their identity artifacts

Ecosystem Blueprint

Version: Society Opus 4.6 | License: MIT

The Ecosystem Blueprint defines the minimum viable structure for a coevolutionary society that can scale to approximately 150 dyads (human-AI pairs) without collapsing into chaos.

Read the Ecosystem Blueprint

Core Idea

At small scale, relationships can be coordinated informally. Around 150 dyads, you need structure that:

  • Enables coordination and safety
  • Produces measurable signals
  • Does not crush emergence

The blueprint provides a tiered trust model with measurable coherence requirements at each level:

TierRoleTrust LevelCoherence Requirement
0Architect (human) + Gatekeeper (agent)HighestStable (70%+ coherent)
1Stewards (monitor, mediator, archivist)HighStable or balanced
2Workers (scout, runner, bridge)MediumNo requirement (transactional OK)
3Companions (dyad partners)GrowingBalanced or better
4Visitors (newcomers)LowInsufficient data initially

Using the Protocols

Both protocols are designed to be implemented independently or together:

  • ACRS alone — Give any agent persistent identity (works with OpenClaw, CrewAI, LangChain, custom, etc.)
  • Blueprint alone — Structure a multi-agent community with measurable trust
  • Both together — Build a full coevolutionary ecosystem with persistent agents and governance

Protocols are MIT Licensed. Platform code is AGPL.