ANOLISA Agent OS Layer
A terminal, context-efficiency, and execution-layer toolkit for existing AI agent stacks.
What does this agent do, and when should you use it?
ANOLISA is a server-side operating layer for AI agent workloads, with ANOLISA CLI as its common installation entry point. Its cosh-ng component gives agents a structured, predictable interface for Shell and system operations. Token-less sits between an agent and its model to compress tool schemas and tool responses, while retaining references for removed array items. Agent Memory, SkillFS, and AgentSight cover cross-session context reuse, on-demand Skill mounting, and Token-spend recording. The execution-environment direction includes Agent Sec Core for isolating risky operations and ws-ckpt for workspace recovery points; the README identifies Linux and macOS as supported platforms.
After installation, operators can run anolisa install cosh-ng or anolisa install tokenless, then start the agent-native shell with cosh-ng. Token-less uses ResponseCompressor and SchemaCompressor on tool responses and schemas entering context; the documented example drops blacklisted debug and trace fields, null metadata, and empty tags / extra values. Removed array items retain a retrievable <<tokenless:KEY>> marker, making that compression reversible. Agent Memory reuses context across sessions, SkillFS exposes Skills as views and mounts them on demand, and AgentSight records where Tokens are spent. Agent Sec Core is described as isolating risky operations, while ws-ckpt preserves recovery points for workspace changes.
- A platform team already running an agent framework and sandbox can add cosh-ng when its agents need a structured terminal interface for Shell and system work.
- An agent application whose tool outputs contain debug data, nulls, empty fields, or redundant arrays can use Token-less before those responses enter model context.
- A team running recurring agent sessions can evaluate Agent Memory when it wants to reuse context across sessions.
- A developer organization with many Skills can use SkillFS when only the relevant Skills should be mounted into context for a given task.
- An operations team investigating context cost can use AgentSight to record where Tokens are actually spent.
- A workspace-oriented agent environment can assess ws-ckpt for recovery points and Agent Sec Core for risky-operation isolation.
What are this agent's strengths and limitations?
- It is designed to retain the Shell, agent framework, and sandbox already in use instead of replacing the execution stack.
- Token-less covers both tool schemas and tool responses, while preserving retrievable `<<tokenless:KEY>>` references for removed array items.
- Its context-efficiency components span session reuse, on-demand Skill mounting, and Token-spend recording rather than only response compression.
- The execution-environment scope includes both risky-operation isolation and workspace recovery points.
- The README explicitly identifies only Linux and macOS; it provides no evidence of Windows support.
- The published Token-reduction figures apply to tool responses and schemas entering context, not proportionally to the entire session bill.
- Initial setup executes a remotely fetched script through `curl`, which requires network access and may need to pass organizational software-installation review.
- Although it is described as working with existing frameworks and sandboxes, no named framework, model provider, or platform integration is documented, so compatibility needs validation.
- Agent Sec Core and ws-ckpt are presented as execution-environment capabilities being built out, without documented isolation semantics, recovery procedures, or configuration details.
How do you install or deploy this agent?
The documented installation command is:curl -fsSL https://get.agentic-os.sh | bash
Install the desired components:anolisa install cosh-nganolisa install tokenless
The README identifies Linux and macOS as platforms. This installation path requires network access and curl; no API key, account, or other credential requirement is documented.
How do you use this agent?
After installing cosh-ng, run:cosh-ng
This enters the agent-native shell. The README also says an existing agent can be pointed at cosh-ng. Once Token-less is installed, it applies to tool calls; the supplied documentation does not provide an additional configuration command, so validate compression behavior and retrieval-marker handling in the target workflow.
How does this agent compare with similar options?
ANOLISA is positioned as an added layer around an existing Shell, agent framework, and sandbox, rather than as a replacement for those systems.