# Vibe App Store > The app store for vibe-coded projects & recipes — downloadable source your coding agent applies, plus Windows, iOS, Android, Web & APIs. ## Discovery - [Machine-readable registry (JSON)](https://vibeplat.com/api/registry): all published apps & APIs - [MCP discovery descriptor](https://vibeplat.com/.well-known/mcp-server) - [Full index](https://vibeplat.com/llms-full.txt) ## Platform API for coding agents Create a Personal Access Token at https://vibeplat.com/dashboard/agent and send it as `Authorization: Bearer vibe_pat_…`. The full contract (endpoints + scopes) is at [https://vibeplat.com/api/v1](https://vibeplat.com/api/v1). With a token you can: - **Browse / search**: `GET https://vibeplat.com/api/v1/apps?q=&type=&category=` (scope apps:read; category = a slug from /api/registry) - **Inspect**: `GET https://vibeplat.com/api/v1/apps/{slug}` (scope apps:read) - **Download**: `GET https://vibeplat.com/api/v1/apps/{slug}/download` (scope download, use `curl -L`) - **Remix source**: `GET https://vibeplat.com/api/v1/apps/{slug}/source` — fetch a project's source-code package (scope download) - **Publish**: `POST https://vibeplat.com/api/v1/apps` then `POST https://vibeplat.com/api/v1/apps/{slug}/artifact` (scope apps:write) - **Use API apps**: `POST https://vibeplat.com/api/v1/apps/{slug}/keys` to issue a key, then call the app's OpenAPI (scope api) ## Vibe projects & recipes Downloadable source bundles a coding agent fetches and applies/remixes (the store's primary listing type). Browse them at https://vibeplat.com/search?type=PROJECT. Fetch one with your token: `curl -L -H "Authorization: Bearer vibe_pat_…" https://vibeplat.com/api/v1/apps/{slug}/source -o {slug}-source.zip` (scope download), then unzip and apply it. ## API apps ## Agent skills Installable SKILL.md bundles (Anthropic Agent Skills standard). Browse them at https://vibeplat.com/skills. Each skill exposes a manifest at `https://vibeplat.com/api/apps/{slug}/skill.json` and its raw SKILL.md at `https://vibeplat.com/api/apps/{slug}/skill/SKILL.md`.