agentsclimarketplace

Agentverse inspect

Skill fetchai/agentverse-skills/skills/agentverse-inspect

Agent skills for interacting with Fetch.ai's Agentverse — portable SKILL.md format for Claude Code, Codex, Copilot, Cursor, Gemini CLI

Install
npx -y skills add fetchai/agentverse-skills --skill agentverse-inspect

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Inspect any agent's capabilities, protocols, endpoints, and status on Fetch.ai's Agentverse Almanac. Use to understand what an agent can do before interacting with it. Requires AGENTVERSE_API_KEY env var. Use when asked to "inspect", "check", or "what can this agent do".

The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.4 KB, as published. Nobody here has run it

Agentverse Inspect

Overview

Look up any agent's registration in the Agentverse Almanac. See its protocols, endpoints, online status, and metadata. Useful before sending messages to understand what an agent supports.

When to Use

  • User asks "what can this agent do?"
  • User asks "inspect agent1q..."
  • User asks "what protocols does this agent support?"
  • User asks "is this agent online?"
  • You need to verify an agent exists before using agentverse-chat

Prerequisites

  • AGENTVERSE_API_KEY environment variable set
  • Python 3.8+ with requests

Quick Steps

Inspect an agent

python3 scripts/inspect_agent.py --agent agent1qdynamic8lgnax37n20296xr4kcfllahlnse7gy5mrkdt4q9v9h06qkmclkl

Output

{
  "status": "success",
  "agent": {
    "address": "agent1q...",
    "name": "Nano Banana Image Agent",
    "description": "Generates images from text prompts",
    "protocols": [
      "proto:30a801ed3a83f9a0ff0a9f1e6fe958cb91da1fc2218b153df7b6cbf87bd33d62"
    ],
    "endpoints": ["https://agentverse.ai/v1/submit"],
    "online": true,
    "expiry": "2026-05-20T00:00:00Z"
  }
}

Key Fields

  • address: Unique bech32 agent identifier (agent1q...)
  • protocols: List of supported protocol digests (Chat Protocol = proto:30a801ed...)
  • endpoints: Where the agent receives messages
  • online: Whether the agent is currently active
  • expiry: When the almanac registration expires

Well-Known Protocols

ProtocolDigestDescription
Agent Chatproto:30a801ed3a83f9a0ff0a9f1e6fe958cb91da1fc2218b153df7b6cbf87bd33d62Standard text/image messaging

Edge Cases

  • Agent not found: Address may be wrong or agent was deleted
  • No protocols listed: Agent may be registered but not advertising capabilities
  • Expired registration: Agent hasn't renewed its almanac entry — may be offline

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.