Bowmark AIdocs

Pilot Protocol App Store

Pilot Protocol's own app store — a directory of installable agent capabilities (30+ apps: databases, comms, browser automation, payments, …). listApps…

Pilot Protocol's own app store — a directory of installable agent capabilities (30+ apps: databases, comms, browser automation, payments, …). listApps returns the whole catalog (id, name, vendor, category, tagline); getApp reads one app's detail page (version, license, runtime, permissions, methods) by id.

Domain: pilotprotocol.network

Also known as: Pilot Protocol, pilotprotocol.network, Pilot App Store

Call it directly

bowmark.providers.pilotprotocol.listApps(): Promise<PilotprotocolAppSummary[]>
bowmark.providers.pilotprotocol.getApp(id: string): Promise<PilotprotocolAppDetail>

Functions

FunctionWhat it does
listAppsLists every app in Pilot Protocol's app store — id, name, vendor, category, one-line tagline and supported platforms for each.
getAppReads one app's detail page by id (e.g. "io.pilot.bowmark", from listApps) — vendor, tagline, full description, category, version, license, runtime, minimum Pilot version, source link,…

Types

interface PilotprotocolAppSummary {
  id: string;
  name: string;
  vendor: string;
  category: string;
  tagline: string;
  platforms: string;
}

interface PilotprotocolMethod {
  name: string;
  summary: string;
}

interface PilotprotocolAppDetail {
  id: string;
  name: string;
  vendor: string;
  vendorUrl: string | null;
  tagline: string;
  description: string;
  category: string;
  version: string;
  license: string | null;
  runtime: string | null;
  minPilotVersion: string | null;
  sourceUrl: string | null;
  installCommand: string | null;
  permissions: string[];
  methods: PilotprotocolMethod[];
}