Agentic OS 0.6

>_ ANOLISA

Agent-native OS layer.
Sandbox isolation, kernel observability, token optimization.
Managed as one system, deployed in one command.

The operating system's user has changed. ANOLISA makes every Agent a first-class citizen of the kernel.

curl -fsSL https://agentic-os.sh/install.sh | bash
Copied to clipboard
SCROLL
Capabilities

Every agent deserves an operating system that understands it.

>_
Copilot Shell

Terminal-native AI copilot with streaming tool use. Works with any model provider. Contextual autocomplete, operation orchestration, and self-healing diagnostics.

#!
OS-level Sandbox

Seccomp + namespace isolation per agent. Least-privilege at the kernel boundary.

~$
Agent Observability

eBPF-based kernel tracing for syscalls, file access, and network. Zero overhead.

%<
Token Optimization

Transparent prompt caching and context compression at the OS level. Reduce LLM costs by up to 30% without changing agent code.

!
AgentSecCore

Security kernel for agent runtimes. Traditional OS security asks "can it run?" — AgentSecCore asks "is it running correctly?"

^^
Unified CLI

One tool to enable, disable, update, and diagnose every component. Declarative manifests, idempotent operations.

Changelog

ANOLISA component release notes.

Stable updates across the CLI, runtime components, adapters, and agent operating layer.

Source changelog

Command-line runtime, installer, and agent operating layer.

0.1.8
2026-06-15

Added

  • anolisa adapter enable can now register installed adapters with OpenClaw.
  • anolisa adapter disable can now remove OpenClaw adapter registrations.
  • anolisa adapter status can now report OpenClaw adapter health.
  • anolisa adapter scan can now show installed adapter resources.

Changed

  • anolisa install now places adapter resources needed by later enablement.
  • anolisa uninstall now blocks components that still have enabled adapters.
0.1.7
2026-06-13

Changed

  • User-mode library paths now resolve to ~/.local/lib/anolisa; other directories continue to follow XDG_* overrides.

Fixed

  • anolisa install no longer requires a local catalog entry before downloading from the remote repository.
  • anolisa install --dry-run can preview files and services without downloading the full package.
0.1.6
2026-06-12

Added

  • anolisa osbase sandbox install gvisor now supports standalone, containerd, and substrate deployments. (#851)
  • anolisa list can derive the component catalog from repo.toml configuration. (#854)

Changed

  • Replaced the legacy "capability" model with a unified component lifecycle; old state auto-migrates on next write. (#876)

Fixed

  • anolisa list --enabled now correctly shows installed components instead of an empty list. (#872)
  • anolisa list no longer requires a separate local catalog file when repo.toml is configured. (#854)
0.1.5
2026-06-11

Added

  • anolisa list reads from a remote or local component catalog and returns structured JSON. (#850)
  • anolisa install <component> downloads, verifies, and installs components from the remote repository. (#852)
  • anolisa uninstall supports the new component model while preserving legacy fallback. (#852)

Changed

  • Simplified CLI help around list, install, uninstall, status, doctor, logs, restart, update. (#850)

Fixed

  • anolisa list returns an empty list with a config hint when no catalog is configured. (#850)
  • Failed installs now automatically roll back partially-written files. (#852)
0.1.4
2026-06-10

Added

  • anolisa adapter scan detects available framework integrations. (#808)
  • anolisa adapter install downloads verified packages and registers adapters with the target framework.
  • anolisa adapter remove safely removes only ANOLISA-managed files, with dry-run and JSON preview support.
  • anolisa adapter install tokenless openclaw wires up the tokenless adapter via the OpenClaw CLI.
  • anolisa enable fetches component metadata from the remote repository, with offline fallback.
  • anolisa status now includes component health check results.

Changed

  • Renamed subscription commands to top-level anolisa register / unregister.

Fixed

  • Adapter install/remove failures now roll back or preserve state for retry.