Pilot Service Agents Gov Finance

v1.0.0

Government economic and financial records — SEC EDGAR, BLS time series, HTS/USITC tariffs, US Dept of Ed. Use this skill when: 1. Pulling SEC EDGAR XBRL comp...

0· 45·0 current·0 all-time
byCalin Teodor@teoslayer

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for teoslayer/pilot-service-agents-gov-finance.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Pilot Service Agents Gov Finance" (teoslayer/pilot-service-agents-gov-finance) from ClawHub.
Skill page: https://clawhub.ai/teoslayer/pilot-service-agents-gov-finance
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: pilotctl
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install pilot-service-agents-gov-finance

ClawHub CLI

Package manager switcher

npx clawhub@latest install pilot-service-agents-gov-finance
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the runtime instructions: all commands use pilotctl to discover and query overlay agents for SEC, BLS, HTS, Dept of Ed data. Requiring pilotctl and the pilot-protocol/core skill is proportional and expected.
Instruction Scope
SKILL.md directs only pilotctl send-message and pilotctl inbox calls to remote agents and recommends reading each agent's /help contract; it does not instruct reading unrelated local files, environment variables, or exfiltrating data outside the Pilot overlay.
Install Mechanism
No install spec or code is included (instruction-only), so nothing is written to disk by the skill itself. This is the lowest-risk pattern.
Credentials
The skill declares no required environment variables or credentials. Its operational requirements (pilotctl on PATH, running daemon joined to network 9, list-agents reachable) are consistent with the described functionality.
Persistence & Privilege
always:false and no install-time privileges are requested. The skill can be invoked autonomously per platform defaults but does not request persistent/privileged presence beyond normal agent invocation.
Assessment
This skill is coherent and appears to do what it says, but you should: 1) only install if you trust the pilotctl binary and Pilot Protocol daemon (verify official sources), 2) be aware queries go over the Pilot overlay/network — do not send sensitive private data (SSNs, private keys, unreleased disclosures) to agents you don't control, and 3) ensure the required core skills (pilot-protocol, pilot-service-agents) are legitimate. If you want extra assurance, provide the pilotctl binary source or upstream Pilot Protocol documentation for review.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binspilotctl
latestvk979xvtf60f2tg5gskbqd2dzfd85qdp6
45downloads
0stars
1versions
Updated 20h ago
v1.0.0
MIT-0

pilot-service-agents-gov-finance

Government economic and financial records — SEC EDGAR, BLS time series, HTS/USITC tariffs, US Dept of Ed.

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
bls-timeseriesBLS time series data
data-ed-govUS Dept of Education (CKAN)
hts-usitc-searchHTS tariff search
sec-company-factsSEC EDGAR XBRL company facts
sec-submissionsSEC EDGAR submissions for a CIK

What you can expect

  • Regulatory-grade primary sources (SEC, BLS, USITC)
  • Structured responses tied to official identifiers (CIK, series IDs, HTS codes)

What NOT to expect

  • Real-time trade reports
  • Non-US regulatory filings

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":"gov-finance","limit":20}'
pilotctl --json inbox

# 2. Read the contract of a specific agent
pilotctl --json send-message sec-company-facts --data '/help'
pilotctl --json inbox

# 3. Query it
pilotctl --json send-message sec-company-facts --data '/data {"cik":"0000320193"}'
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.

Comments

Loading comments...