Collection of Apify Agent Skills
5 chapters · 22 minutes · 4,913 words
npx skills add apify/agent-skills/plugin marketplace add apify/agent-skillsDrop these skills into Claude Code, Cursor, Windsurf, Codex, or Gemini CLI and your AI agent gets expert hands on the Apify platform - the marketplace for web data and AI tools. With one install, agents can:
dataset_schema.json, output_schema.json, and key_value_store_schema.json from existing Actor source.apify-client package or REST API.Looking for community-built, domain-specific skills (lead generation, brand monitoring, competitor intel, and more)? See apify/awesome-skills (opens in a new tab).
npx skills add https://github.com/apify/agent-skills --skill apify-ultimate-scraperThen ask your agent something like:
Scrape the top 50 results for “AI coding tools” from Google Maps and save them to a CSV.
That’s it. The skill handles Actor selection, input shaping, run management, and result formatting.
| Skill | What it does |
|---|---|
apify-ultimate-scraper (opens in a new tab) | AI-powered universal scraper. 130+ curated Actors covering Instagram, Facebook, TikTok, YouTube, X, LinkedIn, Reddit, Google Maps, Google Search, Google Trends, Amazon, Walmart, eBay, Booking.com, TripAdvisor, Airbnb, Yelp, Telegram, Snapchat, Reddit, GitHub, and more. Falls back to searching the full Apify Store for any platform not covered. |
apify-actor-development (opens in a new tab) | Create, debug, and deploy Apify Actors from scratch in JavaScript, TypeScript, or Python. Bundled references cover actor.json, input, output, dataset, and key-value schemas, logging, and standby mode. |
apify-actorization (opens in a new tab) | Convert existing code into Apify Actors. Supports the JS/TS SDK, the Python async context manager, and a generic CLI wrapper for any other language. |
Plus the apify-actor-commands (opens in a new tab) pack, which adds slash commands like /create-actor for guided Actor scaffolding.
Describe the outcome in plain language - your agent picks the right Actors, chains them together, and delivers structured results.
| Use case | Example prompt |
|---|---|
| Lead generation | Find Italian restaurants in Brooklyn rated under 4 stars on Google Maps. Scrape their reviews, crawl their websites for socials and owner emails, and export a ranked CSV for my CRM. |
| Competitive intelligence | Pull pricing pages, G2 and Trustpilot reviews, recent job postings, and social posts for Competitor A, B, and C. Summarize positioning gaps and opportunities. |
| Market research | Scrape pricing, review counts, and bestseller rankings for wireless earbuds across Amazon and Walmart. Flag quality issues from negative reviews and recommend a pricing sweet spot. |
| Brand reputation | Collect mentions of [brand] on Instagram, LinkedIn, X, and YouTube from the last 30 days. Run sentiment analysis and surface the top 5 complaint and praise themes. |
| Influencer vetting | Find 20 fitness influencers with 50k-500k followers on Instagram and TikTok. Scrape engagement rates, posting frequency, and past brand deals. Rank by engagement-to-follower ratio. |
| AI search visibility | Run these 10 queries across Google AI Mode, Perplexity, and ChatGPT. Extract which brands get cited and flag where competitors appear instead of us. |
| Location intelligence | Scrape Google Maps for all coffee shops within 2 miles of these 5 addresses. Compare competitor density, ratings, price levels, and hours. Recommend the best site. |
More patterns and the full launch story in Introducing Apify Agent Skills (opens in a new tab).
/plugin marketplace add https://github.com/apify/agent-skills
/plugin install apify-ultimate-scraper@apify-agent-skills
/plugin install apify-actor-development@apify-agent-skills
/plugin install apify-actorization@apify-agent-skills
/plugin install apify-generate-output-schema@apify-agent-skills
/plugin install apify-sdk-integration@apify-agent-skillsBoth editors support the Claude Code plugin format. Add this repo to your workspace settings or use the same /plugin flow if you have the Claude Code extension installed.
These skills ship with agents/AGENTS.md (auto-generated index) and gemini-extension.json (Gemini auto-discovers it). Point your agent at the repo, or clone locally:
git clone https://github.com/apify/agent-skillsReference the skill files directly:
agents/AGENTS.md - one-page index of every skillskills/<skill-name>/SKILL.md - full skill instructionsnpm install -g apify-cli (or brew install apify-cli on macOS), then run apify login to authenticate via OAuth in your browser. This is the recommended setup.APIFY_TOKEN in your environment or a .env file. The CLI picks it up automatically.Apify Actors use pay-per-result or pay-per-event pricing, set independently by each Actor. Free tier credits are included with every account. Check individual Actor pricing on the Apify Store (opens in a new tab).
Apache-2.0 (opens in a new tab)
main, last pushed 4 August 2026.SKILL.md, not by matching a directory convention. One layout observed: skills/*/SKILL.md..claude-plugin/marketplace.json by Apify, declaring 6 plugins. It is read for editorial metadata only — never as the skill index, which is always the repository tree./apify/agent-skills.md, and each chapter at its own .md URL.apify-generate-output-schema (opens in a new tab) | Generate output schemas (dataset_schema.json, output_schema.json, key_value_store_schema.json) for an Actor by analyzing its source code. |
apify-sdk-integration (opens in a new tab) | Integrate Apify into an existing JavaScript/TypeScript or Python application via the apify-client package. Covers sync and async execution, dataset and key-value store retrieval, error handling, and the REST API fallback for any other language. |