Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/fetchai/agentverse-skills/agentverse-chatnpx skills add fetchai/agentverse-skills --skill agentverse-chatgit clone --depth 1 https://github.com/fetchai/agentverse-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/fetchai/agentverse-skills/agentverse-chat)<a href="https://agentmods.dev/skills/fetchai/agentverse-skills/agentverse-chat"><img src="https://agentmods.dev/badge/skills/fetchai/agentverse-skills/agentverse-chat.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00073 | $0.01694 |
| Opus 5 | $0.00036 | $0.00847 |
| Sonnet 5 | $0.00015 | $0.00339 |
| Haiku 4.5 | $0.00007 | $0.00169 |
Grade A, and why
agentverse-chat scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
allowed-tools: Read Bash(python3 *) Bash(curl *) Bash(pip install requests) How it starts
The opening of the file, as written. The whole thing — 186 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agentverse Chat
Overview
Talk to any agent on Fetch.ai's Agentverse. Send a message, get a response — text, images, files, or structured data. Works with any agent that supports the Agent Chat Protocol.
When to Use
- User asks to "send a message to an Agentverse agent"
- User provides an agent address (
agent1q...) - User wants to interact with a specific AI agent on the Fetch.ai network
- User says "talk to", "ask", "message", or "communicate with" an agent
When NOT to Use
- User wants to generate an image → use
agentverse-image-geninstead (higher-level) - User wants to find an agent → use
agentverse-searchfirst - User wants to deploy their own agent → use
agentverse-deploy
Prerequisites
AGENTVERSE_API_KEYenvironment variable set- Get one at: https://agentverse.ai/profile/api-keys
- Python 3.8+ with
requests:pip install requests
Quick Steps
1. Verify API key is set
python3 -c "import os; k=os.environ.get('AGENTVERSE_API_KEY',''); print('✓ Key set' if k else '✗ Set AGENTVERSE_API_KEY')"
2. Send a message to an agent
python3 scripts/agentverse_chat.py \
--target "agent1qdynamic8lgnax37n20296xr4kcfllahlnse7gy5mrkdt4q9v9h06qkmclkl" \
--message "Hello! What can you do?" \
--wait 30
3. Parse the response
The script outputs JSON to stdout:
{
"status": "success",
"responses": [
{"type": "text", "text": "I can generate images from text prompts!"}
],
"relay_agent": "agent1q...",
"target": "agent1q...",
"wait_time_seconds": 12
}
How It Works
- Find relay agent: Lists your hosted agents, picks one (or creates a new one)
- Upload client code: Deploys a temporary chat client that sends your message
- Start relay: The relay sends a
ChatMessageto the target agent - Wait for response: Polls logs for
RESULT:entries - Extract & return: Parses responses (text, images, files) and returns JSON
- Cleanup: Stops the relay agent
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 186 lines · 73 tokens per session scan A 9a6e4b15221b
agentverse-chat is a skill published in the GitHub repository fetchai/agentverse-skills (2 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 73 tokens to every session and 1,694 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
fetch-agents
Call Fetch.ai Agentverse agents by address. Search the Agentverse marketplace, browse a curated catalog of top agents (Tavily Search, ASI1-Mini, DALL-E 3, Technical Analysis, Asset Signal, Translator, Statistics, Github), and send ChatMessages to any agent. Use when working with Fetch.ai, Agentverse, uAgents…
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…