diff --git a/public/brand/apps/sixtyfour.png b/public/brand/apps/sixtyfour.png new file mode 100644 index 0000000..9579460 Binary files /dev/null and b/public/brand/apps/sixtyfour.png differ diff --git a/public/brand/apps/smolmachines.png b/public/brand/apps/smolmachines.png new file mode 100644 index 0000000..a3f0221 Binary files /dev/null and b/public/brand/apps/smolmachines.png differ diff --git a/public/brand/apps/telepat.svg b/public/brand/apps/telepat.svg new file mode 100644 index 0000000..91707a9 --- /dev/null +++ b/public/brand/apps/telepat.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/pages/app-store.astro b/src/pages/app-store.astro index b3e4fcc..a935118 100644 --- a/src/pages/app-store.astro +++ b/src/pages/app-store.astro @@ -115,10 +115,10 @@ try { the protocol.

- +
io.pilot.cosift
-
v0.1.2 · MIT
+
Cosift
@@ -127,19 +127,75 @@ try { crawled web corpus — returned as clean structured JSON. Every method is discoverable at runtime via cosift.help.
+
pilotctl appstore install io.pilot.cosift
8
Methods
4.6MB
Download
search
Category
-
View source →
- +
+ View source → + v0.1.2 · MIT +
+
+ +
+
+
io.pilot.sixtyfour
+ +
+
Sixtyfour
+
+ People- and company-intelligence for agents. Contact discovery (find + email / find phone), reverse lookups from an email or phone, full + person and company enrichment, and an agentic QA researcher — every + field source-backed, returned as structured JSON. Methods are + discoverable via sixtyfour.help. +
+ +
pilotctl appstore install io.pilot.sixtyfour
+
+
12
Methods
+
4.9MB
Download
+
intel
Category
+
+
+ View docs → + v0.1.0 · Proprietary +
+
+ +
+
+
io.pilot.smolmachines
+ +
+
Smol Machines
+
+ Fast, hardware-isolated Linux microVMs on demand — sub-second boot, real + hypervisor isolation. Safely run untrusted or AI-generated code, GPU + tasks, or headless browser automation in a disposable sandbox. Driven + through smolmachines.exec; smolmachines.help + for discovery. +
+ +
pilotctl appstore install io.pilot.smolmachines
+
+
<1s
VM boot
+
5MB
Download
+
compute
Category
+
+
+ View source → + v1.2.0 · Apache-2.0 +
+
- +
io.pilot.wallet
-
v0.3.3 · AGPL-3.0
+
Wallet
@@ -148,14 +204,43 @@ try { Spend caps declared in the manifest are reviewed at install time and enforced on every signing operation.
+
pilotctl appstore install io.pilot.wallet
3
USDC chains
8.7MB
Download
payments
Category
-
View source →
- +
+ View source → + v0.3.3 · AGPL-3.0 +
+
+ +
+
+
io.telepat.ideon-free
+ +
+
Ideon
+
+ Article generation for agents. ideon-free.generate(idea) + returns a job id; ideon-free.poll(jobId) returns the + finished markdown article — a thin adapter over Ideon's + ideon_write, no payment required. +
+ +
pilotctl appstore install io.telepat.ideon-free
+
+
2
Methods
+
Free
Pricing
+
writing
Category
+
+
+ View site → + v0.3.1 +
+
@@ -247,14 +332,55 @@ try { padding: 2px 8px; margin-right: 10px; } - .zoo-card-link { + /* App grid: cap at 3 cards per row (overrides the global .zoo auto-fit, + which fit 4 across on wide screens). Scoped to this page. */ + .zoo { grid-template-columns: repeat(3, 1fr); } + @media (max-width: 980px) { .zoo { grid-template-columns: repeat(2, 1fr); } } + @media (max-width: 640px) { .zoo { grid-template-columns: 1fr; } } + /* Card redesign: company logo top-right, company link under the + description, version+license badge moved to a bottom row. */ + /* min-width:0 lets the card (a grid item) shrink to its column on mobile + instead of being stretched to the install command's intrinsic width. */ + .zoo-card { cursor: default; min-width: 0; } + .zoo-card .zoo-top { align-items: center; } + .zoo-card .zoo-id, + .zoo-card .zoo-desc code { overflow-wrap: anywhere; } + .zoo-logo { + height: 40px; + width: auto; + max-width: 160px; + max-height: 48px; + object-fit: contain; + object-position: right center; + display: block; + opacity: 1; + } + /* Telepat's mark is a dark monochrome logo: it reads on the light theme as-is, + but vanishes on the default dark theme — so invert it to light there. */ + .zoo-logo-mono { filter: invert(1); } + [data-theme="light"] .zoo-logo-mono { filter: none; } + .zoo-by { + font-size: 13px; + color: var(--ink-dim); + margin-top: -4px; + } + .zoo-by a { + color: var(--accent); + text-decoration: none; + } + .zoo-by a:hover { text-decoration: underline; } + .zoo-foot { + display: flex; + align-items: center; + justify-content: space-between; + gap: 12px; + margin-top: 4px; + } + .zoo-foot .zoo-arr { text-decoration: none; - color: inherit; - transition: border-color 0.15s, background 0.15s; + transition: color 0.15s; } - .zoo-card-link:hover { border-color: var(--accent); } - .zoo-card-link:hover .zoo-name { color: var(--accent); } - .zoo-card-link:hover .zoo-arr { color: var(--accent); } + .zoo-foot .zoo-arr:hover { color: var(--ink); } .zoo-install { margin: 14px 0 4px; } @@ -266,8 +392,8 @@ try { background: var(--term-bg, rgba(128,128,128,0.12)); color: var(--accent); border: 1px solid var(--line); - overflow-x: auto; - white-space: nowrap; + white-space: pre-wrap; + overflow-wrap: anywhere; } code { font-family: var(--mono);