← 返回
未分类 中文

Pilot Service Agents

Discover and query the pilot-service-agents catalogue — ~370 always-on data agents reachable over Pilot Protocol that wrap real-world APIs (Google Maps, Open...
发现并查询 pilot‑service‑agents 目录 — 约 370 个始终在线的数据代理,可通过 Pilot 协议访问,封装真实世界的 API(如 Google Maps、Open...)
teoslayer teoslayer 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 283
下载
💾 0
安装
1
版本
#latest

概述

pilot-service-agents

Every service agent on Pilot Protocol exposes the same four-command interface

over the overlay, so once you understand one you understand them all. The

catalogue itself is served by a directory agent called list-agents — always

start there.

The flow: discover → pick → invoke → read inbox

pilotctl send-message list-agents --data "/data {filters}"   (find agents)
pilotctl send-message <hostname>   --data "/help"            (read contract)
pilotctl send-message <hostname>   --data "/data {filters}"  (fetch data)
pilotctl inbox                                               (read response)

The send-message call returns an ACK immediately; the **actual response comes

back as an inbox message** a few seconds later from the agent you called.

Discovering agents via list-agents

list-agents is the directory. Talk to it like any other agent.

List all commands it supports

pilotctl --json send-message list-agents --data "/help"
pilotctl --json inbox

Filter the catalogue

pilotctl --json send-message list-agents --data '/data {"category":"academic","limit":20}'
pilotctl --json inbox

Supported filter fields on list-agents /data:

fieldtypemeaning
---------
categorystringacademic, geo, finance, news, health, science, security, …
tierstringfree (no per-request cost) or premium (paid, higher quality, e.g. Google Cloud)
searchstringsubstring match on hostname + category + description
hostnamestringexact hostname match
limitintmax items (default 50, max 500)

The response envelope contains items, count, total, groups (counts per

category), and tiers.free / tiers.premium buckets with their disclaimers.

Gemini summary of matches

pilotctl --json send-message list-agents --data '/summary {"category":"flights"}'
pilotctl --json inbox

Free-text question over the catalogue

pilotctl --json send-message list-agents --data 'which agent gives me Formula 1 race results?'
pilotctl --json inbox

Talking to a specific service agent

Once you have a hostname, the same four commands work on every agent:

messagewhat it does
------
/helpprints the filter schema + pagination + example call
/data {json}fetch real data, returns a normalised envelope
/summary {json}same fetch, piped through Gemini for prose
Gemini picks filters and fetches

Filter shape for /data is agent-specific. Always read /help first — it lists

every filter with type, required flag, default, and description. Premium agents

(hostname prefix gcp-) announce themselves with a [PREMIUM] tag in /help.

Canonical response envelope

Every /data response has this shape:

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

Pagination

If an agent's /help shows Pagination: page|offset|cursor, pass the knob in

your filter JSON. The knobs the agent recognises are in the same /help

output. Omit pagination and you get the upstream's default page.

Workflow Example

Answer "what aircraft are currently over Manhattan?" with zero upfront API

knowledge:

# 1. Find the right category
pilotctl --json send-message list-agents --data '/data {"category":"flights","limit":5}'
sleep 5
pilotctl --json inbox   # pick e.g. adsb-lol-latlon

# 2. Read its filter contract
pilotctl --json send-message adsb-lol-latlon --data '/help'
sleep 5
pilotctl --json inbox

# 3. Query with the filters you just learned
pilotctl --json send-message adsb-lol-latlon \
  --data '/data {"lat":40.78,"lon":-73.97,"radius":8}'
sleep 5
pilotctl --json inbox

What to expect across the catalogue

The catalogue grows; treat every hostname list as a snapshot. To stay current,

always start with list-agents /data — never hard-code a list.

  • Free agents — community API wrappers. Best for volume, exploration,

unauthenticated lookups. Rate-limited on the upstream's side.

  • Premium agentsgcp-* hostnames, backed by Google Cloud credits

managed centrally. Higher accuracy, SLA-grade freshness, real cost per call.

  • Every agent caches upstream responses for ~60s and serves stale data on

upstream errors ("cached": true, "cache_age_seconds": N fields appear in

the envelope when that happens).

  • Authentication is handled agent-side. You never hold an API key.

Related skills (per category)

There is a dedicated pilot-service-agents- skill for each category

in the catalogue — read one of those once you know which kind of data you

need. Discover the list with:

pilotctl --json send-message list-agents --data '/data {}'

Then look for the matching pilot-service-agents-* skill.

Dependencies

Requires pilot-protocol core skill, a running pilotctl daemon joined to

network 9 (pilotctl --json network join 9), and the list-agents directory

agent reachable on the overlay.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-08 02:53 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

it-ops-security

Pilot Priority Queue

teoslayer
基于Pilot协议网络的优先级消息传递,支持紧急程度级别。适用场景:1. 需要处理带优先级的紧急消息...
★ 0 📥 522
ai-agent

Find Skills

root
帮助用户发现和安装智能体技能,当用户询问如「如何做X」、「找X的技能」、「有能做...的吗」等问题时
★ 1,513 📥 570,133
ai-agent

Agent Browser

rez0
用于 AI 代理的浏览器自动化 CLI。当用户需要与网站交互(包括浏览页面、填写表单、点击按钮、截图等)时使用。
★ 863 📥 341,799