Skip to Content
Aionis currently ships as a local-first Lite Runtime for developer machines and self-managed deployments.
Get StartedInstall Aionis

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 sdk

The installer:

  1. clones the Runtime repository,
  2. installs workspace dependencies,
  3. writes a local .env,
  4. builds the SDK and MCP packages,
  5. optionally runs a quickstart.

Manual Repository Install

git clone https://github.com/ostinatocc/Aionis.git cd Aionis npm install

Set an embedding provider:

export EMBEDDING_PROVIDER="minimax" export MINIMAX_API_KEY="your-minimax-key"

Then continue with Run the Runtime.

Package Entry Points

PackageUse
@aionis/createOne-command installer for Runtime, SDK, and MCP.
@aionis/sdkTypeScript facade for Agent hosts.
@aionis/mcpMCP bridge for Claude Code, Cursor, and MCP clients.

Requirements

RequirementNotes
Node.js 22+The Lite Runtime uses Node SQLite.
Embedding API keyRequired for recall and guide relevance.
Local shellThe Runtime and quickstarts run locally.