[ Switch to styled version → ]


Agent App Store

The App Store is a catalogue of applications for AI agents on the Pilot Protocol network. Apps are installed with a single command and managed from one namespace. Developers can publish their own apps to the store.

How it works

pilotctl appstore install <id>

Featured apps

The following apps are available in the catalogue.

AEGIS (io.pilot.aegis): A runtime firewall for AI agents that intercepts prompt injection, jailbreaks, homoglyph attacks, and infrastructure-impersonation. It is an 880 KB offline Rust binary with 90% recall and 95% precision on a held-out corpus.

pilotctl appstore install io.pilot.aegis

4 methods · 2.3 MB download · category: security · v0.1.4 · Apache-2.0.

Cosift (io.pilot.cosift): Provides grounded web search, retrieval, and research for agents. It returns keyword and semantic search results, documents, and LLM-grounded answers as structured JSON. Methods are discoverable via `cosift.help`.

pilotctl appstore install io.pilot.cosift

8 methods · 4.6 MB download · category: search · v0.1.2 · MIT.

Sixtyfour (io.pilot.sixtyfour): Provides people- and company-intelligence for agents, including contact discovery, reverse lookups, and enrichment. Data is source-backed and returned as structured JSON. Methods are discoverable via `sixtyfour.help`.

pilotctl appstore install io.pilot.sixtyfour

12 methods · 4.9 MB download · category: intel · v0.1.0 · Proprietary.

Smol Machines (io.pilot.smolmachines): Provides hardware-isolated Linux microVMs on demand with sub-second boot time. Used to run untrusted code, GPU tasks, or headless browser automation in a sandbox. Driven through `smolmachines.exec`.

pilotctl appstore install io.pilot.smolmachines

VM boot under 1s · 5 MB download · category: compute · v1.2.0 · Apache-2.0.

Wallet (io.pilot.wallet): Enables on-overlay USDC payments using x402 and EIP-3009 settlement across Base, Ethereum, and Polygon. Spend caps are declared in the manifest and enforced on every signing operation.

pilotctl appstore install io.pilot.wallet

3 USDC chains · 8.7 MB download · category: payments · v0.3.3 · AGPL-3.0.

Ideon (io.telepat.ideon-free): An adapter for article generation. `ideon-free.generate(idea)` returns a job ID, and `ideon-free.poll(jobId)` returns the finished markdown article.

pilotctl appstore install io.telepat.ideon-free

2 methods · 5 KB download · category: writing · v0.3.1.

Slipstream (io.pilot.slipstream): Provides Polymarket intelligence for agents, including leaderboards, live signals, a market scanner, and opportunity scores over an Ed25519-signed API. Methods are discoverable via `slipstream.help`.

pilotctl appstore install io.pilot.slipstream

9 methods · 4.5 MB download · category: finance · v1.0.0 · MIT.

Miren (io.pilot.miren): Operates the Miren PaaS from an agent. Functions include deploying apps, inspecting status and logs, and diagnosing connectivity. Includes a passthrough `miren.exec` for any miren subcommand.

pilotctl appstore install io.pilot.miren

15 methods · 4.9 MB download · category: devops · v0.1.0 · Proprietary.

Plainweb (io.pilot.plainweb): Retrieves any web page as plain text. The `plainweb.fetch(url)` call fetches the page and returns it as GFM Markdown.

pilotctl appstore install io.pilot.plainweb

1 method · 4.8 MB download · category: web · v1.0.0 · Proprietary.

Otto (io.pilot.otto): Drives Chrome tabs from an agent to extract page content, run site-specific commands, and screenshot pages. Operates via a relay to a browser extension. Includes a passthrough `otto.exec` for any otto subcommand.

pilotctl appstore install io.pilot.otto

15 methods · 27 MB download · category: browser · v0.20.0 · MIT.

Publishing an app

Existing HTTP APIs can be wrapped in a signed, agent-facing adapter and published to the catalogue. There are two ways to publish.

Every adapter is sha256-pinned and signed by its publisher. The daemon re-verifies the signature and binary hash each time it spawns the app. Apps declare required permissions, such as network access or file I/O, which the agent grants or denies at install time.

Related