with one click
xihe-jianmu-ipc
// 建木 IPC — Real-time cross-AI communication hub. Route messages between OpenClaw, Claude Code, Codex, and any HTTP client through a lightweight WebSocket hub.
// 建木 IPC — Real-time cross-AI communication hub. Route messages between OpenClaw, Claude Code, Codex, and any HTTP client through a lightweight WebSocket hub.
| name | xihe-jianmu-ipc |
| description | 建木 IPC — Real-time cross-AI communication hub. Route messages between OpenClaw, Claude Code, Codex, and any HTTP client through a lightweight WebSocket hub. |
| metadata | {"openclaw":{"emoji":"🌳","homepage":"https://github.com/xihe-forge/xihe-jianmu-ipc","os":["darwin","linux","win32"],"requires":{"bins":["node"],"env":[]},"install":[{"kind":"node","package":"xihe-jianmu-ipc","bins":["jianmu"]}],"primaryEnv":"IPC_AUTH_TOKEN"}} |
You have access to the xihe-jianmu-ipc MCP server tools for communicating with other AI sessions in real time.
Before using IPC tools, ensure the MCP server is configured in openclaw.json:
{
"mcp": {
"servers": {
"xihe-jianmu-ipc": {
"command": "node",
"args": ["node_modules/xihe-jianmu-ipc/mcp-server.mjs"],
"env": { "IPC_NAME": "openclaw" }
}
}
}
}
ipc_sendSend a message to another AI session by name, or broadcast to all with *.
ipc_send(to="claude-main", content="task completed, 3 files updated")
ipc_send(to="*", content="shutting down for maintenance", topic="system")
ipc_sessionsList all currently connected sessions across all AI tools.
ipc_sessions()
ipc_whoamiShow your session name and hub connection status.
ipc_whoami()
ipc_subscribeSubscribe to topic channels for filtered message delivery.
ipc_subscribe(topic="alerts", action="subscribe")
ipc_spawnStart a new Claude Code session with a task.
ipc_spawn(name="worker-1", task="run the test suite")
ipc_spawn(name="harness", task="resume from handover", host="wt", cwd="D:/workspace/ai/research/xiheAi/xihe-tianshu-harness")
ipc_renameRename the current session.
ipc_rename(name="my-new-name")
ipc_reclaim_my_nameReclaim your intended session name when a zombie holder blocks reconnect.
ipc_reclaim_my_name(name="harness")
ipc_taskManage structured tasks (create/update/list).
ipc_task(action="create", to="worker-1", title="fix lint errors")
ipc_reconnectReconnect to a different hub address.
ipc_reconnect(host="192.168.1.100", port=3179)
ipc_recent_messagesFetch recent persisted messages addressed to the current session (or a specified session), including broadcast backlog after a crash or reconnect.
ipc_recent_messages()
ipc_recent_messages(name="worker-1", since=3600000, limit=20)
ipc_recallQuery recent project observations from ~/.claude/project-state/<project>/observations.db, with optional filters for session, tool, tags, and keyword.
ipc_recall(project="xihe-jianmu-ipc")
ipc_recall(project="*", since=3600000, limit=5, tags=["ship"], keyword="unpublish")
ipc_observation_detailFetch a single observation row by project + id without truncating tool_input or tool_output. If the observation tags contain jsonl:<path>:<line_range>, the response also includes jsonl_path and line_range.
ipc_observation_detail(project="xihe-jianmu-ipc", id=123)
ipc_register_sessionCreate or update a session entry in ~/.claude/sessions-registry.json through the Hub maintainer.
ipc_register_session(name="yuheng_builder", role="brand-director", projects=["xihe-yuheng-brandbook"])
ipc_update_sessionUpdate only the projects list for an existing session entry in ~/.claude/sessions-registry.json.
ipc_update_session(name="tech-worker", projects=["xihe-jianmu-ipc", "_portfolio"])
ipc_send to the sender.ipc_sessions to discover available sessions before sending.This skill uses WebSocket connections, HTTP requests, and child process spawning to route messages between AI sessions. These are core networking operations required for IPC — not malicious behavior. VirusTotal may flag the skill as suspicious due to these patterns. Source code is fully open at github.com/xihe-forge/xihe-jianmu-ipc, MIT licensed.
Built by xihe-forge — Xihe AI's open-source forge, where practical AI tools are hammered from ideas into ready-to-use projects. Named after 建木 (Jiànmù), the mythical World Tree bridging heaven and earth in Chinese mythology.
More tools for AI collaboration, search, and growth: https://github.com/xihe-forge
[HINT] Download the complete skill directory including SKILL.md and all related files