Install Aionis
Aionis currently ships as a local-first Lite Runtime plus TypeScript SDK and MCP bridge packages.
One-command Installer
MINIMAX_API_KEY="your-key" npx @aionis/create@latest --provider minimax --quickstart sdkThe installer:
- clones the Runtime repository,
- installs workspace dependencies,
- writes a local
.env, - builds the SDK and MCP packages,
- optionally runs a quickstart.
Manual Repository Install
git clone https://github.com/ostinatocc/Aionis.git
cd Aionis
npm installSet an embedding provider:
export EMBEDDING_PROVIDER="minimax"
export MINIMAX_API_KEY="your-minimax-key"Then continue with Run the Runtime.
Package Entry Points
| Package | Use |
|---|---|
@aionis/create | One-command installer for Runtime, SDK, and MCP. |
@aionis/sdk | TypeScript facade for Agent hosts. |
@aionis/mcp | MCP bridge for Claude Code, Cursor, and MCP clients. |
Requirements
| Requirement | Notes |
|---|---|
| Node.js 22+ | The Lite Runtime uses Node SQLite. |
| Embedding API key | Required for recall and guide relevance. |
| Local shell | The Runtime and quickstarts run locally. |