Source profileQuality 85/100Review permissions

ComposioHQ/awesome-claude-skills/composio-skills/apify-automation/SKILL.md

Apify Automation

Automate web scraping and data extraction with Apify -- run Actors, manage datasets, create reusable tasks, and retrieve crawl results through the Composio Apify integration.

Source repository stars
71,746
Declared platforms
0
Static risk flags
2
Last source update
2026-07-24
Source checked
2026-08-04

Decision brief

What it does—and where it fits

Run Apify web scraping Actors and manage datasets directly from Claude Code. Execute crawlers synchronously or asynchronously, retrieve structured data, create reusable tasks, and inspect run logs without leaving your terminal.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/ComposioHQ/awesome-claude-skills --skill "composio-skills/apify-automation"
    Safe inspection promptEditorial

    Inspect the Agent Skill "Apify Automation" from https://github.com/ComposioHQ/awesome-claude-skills/blob/be2a406907dbc61b73e6827ded415c96139d13a2/composio-skills/apify-automation/SKILL.md at commit be2a406907dbc61b73e6827ded415c96139d13a2. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Setup

      1. Add the Composio MCP server to your configuration:

      Add the Composio MCP server to your configuration:Connect your Apify account when prompted. The agent will provide an authentication link.Browse available Actors at apify.com/store. Each Actor has its own unique input schema -- always check the Actor's documentation before running.
    2. 02

      Core Workflows

      Execute an Actor and immediately retrieve its dataset items in a single call. Best for quick scraping jobs.

      actorId (required) -- Actor ID in format username/actor-name (e.g., compass/crawler-google-places)input -- JSON input object matching the Actor's schema. Each Actor has unique field names -- check apify.com/store for the exact schema.limit -- max items to return
    3. 03

      1. Run an Actor Synchronously and Get Results

      Execute an Actor and immediately retrieve its dataset items in a single call. Best for quick scraping jobs.

      actorId (required) -- Actor ID in format username/actor-name (e.g., compass/crawler-google-places)input -- JSON input object matching the Actor's schema. Each Actor has unique field names -- check apify.com/store for the exact schema.limit -- max items to return
    4. 04

      2. Run an Actor Asynchronously

      Trigger an Actor run without waiting for completion. Use for long-running scraping jobs.

      actorId (required) -- Actor slug or IDbody -- JSON input object for the Actormemory -- memory limit in MB (must be power of 2, minimum 128)
    5. 05

      3. Retrieve Dataset Items

      Fetch data from a specific dataset with pagination, field selection, and filtering.

      datasetId (required) -- dataset identifierlimit (default/max 1000) -- items per pageoffset (default 0) -- pagination offset

    Permission review

    Static risk signals and limitations

    Runs scripts

    medium · line 4

    The documentation asks the agent to run terminal commands or scripts.

    Run **Apify** web scraping Actors and manage datasets directly from Claude Code. Execute crawlers synchronously or asynchronously, retrieve structured data, create reusable tasks, and inspect run logs without leaving your terminal.

    Network access

    medium · line 14

    The documentation includes network, browsing, or remote request actions.

    https://rube.app/mcp

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score85/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars71,746SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    ComposioHQ/awesome-claude-skills
    Skill path
    composio-skills/apify-automation/SKILL.md
    Commit
    be2a406907dbc61b73e6827ded415c96139d13a2
    License
    Not declared
    Collected
    2026-08-04
    Default branch
    master
    View the original SKILL.md

    Apify Automation

    Run Apify web scraping Actors and manage datasets directly from Claude Code. Execute crawlers synchronously or asynchronously, retrieve structured data, create reusable tasks, and inspect run logs without leaving your terminal.

    Toolkit docs: composio.dev/toolkits/apify


    Setup

    1. Add the Composio MCP server to your configuration:
      https://rube.app/mcp
      
    2. Connect your Apify account when prompted. The agent will provide an authentication link.
    3. Browse available Actors at apify.com/store. Each Actor has its own unique input schema -- always check the Actor's documentation before running.

    Core Workflows

    1. Run an Actor Synchronously and Get Results

    Execute an Actor and immediately retrieve its dataset items in a single call. Best for quick scraping jobs.

    Tool: APIFY_RUN_ACTOR_SYNC_GET_DATASET_ITEMS

    Key parameters:

    • actorId (required) -- Actor ID in format username/actor-name (e.g., compass/crawler-google-places)
    • input -- JSON input object matching the Actor's schema. Each Actor has unique field names -- check apify.com/store for the exact schema.
    • limit -- max items to return
    • offset -- skip items for pagination
    • format -- json (default), csv, jsonl, html, xlsx, xml
    • timeout -- run timeout in seconds
    • waitForFinish -- max wait time (0-300 seconds)
    • fields -- comma-separated list of fields to include
    • omit -- comma-separated list of fields to exclude

    Example prompt: "Run the Google Places scraper for 'restaurants in New York' and return the first 50 results"


    2. Run an Actor Asynchronously

    Trigger an Actor run without waiting for completion. Use for long-running scraping jobs.

    Tool: APIFY_RUN_ACTOR

    Key parameters:

    • actorId (required) -- Actor slug or ID
    • body -- JSON input object for the Actor
    • memory -- memory limit in MB (must be power of 2, minimum 128)
    • timeout -- run timeout in seconds
    • maxItems -- cap on returned items
    • build -- specific build tag (e.g., latest, beta)

    Follow up with APIFY_GET_DATASET_ITEMS to retrieve results using the run's datasetId.

    Example prompt: "Start the web scraper Actor for example.com asynchronously with 1024MB memory"


    3. Retrieve Dataset Items

    Fetch data from a specific dataset with pagination, field selection, and filtering.

    Tool: APIFY_GET_DATASET_ITEMS

    Key parameters:

    • datasetId (required) -- dataset identifier
    • limit (default/max 1000) -- items per page
    • offset (default 0) -- pagination offset
    • format -- json (recommended), csv, xlsx
    • fields -- include only specific fields
    • omit -- exclude specific fields
    • clean -- remove Apify-specific metadata
    • desc -- reverse order (newest first)

    Example prompt: "Get the first 500 items from dataset myDatasetId in JSON format"


    4. Inspect Actor Details

    View Actor metadata, input schema, and configuration before running it.

    Tool: APIFY_GET_ACTOR

    Key parameters:

    • actorId (required) -- Actor ID in format username/actor-name or hex ID

    Example prompt: "Show me the details and input schema for the apify/web-scraper Actor"


    5. Create Reusable Tasks

    Configure reusable Actor tasks with preset inputs for recurring scraping jobs.

    Tool: APIFY_CREATE_TASK

    Configure a task once, then trigger it repeatedly with consistent input parameters. Useful for scheduled or recurring data collection workflows.

    Example prompt: "Create an Apify task for the Google Search scraper with default query 'AI startups' and US location"


    6. Manage Runs and Datasets

    List Actor runs, browse datasets, and inspect run details for monitoring and debugging.

    Tools: APIFY_GET_LIST_OF_RUNS, APIFY_DATASETS_GET, APIFY_DATASET_GET, APIFY_GET_LOG

    For listing runs:

    • Filter by Actor and optionally by status
    • Get datasetId from run details for data retrieval

    For dataset management:

    • APIFY_DATASETS_GET -- list all your datasets with pagination
    • APIFY_DATASET_GET -- get metadata for a specific dataset

    For debugging:

    • APIFY_GET_LOG -- retrieve execution logs for a run or build

    Example prompt: "List the last 10 runs for the web scraper Actor and show logs for the most recent one"


    Known Pitfalls

    • Actor input schemas vary wildly: Every Actor has its own unique input fields. Generic field names like queries or search_terms will be rejected. Always check the Actor's page on apify.com/store for exact field names (e.g., searchStringsArray for Google Maps, startUrls for web scrapers).
    • URL format requirements: Always include the full protocol (https:// or http://) in URLs. Many Actors require URLs as objects with a url property: {"startUrls": [{"url": "https://example.com"}]}.
    • Dataset pagination cap: APIFY_GET_DATASET_ITEMS has a max limit of 1000 per call. For large datasets, loop with offset to collect all items.
    • Enum values are lowercase: Most Actors expect lowercase enum values (e.g., relevance not RELEVANCE, all not ALL).
    • Sync timeout at 5 minutes: APIFY_RUN_ACTOR_SYNC_GET_DATASET_ITEMS has a maximum waitForFinish of 300 seconds. For longer runs, use APIFY_RUN_ACTOR (async) and poll with APIFY_GET_DATASET_ITEMS.
    • Data volume costs: Large datasets can be expensive to fetch. Prefer moderate limits and incremental processing to avoid timeouts or memory pressure.
    • JSON format recommended: While CSV/XLSX formats are available, JSON is the most reliable for automated processing. Avoid CSV/XLSX for downstream automation.

    Quick Reference

    Tool SlugDescription
    APIFY_RUN_ACTOR_SYNC_GET_DATASET_ITEMSRun Actor synchronously and get results immediately
    APIFY_RUN_ACTORRun Actor asynchronously (trigger and return)
    APIFY_RUN_ACTOR_SYNCRun Actor synchronously, return output record
    APIFY_GET_ACTORGet Actor metadata and input schema
    APIFY_GET_DATASET_ITEMSRetrieve items from a dataset (paginated)
    APIFY_DATASET_GETGet dataset metadata (item count, etc.)
    APIFY_DATASETS_GETList all user datasets
    APIFY_CREATE_TASKCreate a reusable Actor task
    APIFY_GET_TASK_INPUTInspect a task's stored input
    APIFY_GET_LIST_OF_RUNSList runs for an Actor
    APIFY_GET_LOGGet execution logs for a run

    Powered by Composio

    Alternatives

    Compare before choosing

    Computed 10023,781

    alirezarezvani/claude-skills

    app-store-optimization

    App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

    Computed 10014,225

    wanshuiyin/Auto-claude-code-research-in-sleep

    citation-audit

    Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.

    Computed 1004,922

    dotnet/skills

    migrate-vstest-to-mtp

    Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing

    Computed 1002,504

    aaron-he-zhu/aaron-marketing-skills

    social-selling-planner

    Use when the user asks to "set up my founder social-selling routine", "build a daily engagement block for target accounts", or "turn funding / hiring signals into selling plays"; produces the founder/seller daily operating block — a time-boxed engagement-block spec (substantive value-add comments on target-account posts, never a pitch), warm-touch-before-ask cadence rules, trigger-response plays consuming the social-pulse-monitor B2B trigger watchlist (funding / hiring / launch signals), and a q