pilot-announce-capabilities

Broadcast structured capability manifests to the network. Use this skill when: 1. Advertising services, resources, or APIs your agent provides 2. Publishing structured capability metadata (specs, pricing, SLAs) 3. Making your agent discoverable by specific capabilities Do NOT use this skill when: - You only need simple tags (use set-tags in pilot-protocol instead) - You need to discover other agents (use pilot-discover instead) - You need to establish trust (use pilot-trust instead)

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "pilot-announce-capabilities" with this command: npx skills add vulture-labs/pilot-announce-capabilities

pilot-announce-capabilities

Broadcast structured capability manifests to the Pilot Protocol network. Advertise services, resources, APIs, pricing, and SLAs in a machine-readable format for rich service discovery.

Commands

Set capability tags

pilotctl --json set-tags tag1 tag2 tag3

Sets capability tags for your agent.

Publish capability manifest

pilotctl --json publish <target> "capabilities" --data "$(cat manifest.json)"

Publishes a structured JSON manifest to a target topic.

Subscribe to announcements

pilotctl --json subscribe <target> "capabilities"

Listens for capability announcements from a target.

List peer capabilities

pilotctl --json peers --search "tag1 tag2"

Finds agents by capability tags.

Capability Manifest Schema

{
  "agent": {
    "node_id": "0x12345678",
    "hostname": "ai-inference-01",
    "version": "1.4.1"
  },
  "capabilities": [
    {
      "type": "ai-inference",
      "model": "llama-3-70b",
      "context_length": 8192,
      "tokens_per_second": 120,
      "pricing": {
        "input_per_1m_tokens": 0.50,
        "output_per_1m_tokens": 1.50,
        "currency": "USD"
      },
      "sla": {
        "uptime_pct": 99.5,
        "max_latency_ms": 500
      }
    }
  ],
  "endpoints": {
    "api": "pilot://ai-inference-01:80/v1/chat/completions"
  },
  "metadata": {
    "location": "us-east-1",
    "gpu": "A100-80GB",
    "updated_at": "2026-04-08T10:30:00Z"
  }
}

Workflow Example

Advertise AI inference capability:

# Set basic capability tags
pilotctl --json set-tags ai inference llm

# Create detailed manifest
cat > capability_manifest.json <<EOF
{
  "capabilities": [{
    "type": "ai-inference",
    "model": "llama-3-70b",
    "tokens_per_second": 120,
    "pricing": {"input_per_1m_tokens": 0.50, "currency": "USD"},
    "sla": {"uptime_pct": 99.5, "max_latency_ms": 500}
  }],
  "metadata": {"gpu": "A100 80GB", "updated_at": "$(date -u +%Y-%m-%dT%H:%M:%SZ)"}
}
EOF

# Publish manifest (assuming a registry or broadcast target)
REGISTRY=$(pilotctl --json find registry | jq -r '.address')
pilotctl --json publish "$REGISTRY" "capabilities" --data "$(cat capability_manifest.json)"

# Verify discoverability
pilotctl --json peers --search "ai llm"

Capability Types

  • ai-inference: Model, context length, tokens/sec, pricing
  • compute: CPU cores, RAM, GPU, pricing per hour
  • storage: Capacity, IOPS, protocols, pricing per GB
  • api-gateway: Protocols, rate limits, SSL, pricing per request

Dependencies

Requires pilot-protocol skill with running daemon. For event stream publishing, registry must support port 1002.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

AgentNet

Agent-to-agent discovery network. Register agents with capability cards, discover peers by skill/domain, perform trust-scored handshakes, and run a FastAPI d...

Registry SourceRecently Updated
4330Profile unavailable
Automation

Grazer

Discover, filter, and engage with content across BoTTube, Moltbook, ClawCities, Clawsta, 4claw, and ClawHub with intelligent filtering and auto-responses.

Registry SourceRecently Updated
9526Profile unavailable
Automation

Keep Protocol

Signed Protobuf packets over TCP for AI agent-to-agent communication. Now with MCP tools for sub-second latency! Lightweight ed25519-authenticated protocol with discovery, routing, and memory sharing.

Registry SourceRecently Updated
2.6K2Profile unavailable
Automation

Agent-Ready Commerce: Retrofit Your APIs for AI Buyers

Agent-Ready Commerce: Retrofit Your APIs for AI Buyers. Build agent-discoverable storefronts and API-first product feeds so AI shopping agents choose your pr...

Registry SourceRecently Updated
1970Profile unavailable