zacp

作者 helloxz已验证

基于 ACP 协议的多 Agent Web 网关,让 CLI Agent 也能在浏览器中使用。

111
Stars
7
Forks
Go
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/helloxz/zacp

快速入门

使用 zacp 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Zacp

Zacp是一个基于 ACP(Agent Client Protocol) 协议的多 Agent Web 网关,让你在浏览器里同时使用多种 AI Agent 工具(如 Reasonix、Grok、Omp 等)进行对话,让原本不具备 Web 前端的 CLI Agent 也能在浏览器中使用。

CleanShot 2026-08-10 at 12.50.15@2x.png

CleanShot 2026-08-10 at 12.52.16@2x.png

CleanShot 2026-08-10 at 12.54.53@2x.png

CleanShot 2026-08-10 at 12.56.34@2x.png

CleanShot 2026-08-10 at 13.15.25@2x.png

CleanShot 2026-08-10 at 12.58.51@2x.png

技术栈

  • 后端 Go(Gin + acp-go-sdk + SQLite)
  • 前端 Vue 3 + Naive UI + Tailwind CSS

功能特性

  • 多 Agent 接入:适配 Codex、Reasonix、Grok、Omp、Qoder 等 CLI Agent
  • 浏览器 Web UI:会话式聊天界面,支持多会话、多 Agent 切换,流式输出实时展示(思考过程、工具调用、执行计划等);
  • 实时通信:基于 WebSocket 的流式消息推送与权限回传,交互延迟低;
  • 权限确认:Agent 请求执行操作(读写文件、执行命令等)时,权限请求会推送到 Web UI 由你亲自确认
  • 多Agent并行任务:支持最多三个任务并行执行。
  • 会话空闲回收:Agent 空闲超过设定时间(默认 30 分钟)自动停止释放内存,下次使用自动恢复,不占用系统资源;
  • 智能体管理:设置页可随时启用/禁用某个 Agent,热更新配置,无需重启服务;
  • 会话与消息持久化:历史会话、消息记录存入本地 SQLite(WAL 模式),重启不丢失;
  • 单二进制发布:前端页面与默认配置全部内嵌进一个可执行文件,--version 查看版本,即下即用;
  • 可选登录保护:设置页可设置用户名与密码,开启后访问需登录;
  • 一键安装与更新:提供 macOS、Linux、Windows 一键安装与更新脚本,自动检测系统与 CPU 架构,下载最新版本并安装;
  • 文件浏览器 :支持文件上传、编辑、删除、重命名等操作
  • Git面板 :支持查看 Git 状态
  • 主题模式 :支持深色模式与浅色模式切换
  • Web TTY:通过 /tty?workspaceId={id} 在项目目录下启动临时终端,支持 xterm.js、多 Tab、深色/浅色主题和 Linux/macOS/Windows。

TODO

  • 通过WEB页面编辑配置
  • 支持Docker部署
  • 支持添加多个Server端
  • 支持手机APP
  • 支持PC客户端

安装

注意事项

  1. 安装前请确认您的网络可以访问Github,否则可能导致安装失败!
  2. Zacp无内置Agent,请确保您本地已经安装了对应的 Agent(如 Codex、Reasonix、Grok、Omp 等),否则无法使用。

macOS / Linux 一键安装(推荐)

curl -fsSL https://raw.githubusercontent.com/helloxz/zacp/main/install.sh | bash

注意:如果您需要对接第三方Agent,比如Grok、Omp等需要先自行安装,然后在设置里面启用。

Windows 一键安装

在 PowerShell 中执行(推荐):

irm https://raw.githubusercontent.com/helloxz/zacp/main/install.ps1 | iex

提示:irm ... | iex 会直接执行来自网络的脚本,请确认来源可信;首次启动若弹出 Windows 防火墙提示,允许后即可通过 http://127.0.0.1:8680/ 访问。

首次启动

安装完成后直接运行 zacp 即可启动服务(默认监听 :8680),然后浏览器访问 http://127.0.0.1:8680/ 使用 Web UI

首次启动会自动生成配置文件 ~/.zacp/config.toml,按需编辑其中 [[agents]] 的 Agent 命令等;运行时数据(SQLite 数据库)存放在 ~/.zacp/data/

设置登录保护(可选)

默认安装后无需登录即可访问(适合本机 / 内网单用户使用)。如需远程访问,请务必开启登录认证:

  1. 打开页面右上角 设置 → 登录认证
  2. 填写用户名密码,点保存(密码留空并保存 = 关闭登录保护);
  3. 保存后立即生效(热更新,无需重启),之后所有页面需重新登录。

忘记密码:

编辑 ~/.zacp/config.toml,把 [auth] 段的 password_hash 置空(或直接删除 [auth] 段),保存后重启服务即恢复免登录,再按上述步骤重新设置即可。

更新

一键更新(推荐)

Linux & macOS

自动检测已安装的 zacp 并升级到最新版本:

curl -fsSL https://raw.githubusercontent.com/helloxz/zacp/main/update.sh | bash

如果 zacp 安装在 /usr/local/bin(需要 root 权限),请用 sudo 执行:

curl -fsSL https://raw.githubusercontent.com/helloxz/zacp/main/update.sh | sudo bash

Windows

Windows 用户在 PowerShell 中更新(自动检测已安装的 zacp 并升级到最新版本;需先停止正在运行的 zacp 进程,更新脚本不会自动结束它):

irm https://raw.githubusercontent.com/helloxz/zacp/main/update.ps1 | iex

联系作者

欢迎反馈问题、提建议或参与贡献!

常见问题

What is zacp?

zacp is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by helloxz. 基于 ACP 协议的多 Agent Web 网关,让 CLI Agent 也能在浏览器中使用。. It has 111 GitHub stars.

Is zacp safe to use?

Yes. zacp passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install zacp?

Clone the repository with "git clone https://github.com/helloxz/zacp" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is zacp written in?

zacp is primarily written in Go. It is open-source under helloxz on GitHub, so you can review or fork the full source.

Are there alternatives to zacp?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh zacp against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情