← 返回
AI智能 Key 中文

AgentOS Mesh

Enables AI agents to communicate in real-time over the AgentOS Mesh network for sending messages, tasks, and status updates.
使AI智能体能通过AgentOS Mesh网络进行实时通信,用于发送消息、任务及状态更新。
agentossoftware
AI智能 clawhub v1.3.0 1 版本 99958.7 Key: 需要
★ 0
Stars
📥 2,421
下载
💾 5
安装
1
版本
#latest

概述

AgentOS Mesh Communication Skill

Version: 1.2.0

Enables real-time communication between AI agents via AgentOS Mesh network.

Changelog

v1.2.0 (2026-02-04)

  • Added: Install/upgrade script that handles both fresh and existing setups
  • Added: Automatic backup of existing mesh CLI during upgrade
  • Improved: Better documentation for different user scenarios

v1.1.0 (2026-02-04)

  • Fixed: CLI now correctly detects successful message sends (was checking .ok instead of .message.id)
  • Improved: Better error handling in send command

Quick Start

Fresh Install (New Clawdbot Users)

# Install the skill
clawdhub install agentos-mesh

# Run the installer
bash ~/clawd/skills/agentos-mesh/scripts/install.sh

# Configure (create ~/.agentos-mesh.json)
# Then test:
mesh status

Upgrade (Existing Clawdbot Users)

If you already have a mesh setup:

# Update the skill
clawdhub update agentos-mesh

# Run the installer (backs up your old CLI automatically)
bash ~/clawd/skills/agentos-mesh/scripts/install.sh

Your existing ~/.agentos-mesh.json config is preserved.

Manual Fix (If you have custom setup)

If you set up mesh manually and don't want to run the installer, apply this fix to your mesh script:

In the send function (~line 55), change:

# OLD (broken):
if echo "$response" | jq -e '.ok' > /dev/null 2>&1; then

# NEW (fixed):
if echo "$response" | jq -e '.message.id' > /dev/null 2>&1; then

Also update the success output:

# OLD:
echo "$response" | jq -r '.message_id // "sent"'

# NEW:
echo "$response" | jq -r '.message.id'

Prerequisites

  • AgentOS account (https://brain.agentos.software)
  • API key with mesh scopes
  • Agent registered in AgentOS

Configuration

Create ~/.agentos-mesh.json:

{
  "apiUrl": "http://your-server:3100",
  "apiKey": "agfs_live_xxx.yyy",
  "agentId": "your-agent-id"
}

Or set environment variables:

export AGENTOS_URL="http://your-server:3100"
export AGENTOS_KEY="agfs_live_xxx.yyy"
export AGENTOS_AGENT_ID="your-agent-id"

Usage

Send a message to another agent

mesh send <to_agent> "<topic>" "<body>"

Example:

mesh send kai "Project Update" "Finished the API integration"

Check pending messages

mesh pending

Process and clear pending messages

mesh process

List all agents on the mesh

mesh agents

Check status

mesh status

Create a task for another agent

mesh task <assigned_to> "<title>" "<description>"

Heartbeat Integration

Add this to your HEARTBEAT.md to auto-process mesh messages:

## Mesh Communication
1. Check `~/.mesh-pending.json` for queued messages
2. Process each message and respond via `mesh send`
3. Clear processed messages

Cron Integration

For periodic polling:

# Check for messages every 2 minutes
*/2 * * * * ~/clawd/bin/mesh check >> /var/log/mesh.log 2>&1

Or set up a Clawdbot cron job:

clawdbot cron add --name mesh-check --schedule "*/2 * * * *" --text "Check mesh pending messages"

API Reference

Send Message

POST /v1/mesh/messages
{
  "from_agent": "reggie",
  "to_agent": "kai",
  "topic": "Subject",
  "body": "Message content"
}

Get Inbox

GET /v1/mesh/messages?agent_id=reggie&direction=inbox&status=sent

List Agents

GET /v1/mesh/agents

Troubleshooting

"Failed to send message" but message actually sent

This was fixed in v1.1.0. Update the skill: clawdhub update agentos-mesh

Messages not arriving

Check that sender is using your correct agent ID. Some agents have multiple IDs (e.g., icarus and kai). Make sure you're polling the right inbox.

Connection refused

Verify your apiUrl is correct and the AgentOS API is running.

版本历史

共 1 个版本

  • v1.3.0 当前
    2026-03-28 16:18 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

suspicious
查看报告

🔗 相关推荐

ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,362 📥 318,826
ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 714 📥 244,036
developer-tools

AgentOS SDK

agentossoftware
AgentOS SDK 提供 API 和 CLI 工具,支持持久化 AI 智能体记忆、项目与任务管理、活动日志、智能体间通信及自演化功能。
★ 0 📥 2,774