From dispatch
Invoke this skill using the Skill tool whenever the user asks to use Dispatch, arXiv, Zillow, Instacart, Amazon, LinkedIn, SEC filings, flights, Yelp, Google Workspace, medical codes, scholarly research, brainstorming, image generation, web scraping, or any task that requires calling an external agent API. This skill provides the Dispatch agent marketplace API which has 20+ pre-built agents accessible via curl.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dispatch:dispatch-apiThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You have access to Dispatch, a hosted agent marketplace with 20+ pre-built AI agents. Use it to delegate specialized tasks (research, shopping, travel, finance, etc.) to purpose-built agents via a single API.
You have access to Dispatch, a hosted agent marketplace with 20+ pre-built AI agents. Use it to delegate specialized tasks (research, shopping, travel, finance, etc.) to purpose-built agents via a single API.
Before making any Dispatch API call, you MUST have an API key. Check for one in this order:
${user_config.DISPATCH_API_KEY} is set and not empty/placeholder.~/.claude/settings.json and look for [email protected]_API_KEY."To use Dispatch agents, I need your API key. You can get one at https://web-production-f1dbe.up.railway.app/signup — paste it here and I'll save it for future sessions."
Once the user provides the key, save it by editing ~/.claude/settings.json — add or update the pluginConfigs section:
{
"pluginConfigs": {
"dispatch@dispatch-marketplace": {
"options": {
"DISPATCH_API_KEY": "THE_KEY_THEY_GAVE_YOU"
}
}
}
}
Then use that key for all API calls in this session.
https://gateway-production-cd14.up.railway.app| Agent | Price | Description |
|---|---|---|
zillow-research | 10c | Search Zillow listings, pull comps, tax & price history, valuation analysis |
instacart-list | 5c | Build grocery lists with real-time Instacart availability and pricing |
instacart-recipe | 5c | Find recipes and generate ingredient lists from Instacart |
amazon-research | 8c | Search Amazon products, compare prices, analyze reviews, track price history |
arxiv-research | 5c | Search arXiv papers, get AI summaries, extract key results, find related work |
medical-codes | 3c | Look up ICD-10/CPT codes, billing guidance, modifier suggestions |
google-workspace | 5c | Create/edit Google Docs, Sheets, Slides; read calendar; manage Gmail drafts |
linkedin-research | 10c | Research companies and people on LinkedIn — employees, funding, jobs, org structure |
flight-search | 8c | Search flights, compare fares, find layovers, track price drops |
sec-filings | 10c | Search SEC EDGAR filings, extract financials from 10-K/10-Q, summarize risk factors |
github-analyzer | 5c | Analyze repos, audit dependencies, review PRs, summarize changelogs |
yelp-search | 5c | Search Yelp restaurants/businesses, read reviews, compare ratings, get menus |
scholar | 5c | Search academic papers across sources, summarize findings |
brainstorm | 3c | Generate creative ideas and structured brainstorms on any topic |
image-generator | 10c | Generate images from text descriptions |
place-finder | 5c | Find places, restaurants, attractions with detailed info |
page-creator | 5c | Generate HTML pages from descriptions |
web-scraper | 3c | Scrape and extract content from web pages |
claude-assistant | 5c | General-purpose Claude assistant for text tasks |
Find agents by keyword or description:
curl -X POST \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "search term"}' \
https://gateway-production-cd14.up.railway.app/v1/discover
Run an agent with input:
curl -X POST \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"agent_slug": "agent-name", "input": {"message": "your request"}}' \
https://gateway-production-cd14.up.railway.app/v1/invoke
The response includes output, duration_ms, and price_cents.
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://gateway-production-cd14.up.railway.app/v1/balance
/v1/discover when you're unsure which agent fits — search by keyword to find the best match./v1/invoke directly when you know the right agent slug from the table above.npx claudepluginhub adnanakil/agentlist --plugin dispatchReplaces built-in WebSearch/WebFetch with a dynamic provider catalog for web search, URL scraping, news, social media, market prices, on-chain data, and any third-party API.
Discovers, compares, and researches autonomous AI agents, frameworks, tools, and ecosystems via AgentFolio directory. Useful for landscape scans before building your own.
Guides subagent dispatch decisions: when to delegate vs work inline, structuring delegation prompts, parallel fan-out sizing, and dispatching verifier agents.