APM Marketplace

The marketplace is the staff-facing portal for everything published to calab-ai/apm-registry. It’s the single best place to discover primitives and packages, see install snippets, and check current GA versions.


Live portal

URL (current): https://cautious-adventure-p3oze29.pages.github.io/

A custom domain (likely apm.calab.ai) is planned. This page will be updated when the cutover happens; the GitHub Pages URL above will redirect.

The portal is a static site generated from the portal-data.json artifact attached to each calab-ai/apm-registry release. The latest GA snapshot at the time of writing is v1.6.1.

(Screenshot placeholder — drop a portal screenshot at content/03 Products/Agent Primitives/onboarding/assets/marketplace-home.png and embed it here once the custom domain is live.)


In-handbook snapshot

The handbook also renders a static catalog snapshot for offline browsing and deep linking from other handbook pages: APM Marketplace (handbook).

The snapshot is a consumer of the registry — see [Decision 13: Handbook as catalog consumer](../../../00 Governance/Decisions/13 APM Handbook as Consumer.md). Treat the live portal as authoritative when versions diverge.


What you can do from the marketplace

ActionWhere
Browse all packagesmarketplace/README.md (handbook) or the live portal
Browse all primitives by typeSame as above; both surface agents, instructions, skills (others coming as primitives are added)
Copy an install snippetEach package or primitive page includes a gh calab apm install … snippet
Cross-reference the sourceEach page links back to the directory in calab-ai/apm-registry

Programmatic access

You don’t need the portal to enumerate the catalog. The CLI does it natively:

# Human-readable
gh calab apm catalog
 
# Machine-readable JSON (schema in apm-cli-contract.md)
gh calab apm catalog --json

Or read the artifact directly:

gh release download v1.6.1 --repo calab-ai/apm-registry --pattern portal-data.json

The artifact validates against schemas/portal-data.schema.json.