AI
容器化部署 Hermes Agent
· ☕ 2 分钟
1. 启动容器 设置镜像 1 export IMAGE=nousresearch/hermes-agent:v2026.4.16 设置目录权限 1 2 mkdir -p hermes-agent-home chmod -R 777 hermes-agent-home 设置环境变量 1 2 3 cat <<EOF > hermes-agent-home/.env GATEWAY_ALLOW_ALL_USERS=true EOF 启动 hermes-agent 1 2 3 4 5 6 7 nerdctl run -d \ --name hermes-agent \ --restart always \ -v $(pwd)/hermes-agent-home:/opt/data \ -v $(pwd)/openclaw-home/.openclaw:/root/.openclaw \ -p 8642:8642 \ $IMAGE gateway run 启动 hermes-agent dashboard 1 2 3 4 5 6 7 nerdctl run -d \ --name hermes-dashboard \ --restart always \ -p 9119:9119 \ -v $(pwd)/hermes-agent-home:/opt/data \ -e GATEWAY_HEALTH_URL=http://${node_IP}:8642 \ $IMAGE dashboard --host 0.0.0.0 --insecure 删除容器 1 nerdctl rm hermes-agent hermes-dashboard --force 2.

使用 A2A Gateway 打通多 OpenClaw
· ☕ 2 分钟
1. 架构 1 2 3 4 5 6 7 ┌──────────────────────┐ A2A/JSON-RPC ┌──────────────────────┐ │ OpenClaw 服务器 A │ ◄──────────────────────────► │ OpenClaw 服务器 B │ │ │ (Tailscale / 内网) │ │ │ Agent: AGI │ │ Agent: Coco │ │ A2A

你也可以这样落地 AI Agent - SOPS 篇
· ☕ 4 分钟
1. 建立 SOPS 基本盘 SOPS,Standard Operating Procedures,标准化操作程序。在我们进行的生产活动中,经常会有一些基础的、重复的操作流程,这些操作就是 SOPS。 你需要建立一系列的 SOPS,通过排列组合 SOPS 能帮助你更快地完成任务。以前建立标准

AGFS 文件系统性能测试
· ☕ 3 分钟
1. 安装 wrk 1 apt-get install -y wrk 2. localfs 性能测试 2.1 1KB 小文件测试 写文件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 cat > put-1k.lua <<"EOF" wrk.method = "PUT" wrk.body = string.rep("a", 1024) wrk.headers["Content-Type"] = "text/plain" counter = 0 local WRAP = 500000 request = function() counter = counter + 1 local n = ((counter - 1) % WRAP) + 1 local filename = "/local/perf-1k/test_" .. n .. ".txt" local path = "/api/v1/files?path=" .. filename return wrk.format(nil, path) end EOF 1 curl -X POST "http://127.0.0.1:8080/api/v1/directories?path=/local/perf-1k" 1 wrk -t4 -c40 -d30s -s put-1k.lua "http://127.0.0.1:8080" 1 2 3 4 5 6 7 8 Running 30s

面向 AI Agent 的文件系统 - AGFS
· ☕ 3 分钟
1. AGFS 简介 简介 AGFS 是一个通过 RESTful API 对外提供存储服务的项目。它支持多种存储后端,包括内存、文件、数据库、消息队列等。 由于不需要 POSIX 接口的支持,可以通过远程调用的方式存储数据,这在 AI Agent 中非常有用。 AI Agent 在执行一些工作流时,经常会产生一些中间结果。这些结果