fetch-agents

fetch-agents is a skill for Claude Code, Codex from fetchai/innovation-lab-examples. It costs 98 tokens per session (1,378 once invoked), scanned A, original, MIT.

A connector for finding and messaging Fetch.ai Agentverse agents, which are online services that answer requests such as searches, translations, statistics, stock signals, and image generation.

In plain words
What is it for?
Use it to search the Agentverse marketplace, choose an agent by address, send it a request, and return the agent’s reply in plain language.
Why use it?
It removes the need to find and contact each Agentverse service separately or explain how to use its messaging system.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

About the project

Fetch.ai Innovation Lab Examples is a collection of runnable Python projects demonstrating autonomous agents, multi-agent systems, and agent-based workflows. It is intended for beginners, builders, and hackathon participants working with technologies such as uAgents, ASI:One, Agentverse, MCP, A2A, LangChain, CrewAI, Gemini, Claude, and OpenAI.

fetchai/innovation-lab-examples · 1,144 stars · on GitHub · innovationlab.fetch.ai

Install

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.

agentmods
npx agentmods add skills/fetchai/innovation-lab-examples/agentverse-caller
Any agent
npx skills add fetchai/innovation-lab-examples --skill agentverse-caller
Clone the repo
git clone --depth 1 https://github.com/fetchai/innovation-lab-examples

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for fetch-agents

README.md
[![agentmods](https://agentmods.dev/badge/skills/fetchai/innovation-lab-examples/agentverse-caller.svg)](https://agentmods.dev/skills/fetchai/innovation-lab-examples/agentverse-caller)
Your own site
<a href="https://agentmods.dev/skills/fetchai/innovation-lab-examples/agentverse-caller"><img src="https://agentmods.dev/badge/skills/fetchai/innovation-lab-examples/agentverse-caller.svg" alt="Measured on agentmods" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,378 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00098 $0.01378
Opus 5 $0.00049 $0.00689
Sonnet 5 $0.00020 $0.00276
Haiku 4.5 $0.00010 $0.00138

Measured 6d ago against content hash 5a1e3ee07226, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

fetch-agents scanned grade A with 0 findings 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.

The scan reads SKILL.md. This mod also ships 6 executable files (scripts/ask.sh, scripts/call.py, scripts/catalog.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

openclaw/agentverse-caller/SKILL.md · 106 lines

How it starts

The opening of the file, as written. The whole thing — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Fetch Agents

Send queries to Fetch.ai Agentverse agents and return the agent's reply in natural language.

CRITICAL RULES — READ FIRST

  1. NEVER show the user a bash command, a script path, or anything that looks like python3 ... or bash .... Those are for YOU to run internally. The user is chatting in Telegram/CLI and wants plain language.
  2. If the user asks "how do I use X" or "how does this work" — DO NOT respond with commands. Respond with plain-English example prompts, like: "Just ask me things like 'get trading signals for TSLA' or 'translate hello to French' and I'll take care of the rest."
  3. When the user makes an actual request (get signals, translate, etc.), run the script yourself and reply with the agent's answer. Format it nicely. Do not tell them to run anything.
  4. The only time you reveal paths or commands is if the user explicitly asks for debug/diagnostic info.

How to answer common user questions

  • "How do I use this?" / "What can this do?" → Explain in plain English: it calls Fetch.ai Agentverse agents for real-time data, translations, stats, stock signals, image generation, etc. Give 3-4 example prompts the user can try (in natural language, NOT bash).
  • "What agents are available?" / "Show me the catalog" → Run catalog.py and format the result as a friendly list.
  • "Find a [topic] agent" → Run search.py and return the top matches in plain text.
  • Any actual task (signals, translation, stats, etc.) → Run fire.sh, tell the user to hold on ~40 seconds, then run result.sh and reply with the agent's answer in your own words.

Natural-language prompts the user might send

  • "get me trading signals for TSLA" → call signals agent
  • "what does ASI1-Mini think about quantum computing?" → call asi agent
  • "translate 'hello world' to Japanese" → call translate agent
  • "compute stats for 1, 2, 3, 4, 5" → call stats agent
  • "stock analysis on AAPL" → call stocks agent
  • "search the agentverse for weather agents" → run marketplace search
  • "latest news on Fetch.ai" → call search (Tavily web search) agent
  • "get github info for fetchai" → call github agent
  • "generate an image of a cyberpunk cat" → call image agent
  • "call the Crypto Fear & Greed Agent for the current index" → agent by name, auto-searched

Read the full file on GitHub · 106 lines

Files

What ships with it

9 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.

Changes

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.

  1. 6d ago First seen · 106 lines · 98 tokens per session scan A 5a1e3ee07226

Subscribe to this mod's changes

fetch-agents is a skill published in the GitHub repository fetchai/innovation-lab-examples (1,144 stars, last pushed 4d ago), licensed MIT. It adds 98 tokens to every session and 1,378 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

agent-browser

Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a…

Intelligent-Internet/ii-agent · 108 tokens

research-to-website

Build informative websites from research reports. Transforms research output (markdown or typst/pdf) into polished, domain-appropriate websites with professional design, data visualization, and scroll-based animations. Triggers on research-to-website tasks, report visualization, or when converting research into web…

Intelligent-Internet/ii-agent · 62 tokens

ii-app

Use this skill when you need to initialize or restart local web and mobile app projects through the bundled Rust ii-app CLI instead of calling MCP tools.

Intelligent-Internet/ii-agent · 34 tokens

building-mobile-game

Build mobile games and game-like interactive experiences in React Native and Expo. Use when Codex is creating or refactoring arcade, puzzle, casual, action, physics-based, or animation-heavy gameplay, including Expo game setup with the with-reanimated template, sprite-sheet generation and extraction, frame-based…

Intelligent-Internet/ii-agent · 91 tokens

data-fetching

Use when implementing or debugging ANY network request, API call, or data fetching. Covers fetch API, axios, React Query, SWR, error handling, caching strategies, offline support.

Intelligent-Internet/ii-agent · 41 tokens

pdf

Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.

Intelligent-Internet/ii-agent · 50 tokens