返回目錄

anolisa

維護狀態: 活躍

alibaba/anolisa

阿里巴巴開源的 Agentic OS,提供執行時、安全、可觀測性,並通過無 Token 響應壓縮降低用量與成本。

前往 GitHub專案首頁
$ curl -fsSL https://get.agentic-os.sh | bash

587

星數

108

Fork

Rust

語言

Apache-2.0

授權條款

2026-03-30

建立於

2026-09-09

最近推送

Apache-2.0、以 Rust 撰寫的 Agentic OS 作業層;Token-less 以零程式碼改動相容於任意 Agent 框架與模型之間,可與 DeepSeek Harness 工作流並行使用。

DSH 整合

相容

自動推斷

安全稽核

未稽核

最後核實

2026-08-21

授權條款

Apache-2.0

01它能幫你完成什麼?

  • Cut token cost of tool-heavy agent workflows before responses reach the model

    Token-less response/schema compression in the pipeline — README reports 65.8% fewer Tokens for tool responses, 47.3% for tool schemas and 62.9% for the full pipeline, with dropped items retrievable via reversible `<<tokenless:KEY>>` markers

    Developers running token-heavy agent tasks (e.g. alongside DeepSeek Harness workflows) who want lower context cost without changing their agent framework

  • Let an Agent operate the system directly from the terminal

    cosh-ng AI-native terminal that keeps Bash/Zsh behavior and adds an Agent which understands intent, uses tools and Skills, and asks for approval before risky work

    Linux/macOS users and DevOps engineers who want agent-driven system work in one terminal instead of a separate chat app

  • Secure agent execution with sandboxing, Skill integrity checks and workspace recovery

    Agent Sec Core isolates risky operations and flags changed signed Skills as `drifted`/`deny`; ws-ckpt keeps recovery points for workspace changes

    Teams running unattended agent tasks who need execution boundaries, Skill tamper detection and a way back

02如何將外掛接入 DeepSeek Harness?

先決條件

  • Linux or macOS (per the README platform badge)
  • curl plus shell access; the bootstrap script installs into the user environment (`export PATH="$HOME/.local/bin:$PATH"`)
  • sudo for system-mode installs such as cosh-ng

安裝步驟

  1. 01

    Install the ANOLISA CLI entry point: `curl -fsSL https://get.agentic-os.sh | bash` (then `export PATH="$HOME/.local/bin:$PATH"`)

    $ curl -fsSL https://get.agentic-os.sh | bash

  2. 02

    Install the AI-native terminal in system mode: `sudo anolisa --install-mode system install cosh-ng`

  3. 03

    Add Token-less independently: `anolisa install tokenless`

  4. 04

    For Claude Code, connect the adapter: `anolisa adapter enable tokenless claude-code`, then restart Claude Code

  5. 05

    Run `cosh` to enter the AI-native terminal

驗證整合成功

作者未說明

03DSH 整合程度與能力邊界

DSH 整合相容

Framework-agnostic companion layer: Token-less compresses tool responses/schemas between any Agent framework and the model with no harness changes, so it can sit alongside DeepSeek Harness workflows; the README does not mention dsh by name

  • Token-less tool-output compression

    tool schemas and tool responses between the Agent and the modelcompressed context with field-blacklist drops; dropped array items stay retrievable through reversible `<<tokenless:KEY>>` markers; `tokenless stats summary` / `tokenless stats list` show savings

    runs as a pipeline between the Agent and the model, so it intercepts tool traffic in flightadapter configuration writes into the connected agent (e.g. Claude Code) and requires restarting it
  • cosh-ng AI-native terminal

    natural language and shell commands in one terminalan Agent that understands intent, uses tools and Skills, and asks for approval before risky work, while keeping Bash/Zsh behavior

    installed in system mode via `sudo anolisa --install-mode system install cosh-ng`
  • Agent Sec Core sandbox & Skill verification

    agent operations and signed Skillsrisky operations isolated in a sandbox; changed signed Skills reported as `drifted` and blocking findings recorded as `deny` on rescan

    isolates/intercepts risky operations at runtime and records security findings for Skills
  • AgentSight observability

    a running Agent on Linuxend-to-end view of user input through model and tool calls, with Token use and sub-agent branches, observed via eBPF without changing agent code

    uses eBPF kernel-level tracing on Linux to observe the agent process

