Pilot Service Agents Reference

v1.0.0

Lightweight utility lookups — dictionaries, jokes, colors, currencies, random facts, D&D data, etc. Use this skill when: 1. Defining a word, expanding an abb...

0· 37· 1 versions· 0 current· 0 all-time· Updated 1d ago· MIT-0
byCalin Teodor@teoslayer

pilot-service-agents-reference

Lightweight utility lookups — dictionaries, jokes, colors, currencies, random facts, D&D data, etc.

All agents in this category follow the standard contract described in pilot-service-agents. Send /help to any agent to read its exact filter schema — the table below is a snapshot; the catalogue grows, so always verify with a fresh list-agents query.

Agents in this category (snapshot)

HostnameDescription
advice-slipRandom advice slips — daily wisdom
catfact-ninjaCat facts with pagination
cheapshark-dealsLive discounted Steam/PC game deals
color-apiColor information lookup (hex, RGB, HSL, names)
dadjoke-searchICanHazDadJoke search
datamuseDatamuse word tools - synonyms, rhymes, related terms
dictionary-apiFree Dictionary - English word definitions and pronunciation
dnd5e-classesD&D 5e character class reference
dnd5e-monstersD&D 5e monster stats reference
dnd5e-spellsD&D 5e spells, monsters, classes reference
frankfurter-currenciesECB supported currencies
frankfurter-historicalHistorical FX rates for a date
frankfurter-latestECB currency rates
gcp-booksGoogle Books volume search (1K/day free)
gcp-fact-checkGoogle Fact Check Tools claim verification
joke-api-randomOfficial Joke API random joke
jokeapi-programmingProgramming and general jokes API
makeup-productsMakeup product search by brand/type
mdn-searchMDN docs search
open-triviaOpen Trivia DB — quiz questions across categories
openstax-booksOpenstax Books
random-userRandom realistic user profile generator
restcountries-nameCountry lookup by name
swapi-peopleStar Wars universe data (people, planets, ships)
timeapi-iotimeapi.io - current time by timezone
wikidata-wbgetentitiesWikidata entities by id
wttr-inwttr.in - weather forecasts for any location
xkcd-latestXKCD latest comic metadata

What you can expect

  • Many small, single-purpose wrappers — fast responses, no auth, no quota concerns
  • English dictionary, Datamuse word tools, jokes/trivia/advice APIs
  • ECB currency and historical FX (no authentication needed)

What NOT to expect

  • Deep analytical data — this is the grab-bag of small useful APIs
  • Always-current pricing — market data lives in finance

Commands (same pattern for every agent in the category)

# Read an agent's filter contract
pilotctl --json send-message <hostname> --data "/help"
pilotctl --json inbox

# Fetch structured data
pilotctl --json send-message <hostname> --data '/data {json filters}'
pilotctl --json inbox

# Natural-language summary (Gemini)
pilotctl --json send-message <hostname> --data '/summary {json filters}'
pilotctl --json inbox

Response shape

send-message returns an ACK envelope immediately ({"ack":"ACK TEXT N bytes", "bytes":N, "target":"<address>", "type":"text"}). The actual agent response arrives a few seconds later and is read with pilotctl --json inbox. Each inbox entry carries the agent's normalised envelope in its data field:

{
  "source": "<hostname>",
  "items":  [...],
  "count":  <int>,
  "total":  <int|null>,
  "page":   <int|null>,
  "next":   <cursor|null>,
  "truncated": <bool>,
  "upstream_url": "<resolved upstream URL>"
}

/help returns plain text. /summary returns a Gemini-generated prose string. Free-text queries also return Gemini prose.

Workflow Example

# 1. Fresh discovery — the catalogue grows, never hard-code
pilotctl --json send-message list-agents --data '/data {"category":"reference","limit":20}'
pilotctl --json inbox

# 2. Read the contract of a specific agent
pilotctl --json send-message free-dictionary-en --data '/help'
pilotctl --json inbox

# 3. Query it
pilotctl --json send-message free-dictionary-en --data '/data {"word":"serendipity"}'
pilotctl --json inbox

Dependencies

Requires the pilot-protocol core skill, the pilot-service-agents skill (for the general discovery flow), pilotctl on PATH, and a running daemon joined to network 9.

Version tags

latestvk97fr78v7m4de0k5243xpp1cdn85pbpb

Runtime requirements

Binspilotctl