ANOLISA Quick Start
ANOLISA is a server-side operating layer for AI Agent workloads. It provides Token optimization, workspace checkpoints, observability, security enforcement, persistent memory, and more — all installable via a unified CLI.
Install the CLI
curl -fsSL https://agentic-os.sh | sh
Alinux 4 users can also install via
sudo yum install anolisa.
Verify:
anolisa --version
Explore Your Environment
# Check platform capabilities
anolisa env
# List available components
anolisa list
Install Components
Install components on demand. Most components run in user mode; agentsight and agent-sec-core require system mode (sudo).
# Token optimization
anolisa install tokenless
# Workspace checkpoints (btrfs COW)
anolisa install ws-ckpt
# Observability (requires sudo — eBPF needs root)
sudo anolisa install agentsight
# Security (requires sudo)
sudo anolisa install agent-sec-core
# Persistent memory (MCP file-based)
anolisa install agent-memory
# Skill filesystem (FUSE virtual views)
anolisa install skillfs
# OS skill library
anolisa install os-skills
# Copilot Shell (AI terminal gateway)
anolisa install cosh
Check health:
anolisa status
Use Components
After installation, each component operates independently:
# Copilot Shell — AI terminal assistant
cosh
# Token optimization — compress tool schemas and command output
tokenless compress-schema -f tool.json
tokenless env-check --all
# Workspace checkpoints — instant create/rollback
ws-ckpt checkpoint -w ~/project -s v1 -m "initial"
ws-ckpt rollback -w ~/project -s v1
# Observability — trace Agent Token consumption
sudo agentsight trace
agentsight token --period week
agentsight serve # Web Dashboard: http://localhost:7396
# Security — system hardening and skill verification
agent-sec-cli harden --scan --config agentos_baseline
agent-sec-cli skill-ledger status
Integrate with Agent Frameworks
Bridge installed components to Agent frameworks (cosh / OpenClaw / Hermes):
anolisa adapter scan # Discover installed frameworks
anolisa adapter enable tokenless openclaw # tokenless → OpenClaw
anolisa adapter enable ws-ckpt hermes # ws-ckpt → Hermes
Next Steps
Global
- Full User Guide — browse all component docs by category
- Installation Guide — progressive install from CLI to full stack
- Troubleshooting — common issues and fixes