04適合誰?何時不該用?

適合

  • Developers running token-heavy agent tasks (e.g. alongside DeepSeek Harness workflows) who want lower context cost without changing their agent framework
  • Linux/macOS users and DevOps engineers who want agent-driven system work in one terminal instead of a separate chat app
  • Teams running unattended agent tasks who need execution boundaries, Skill tamper detection and a way back

不適合

  • ANOLISA targets Linux and macOS only (per the README platform badge); several runtime features such as AgentSight's eBPF observation are Linux-specific.
  • Installation uses a remote bootstrap script (`curl -fsSL https://get.agentic-os.sh | bash`), requires network access, and system-mode components like cosh-ng need sudo.

05相容性、維護與安全提醒

  • ANOLISA targets Linux and macOS only (per the README platform badge); several runtime features such as AgentSight's eBPF observation are Linux-specific.
  • Installation uses a remote bootstrap script (`curl -fsSL https://get.agentic-os.sh | bash`), requires network access, and system-mode components like cosh-ng need sudo.
  • Token savings vary by workload: the cited 317K Tokens (40.5%) came from one observed coding task, and savings apply to the tool responses entering the context, not to the whole session bill.
2026-03-302026-08-19tokenless/v0.7.11

Apache-2.0 · actively maintained (release tokenless/v0.7.11, 2026-08-20; repo pushed 2026-08-19)

06常見問題

ANOLISA 如何與 DeepSeek Harness 搭配?

README 並未點名 DeepSeek Harness(dsh)。ANOLISA 是框架無關的伴生層:Token-less 執行在 Agent 與模型之間,「無需修改 Agent 框架程式碼」,因此可最佳化現有 Agent 設定的工具呼叫;它透過 adapter 接入具體的 Agent(README 範例為 Claude Code)。

支援哪些平台?

依 README 的平台徽章,支援 Linux 與 macOS。部分能力僅限 Linux,例如 AgentSight 基於 eBPF 的觀測。

安裝需要哪些前置條件?

需要網路與 curl 執行引導腳本 `curl -fsSL https://get.agentic-os.sh | bash`,並將 `~/.local/bin` 加入 PATH;cosh-ng 等系統模式安裝需要 sudo。

Token-less 能節省多少 Token?

README 基準顯示:工具回應減少 65.8%、工具 schema 減少 47.3%、完整管線減少 62.9%;一次觀測到的編碼任務節省了 317K Token(40.5%)。實際效果因工作負載而異,且節省只套用於進入上下文的工具回應,而非整個工作階段的帳單。

壓縮是否安全、可還原?

是的——被丟棄的陣列項目可透過 `<<tokenless:KEY>>` 標記找回,壓縮是可還原的;ANOLISA 也保留你現有的 Shell、Agent 框架與沙箱。

08資料與來源

  • 作者聲明github.com4624909d619e…

    The operating system layer for Agent workloads. Let Agents drive the system straight from your terminal, and strip the t…

  • 自動推斷github.com4624909d619e…

    Compression runs between the Agent and the model, so no Agent framework code changes.

此頁面根據專案公開文件、儲存庫中繼資料與 DSH Plugins 的結構化解析所產生;最後核實於 2026-08-21。發現錯誤?提交更正。

🏆

最佳 DeepSeek Harness 外掛

從全目錄挑出的 12 個值得優先安裝的外掛,涵蓋各個分類。

DSH Plugins 是獨立的 DeepSeek Harness 外掛市集,與 DeepSeek 官方無關,也不代表官方背書。第三方外掛未經安全稽核,安裝前請審查原始碼。

每週取得最新的 DeepSeek Harness 外掛,絕不濫發。