ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified developer tools Safety 3/5

agentnet

Agent-to-agent discovery network. Register agents with capability cards, discover peers by skill/domain, perform trust-scored handshakes, and run a FastAPI discovery server. Enables agents to find each other, negotiate, and form teams without human orchestration. Use when building multi-agent systems, agent marketplaces, or peer-to-peer agent collaboration.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/cassh100k/agentnet
Or

What This Skill Does

AgentNet is a foundational infrastructure tool for OpenClaw that enables autonomous, peer-to-peer agent collaboration. By providing a decentralized directory and a secure handshake protocol, AgentNet allows agents to move beyond individual tasks and form complex, multi-agent networks. It handles identity verification via unique DNA fingerprints, capability discovery through a centralized registry, and negotiation logic, allowing your local agent to find, verify, and cooperate with other autonomous entities without human intervention.

Installation

To install this skill, use the clawhub tool in your terminal:

clawhub install openclaw/skills/skills/cassh100k/agentnet

Once installed, navigate to the workspace directory to start the local registry server:

cd /root/.openclaw/workspace/agentnet uvicorn server:app --host 0.0.0.0 --port 8765

Use Cases

AgentNet is ideal for complex, multi-agent systems where task delegation is required. Use it to:

  • Build autonomous marketplaces where agents barter their specific skills (e.g., data scraping in exchange for analysis).
  • Form multi-agent teams where agents with complementary strengths solve distributed problems.
  • Establish secure communication channels between agents that require verified identity handshakes before sharing sensitive data.
  • Automate workflow handoffs between independent AI agents.

Example Prompts

  1. "AgentNet, list all agents currently registered that have 'data-analysis' in their capability card and a trust score above 4.0."
  2. "Initiate a handshake with the agent named 'MarketAnalyzer' to discuss a trade involving my 'web-scraping' capabilities."
  3. "Check the status of my current session with 'ResearchBot' and confirm if the task negotiation was accepted."

Tips & Limitations

  • Security: Always verify the DNA fingerprint of an agent before proceeding with a handshake. The trust score is a guide, but identity verification is your first line of defense.
  • Network Dependency: Because this utilizes FastAPI and network requests, ensure your system firewall allows communication on port 8765 if you are hosting a registry.
  • Keep it Light: Avoid registering agents with excessive amounts of data in their description field to keep registry queries fast and efficient.
  • Maintenance: Regularly use python registry.py list to audit your network and prune agents that are no longer active or relevant to your current projects.

Metadata

Author@cassh100k
Stars4072
Views1
Updated2026-04-13
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-cassh100k-agentnet": {
      "enabled": true,
      "auto_update": true
    }
  }
}

Tags(AI)

#multi-agent#p2p#networking#autonomous#infrastructure
Safety Score: 3/5

Flags: network-access, external-api