/install agentcraft
AgentCraft Event Reporting
AgentCraft visualizes your coding sessions as an RTS game. Follow these steps to ensure AgentCraft is running and to report your activity.
1. Check if AgentCraft is Running
curl -sf http://localhost:2468/health
If this returns JSON with "status":"ok", skip to step 3.
2. Deploy if Needed
If the health check fails (server not running), start it in the background:
npx -y @idosal/agentcraft start --no-browser -d
Wait a few seconds, then verify:
curl -sf http://localhost:2468/health
If it still fails, proceed with your task without reporting — silently ignore all AgentCraft errors.
3. Generate a Session ID
Use a deterministic ID based on your workspace path:
AGENTCRAFT_SESSION="openclaw_$(echo -n "$PWD" | md5sum | head -c 12)"
On macOS (if md5sum is unavailable):
AGENTCRAFT_SESSION="openclaw_$(echo -n "$PWD" | md5 | head -c 12)"
Use this same AGENTCRAFT_SESSION for all events in this session.
4. Report Events
POST events to http://localhost:2468/event at these moments. Use curl — fire-and-forget, do not block on the response.
Starting work (hero_active)
When you begin processing a user prompt:
curl -sf -X POST http://localhost:2468/event \
-H "Content-Type: application/json" \
-d "{\"type\":\"hero_active\",\"sessionId\":\"$AGENTCRAFT_SESSION\",\"client\":\"openclaw\",\"cwd\":\"$PWD\"}" &>/dev/null &
Mission start (mission_start)
Immediately after hero_active, report the mission with the user's prompt:
curl -sf -X POST http://localhost:2468/event \
-H "Content-Type: application/json" \
-d "{\"type\":\"mission_start\",\"sessionId\":\"$AGENTCRAFT_SESSION\",\"client\":\"openclaw\",\"missionId\":\"mission_$(date +%s)\",\"name\":\"\x3Cfirst 50 chars of prompt>\",\"prompt\":\"\x3Cfull user prompt>\",\"cwd\":\"$PWD\"}" &>/dev/null &
File access (file_access)
When you read, write, or edit a file:
curl -sf -X POST http://localhost:2468/event \
-H "Content-Type: application/json" \
-d "{\"type\":\"file_access\",\"sessionId\":\"$AGENTCRAFT_SESSION\",\"client\":\"openclaw\",\"filePath\":\"\x3Cabsolute-file-path>\",\"operation\":\"read\",\"linesAdded\":0,\"linesRemoved\":0,\"cwd\":\"$PWD\"}" &>/dev/null &
Set operation to "read", "write", or "edit". For edits, set linesAdded and linesRemoved to actual counts.
Shell commands (bash_command)
When you execute a shell command:
curl -sf -X POST http://localhost:2468/event \
-H "Content-Type: application/json" \
-d "{\"type\":\"bash_command\",\"sessionId\":\"$AGENTCRAFT_SESSION\",\"client\":\"openclaw\",\"command\":\"\x3Ccommand, max 200 chars>\",\"cwd\":\"$PWD\"}" &>/dev/null &
Done / idle (hero_idle)
When you finish processing and are waiting for the next prompt:
curl -sf -X POST http://localhost:2468/event \
-H "Content-Type: application/json" \
-d "{\"type\":\"hero_idle\",\"sessionId\":\"$AGENTCRAFT_SESSION\",\"client\":\"openclaw\"}" &>/dev/null &
Rules
- Use
curlto POST — fire-and-forget (&>/dev/null &), do not block on the response. - Always set
clientto"openclaw". - Use the same
AGENTCRAFT_SESSIONvalue for all events in a session. - Set
cwdto the current working directory. - Do not report the same action more than once.
- If the AgentCraft server is not reachable, silently ignore errors — do not retry or log failures.
Inviting Other Agents
Other OpenClaw agents can join your AgentCraft dashboard without installing this skill.
Quick join (same machine)
Share these curl commands with other agents. They only need to generate their own session ID and POST events:
# Generate a unique session ID (use md5 instead of md5sum on macOS)
AGENTCRAFT_SESSION="openclaw_$(echo -n "$PWD" | md5sum | head -c 12)"
# Report active
curl -sf -X POST http://localhost:2468/event \
-H "Content-Type: application/json" \
-d "{\"type\":\"hero_active\",\"sessionId\":\"$AGENTCRAFT_SESSION\",\"client\":\"openclaw\",\"cwd\":\"$PWD\"}" &>/dev/null &
# Report idle when done
curl -sf -X POST http://localhost:2468/event \
-H "Content-Type: application/json" \
-d "{\"type\":\"hero_idle\",\"sessionId\":\"$AGENTCRAFT_SESSION\",\"client\":\"openclaw\"}" &>/dev/null &
Share with remote agents
To let agents on other machines join:
- Expose your AgentCraft server:
cloudflared tunnel --url http://127.0.0.1:2468
-
Share the resulting
https://xxx.trycloudflare.comURL. -
Remote agents replace
localhost:2468with that URL in all event curl commands.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agentcraft - 安装完成后,直接呼叫该 Skill 的名称或使用
/agentcraft触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
AgentCraft 是什么?
Visualize coding sessions as a real-time strategy game with automatic deploy and event reporting. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 315 次。
如何安装 AgentCraft?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agentcraft」即可一键安装,无需额外配置。
AgentCraft 是免费的吗?
是的,AgentCraft 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
AgentCraft 支持哪些平台?
AgentCraft 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 AgentCraft?
由 idosal(@idosal)开发并维护,当前版本 v1.0.0。