Appearance
Lite Public Beta
Aionis Lite is the fastest way to try Aionis today.
It gives you a local, SQLite-backed edition that preserves the core Aionis workflow:
- write execution memory
- recall it later
- assemble context
- replay what happened
What Lite Is
Lite is:
- local
- single-user
- SQLite-backed
- the shortest path to testing Aionis with Codex or MCP
Lite is not:
- Server parity
- a production replacement for Server
- the multi-user control plane
Fastest Start
bash
git clone https://github.com/Cognary/Aionis.git
cd Aionis
cp .env.example .env
npm install
npm run build
npm run start:liteHealth should show Lite:
bash
curl -fsS http://localhost:3001/health | jq '{ok,aionis_edition,memory_store_backend}'Expected:
aionis_edition = "lite"memory_store_backend = "lite_sqlite"
What Lite Supports Today
Lite public beta supports the core Aionis runtime path:
writerecallrecall_textplanning/contextcontext/assemble- replay lifecycle and playbooks
- sessions and packs
- graph inspection
- rules and tools loop
What Stays Server-Only
These remain intentionally unavailable in Lite:
/v1/admin/control/*/v1/automations/*
Treat 501 server_only_in_lite as edition behavior, not as a runtime failure.
Recommended Validation
Run the standard Lite validation path:
bash
npm run -s lite:dogfoodThat path checks:
- startup
- health
- write
- recall
- context runtime
- pack export/import
- replay lifecycle
Why Start with Lite
If you want to prove the value of Aionis quickly, Lite is the right first step:
- less setup friction
- easier local iteration
- direct Codex and MCP experimentation
- the fastest route to continuity, replay, and exact handoff recovery