$git clone https://github.com/qqqqqf-q/Arkloop---
| 1 | <p align="center"> |
| 2 | <img src="https://cdn.nodeimage.com/i/rvRvQavXMOx1ostIUyAqBc3mfy9SOGM4.png" alt="Arkloop" /> |
| 3 | </p> |
| 4 | |
| 5 | <h3 align="center">Open-source / Clean / Powerful — Your AI Agent Platform</h3> |
| 6 | |
| 7 | <p align="center"> |
| 8 | <a href="./docs/zh-CN/README.md"><img alt="简体中文" src="https://img.shields.io/badge/简体中文-d9d9d9"></a> |
| 9 | <a href="./LICENSE"><img alt="License" src="https://img.shields.io/badge/license-Arkloop%20License-blue"></a> |
| 10 | <a href="https://github.com/qqqqqf-q/Arkloop/graphs/commit-activity"><img alt="Commits" src="https://img.shields.io/github/commit-activity/m/qqqqqf-q/Arkloop?labelColor=%2332b583&color=%2312b76a"></a> |
| 11 | <a href="https://github.com/qqqqqf-q/Arkloop/issues"><img alt="Issues closed" src="https://img.shields.io/github/issues-search?query=repo%3Aqqqqqf-q%2FArkloop%20is%3Aclosed&label=issues%20closed&labelColor=%237d89b0&color=%235d6b98"></a> |
| 12 | <a href="https://x.com/intent/follow?screen_name=qqqqqf_"><img alt="Follow on X" src="https://img.shields.io/twitter/follow/qqqqqf_?logo=X&color=%20%23f5f5f5"></a> |
| 13 | <a href="https://t.me/Arkloop_io"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-Group-blue?logo=telegram"></a> |
| 14 | <a href="https://github.com/qqqqqf-q/Arkloop/stargazers"><img alt="Stars" src="https://img.shields.io/github/stars/qqqqqf-q/Arkloop?style=social"></a> |
| 15 | <a href="https://github.com/qqqqqf-q/Arkloop/network/members"><img alt="Forks" src="https://img.shields.io/github/forks/qqqqqf-q/Arkloop?style=social"></a> |
| 16 | </p> |
| 17 | |
| 18 | --- |
| 19 | |
| 20 | Arkloop is a design-focused open-source AI Agent platform. Multi-model routing, sandboxed execution, persistent memory — a clean desktop app that works out of the box. |
| 21 | |
| 22 | ## Download |
| 23 | |
| 24 | Download the latest version from [GitHub Releases](https://github.com/qqqqqf-q/Arkloop/releases), supporting macOS, Linux, and Windows. |
| 25 | |
| 26 | The desktop app bundles the full runtime — no Docker, no configuration. Just open and use. Automatic updates via GitHub Releases. |
| 27 | |
| 28 | On first launch, Desktop can install the `ark` command-line tool. After that, you can start the same local runtime without the Desktop window: |
| 29 | |
| 30 | ```bash |
| 31 | ark web |
| 32 | ``` |
| 33 | |
| 34 | ### CLI via Homebrew |
| 35 | |
| 36 | Homebrew installs the Arkloop CLI only: |
| 37 | |
| 38 | ```bash |
| 39 | brew install qqqqqf-q/arkloop/arkloop && ark web |
| 40 | ``` |
| 41 | |
| 42 | For a headless Linux machine, use one command: |
| 43 | |
| 44 | ```bash |
| 45 | sh -c 'set -e; arch="$(uname -m)"; case "$arch" in x86_64|amd64) arch=amd64 ;; aarch64|arm64) arch=arm64 ;; *) echo "unsupported architecture: $arch" >&2; exit 1 ;; esac; name="ark-linux-${arch}"; rm -rf "$name"; curl -fsSL "https://github.com/qqqqqf-q/Arkloop/releases/latest/download/${name}.tar.gz" | tar -xz; cd "$name"; exec ./ark web --host 0.0.0.0 --no-open' |
| 46 | ``` |
| 47 | |
| 48 | ## Features |
| 49 | |
| 50 | Arkloop does what other AI chat tools do — multi-model support, tool calling, code execution, memory — but we focus on doing it cleanly: |
| 51 | |
| 52 | - **Multi-Model Routing** — OpenAI, Anthropic, and any compatible API; priority-based automatic routing with rate limit handling |
| 53 | - **Sandboxed Execution** — Code runs in Firecracker microVMs or Docker containers with strict resource limits |
| 54 | - **Persistent Memory** — System constraints, long-term facts, and session context preserved across conversations |
| 55 | - **Prompt Injection Protection** — Semantic-level scanning that detects and blocks injection attacks |
| 56 | - **Channel Integration** — Telegram integration with media handling and group context |
| 57 | - **Custom Personas** — Independent system prompts, tool sets, and behavior configs; Lua scripting supported |
| 58 | - **MCP / ACP** — Model Context Protocol and Agent Communication Protocol support |
| 59 | - **Skill Ecosystem** — Import skills from ClawHub, compatible with OpenClaw SKILL.md format |
| 60 | |
| 61 | Full documentation at [docs](https://arkloop.io/en/docs/guide). |
| 62 | |
| 63 | |
| 64 | ## Contributing |
| 65 | |
| 66 | We welcome contributions of all kinds. |
| 67 | |
| 68 | Even if you're not a developer, just a regular user — if anything feels off while using it, even a bit of spacing, a color, a tiny detail, or a big-picture direction — please [open an issue](https://github.com/qqqqqf-q/Arkloop/issues). |