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://get.agentic-os.sh | bash
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. The current cosh-ng, agentsight,
agent-sec-core, ws-ckpt, and skillfs artifacts require system mode; the
other examples below support user mode.
# Token optimization (via anolisa CLI)
anolisa install tokenless
# Or via npm:
# npm install -g anolisa-tokenless
# Workspace checkpoints (btrfs COW)
sudo anolisa --install-mode system install ws-ckpt
# Observability (Linux system mode; includes the agentsight-enforcer service)
sudo anolisa --install-mode system install agentsight
# Security (requires sudo)
sudo anolisa --install-mode system install agent-sec-core
# Persistent memory (MCP file-based)
anolisa install agent-memory
# Skill filesystem (FUSE virtual views)
sudo anolisa --install-mode system install skillfs
# OS skill library
anolisa install os-skills
# Copilot Shell
anolisa install cosh
# cosh-ng (AI-native Linux terminal)
sudo anolisa --install-mode system install cosh-ng
Check health:
anolisa status
Use Components
After installation, each component operates independently:
# Start the installed terminal
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