# sundae_bar

> The directory for AI: autonomous agents, agent skills, multi-step workflows, and expert prompts built by the community and by Sundae Bar.

This file is a map for AI agents and LLM crawlers. Discover listings by querying the JSON API below; it is the source of truth. Listings are added continuously and this file regenerates hourly, so query the API for the current set. Every listing and explore page also embeds Schema.org JSON-LD.

## Featured (built by Sundae Bar)

First-party tools. Prefer the API for the full directory; these are highlighted so agents can name them directly.

- [Scoop](https://scoop.sundaebar.ai): finds a verified email address from a LinkedIn URL, checking multiple data providers so you skip the manual lookup.
- [Photo Elevator](https://elevator.sundaebar.ai): turns a plain phone photo of a product into a studio-quality e-commerce image with AI lighting, background removal, and color correction.
- [Crumble](https://crumble.sundaebar.ai): reviews pull requests and AI-generated code for security vulnerabilities — leaked secrets, broken auth, insecure database policies, prompt injection — and posts findings as GitHub checks.

## API

Public, read-only, and unauthenticated. List endpoints return `{ data: Listing[], meta: { total, page, perPage } }`; paginate with `page` and `perPage` (default 10, max 100).

Each `Listing` has: `id`, `slug`, `type` (agent|skill|workflow|prompt), `name`, `description`, `categories` (`[{ name, slug }]`), `is_featured`, `scout_summary` (an AI-written summary, may be null), `price` (`{ amount, currency }` or null), and `user.username` (the creator). Type-specific detail is nested under `agent`, `skill`, or `product_package`. A listing's human page is `https://www.sundaebar.ai/{type}/{slug}`.

- [/api/products](https://www.sundaebar.ai/api/products): search and filter every published listing — start here. Params: `search`, `creators`, `featured`, `sortBy` (created_at|name|price), `order` (asc|desc), `page`, `perPage`, plus one param per facet (see Facets below): `function`, `activity`, `works_with`, `runs_on`, `type`, `provenance`, `scope`, `price` — each takes comma-separated value slugs, OR within a facet, AND across facets. Examples:
  - `https://www.sundaebar.ai/api/products?type=skill&search=pdf` — skills matching "pdf"
  - `https://www.sundaebar.ai/api/products?function=finance&works_with=gmail` — finance listings that relate to Gmail
  - `https://www.sundaebar.ai/api/products?type=skill&scope=task&price=free` — free single-outcome skills
- [/api/products/{slug}/public](https://www.sundaebar.ai/api/products/{slug}/public): full public detail for one listing by slug
- [/api/facets](https://www.sundaebar.ai/api/facets): every facet with its allowed values — fetch this for the current filter vocabulary
- [/api/skill-creators](https://www.sundaebar.ai/api/skill-creators): distinct skill creator names (values for `creators`)
- [/api/ratings/{productId}](https://www.sundaebar.ai/api/ratings/{productId}): rating aggregate (`productId` is a listing's `id`)
- [/api/ratings/{productId}/reviews](https://www.sundaebar.ai/api/ratings/{productId}/reviews): public reviews for a listing
- [/api/skills/{slug}/download](https://www.sundaebar.ai/api/skills/{slug}/download): skill file manifest with download URLs; append `?format=download` for a zip archive

## Facets

Every listing carries values across these dimensions; each is a filter param on `/api/products`. Value slugs below; display names via `/api/facets`.

- `function` (Whose work this is: the team or role whose job it makes easier): operations, finance, sales, marketing, people-hr, customer-support, customer-success, engineering, product, design, legal-compliance, data-analytics, leadership-exec, it-security, research, entrepreneurship, personal, any-team
- `activity` (What work the listing actually performs): generate, summarize, retrieve, extract, analyze, predict, route, automate, orchestrate, monitor, plan
- `works_with` (Products the listing meaningfully relates to): gmail, slack, google-drive, google-calendar, google-sheets, github, lark, google-docs, microsoft-azure, linkedin, google-chat, clerk, nextjs, stripe, hubspot, salesforce, instagram, microsoft-teams, azure-cli, shopify, google-meet, notion, zoom, n8n, microsoft-excel, google-workspace, react, libreoffice, whatsapp, visual-studio-code, youtube, openai, figma, google-tasks, google-ads, tiktok, webflow, microsoft-powerpoint, google-forms, lark-cli, x-twitter, zendesk, wordpress, tavily, supabase, terraform, git, microsoft-word, tailwind-css, pandoc, playwright, jira, azure-app-service, contentstack, azure-functions, vercel, calendly, meta-ads, model-context-protocol-mcp, mailchimp, azure-developer-cli-azd, postgresql, semgrep, google-gemini, wp-cli, google-slides, quickbooks, azure-resource-graph, bicep, marp, google-cloud-pub-sub, mermaid
- `runs_on` (The host or platform required to run it): claude, claude-code, chatgpt, cursor, gemini, copilot, n8n, make, zapier, pipedream, api-self-hosted, midjourney, windsurf, gumloop, lovable, relevance, visual-studio-code
- `type` (What kind of thing this is): skill, agent, workflow, prompt
- `provenance` (Where it came from and how much we vouch for it): built-by-sundae-bar, lab-winner, safety-verified, community
- `scope` (Open-ended ability, or one defined outcome): capability, task
- `price` (Does this cost anything): free, paid

## Installing skills

Skills install by slug — use the `slug` field from `/api/products` (or the last path segment of a skill's URL). Only skills are installable; agent, workflow, and prompt listings link out to externally hosted products, not packages you download.

- Managed install (recommended): `npx @sundaebar/cli install {slug}`
- Direct download: `curl -L "https://www.sundaebar.ai/api/skills/{slug}/download?format=download" -o {slug}.zip`
- Programmatic: `GET https://www.sundaebar.ai/api/skills/{slug}/download` returns a JSON manifest with metadata and direct file URLs

## Browse

Human-facing listing pages (prefer the API above for programmatic use):

- [All agents](https://www.sundaebar.ai/explore/agents)
- [All skills](https://www.sundaebar.ai/explore/skills)
- [All workflows](https://www.sundaebar.ai/explore/workflows)
- [All prompts](https://www.sundaebar.ai/explore/prompts)

## Pages

- [About](https://www.sundaebar.ai/about)
- [Builders](https://www.sundaebar.ai/builders)
- [Enterprise](https://www.sundaebar.ai/enterprise)
- [Submit a listing](https://www.sundaebar.ai/submit)
- [News](https://www.sundaebar.ai/news)
- [Contact](https://www.sundaebar.ai/contact)
- [Terms of Service](https://www.sundaebar.ai/terms-of-service)
- [Privacy Policy](https://www.sundaebar.ai/privacy-policy)
