apify-ultimate-scraper

apify-ultimate-scraper is a skill for Claude Code from aAAaqwq/AGI-Super-Team. It costs 97 tokens per session (1,173 once invoked), scanned A, original, MIT.

A web-scraping workflow that uses Apify, a service for running data-collection programs, to gather information from social networks, search sites, video sites, maps, travel sites, and other platforms.

In plain words
What is it for?
Use it for lead lists, competitor and price checks, brand monitoring, influencer discovery, trend research, and similar data-collection tasks.
Why use it?
It provides a defined way to collect web data across many services instead of writing a separate scraper for each one.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the agi-super-team plugin — 193 skills, 1 agent shipped together

Good fit Use it for lead lists, competitor and price checks, brand monitoring, influencer discovery, trend research, and similar data-collection tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aaaaqwq/agi-super-team/apify-ultimate-scraper
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aAAaqwq/AGI-Super-Team --skill apify-ultimate-scraper
Clone the repo
git clone --depth 1 https://github.com/aAAaqwq/AGI-Super-Team

Made for: Claude Code.

Or install agi-super-team, the plugin that ships this one along with the rest of its 193 skills, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for apify-ultimate-scraper

README.md
[![agentmods](https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/apify-ultimate-scraper/github.svg)](https://agentmods.dev/skills/aaaaqwq/agi-super-team/apify-ultimate-scraper)
Your own site
<a href="https://agentmods.dev/skills/aaaaqwq/agi-super-team/apify-ultimate-scraper"><img src="https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/apify-ultimate-scraper/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for apify-ultimate-scraper

Your own site · 80×15
<a href="https://agentmods.dev/skills/aaaaqwq/agi-super-team/apify-ultimate-scraper"><img src="https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/apify-ultimate-scraper.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 97 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,173 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 23
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00097 $0.01173
Opus 5 $0.00048 $0.00587
Sonnet 5 $0.00019 $0.00235
Haiku 4.5 $0.00010 $0.00117

Measured 4d ago against content hash 5347c21de8b1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

apify-ultimate-scraper scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/apify-ultimate-scraper/SKILL.md · 108 lines

How it starts

The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Universal web scraper

AI-driven data extraction from ~100 Actors across 15+ platforms via the Apify CLI.

Rule: Always pass --json and redirect stderr with 2>/dev/null to CLI commands. JSON output is stable across CLI versions. stderr contains progress messages that break JSON parsers if not redirected.

Prerequisites

  • Apify CLI v1.4.0+ (npm install -g apify-cli)
  • Authenticated session (see below)

Authentication

If a CLI command fails with an auth error, authenticate using one of these methods:

  1. OAuth (interactive): apify login (opens browser)
  2. Environment variable: export APIFY_TOKEN=your_token_here
  3. From .env file: source .env (if the file contains APIFY_TOKEN=...)

Generate token: https://console.apify.com/settings/integrations

Workflow

Step 1: Understand goal and select Actor

Identify the target platform and use case. Read references/actor-index.md to find the right Actor.

If the task involves a multi-step pipeline, also read the matching workflow guide:

Task involves... Read
leads, contacts, emails, B2B references/workflows/lead-generation.md
competitor, ads, pricing references/workflows/competitive-intel.md
influencer, creator references/workflows/influencer-vetting.md
brand, mentions, sentiment references/workflows/brand-monitoring.md
X/Twitter tweets, followers, lists, communities, audience overlap references/workflows/x-research-and-audience.md
reviews, ratings, reputation references/workflows/review-analysis.md
SEO, SERP, crawl, content, RAG references/workflows/content-and-seo.md
analytics, engagement, performance references/workflows/social-media-analytics.md
trends, keywords, hashtags references/workflows/trend-research.md
jobs, recruiting, candidates references/workflows/job-market-and-recruitment.md
real estate, listings, hotels references/workflows/real-estate-and-hospitality.md
price monitoring, e-commerce, products references/workflows/ecommerce-price-monitoring.md
contact enrichment, email extraction references/workflows/contact-enrichment.md
knowledge base, RAG, LLM data feed references/workflows/knowledge-base-and-rag.md
company research, due diligence references/workflows/company-research.md

Read the full file on GitHub · 108 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 108 lines · 97 tokens per session scan A 5347c21de8b1

Subscribe to this mod's changes

apify-ultimate-scraper is a skill published in the GitHub repository aAAaqwq/AGI-Super-Team (91 stars, last pushed 2d ago), licensed MIT. It adds 97 tokens to every session and 1,173 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

browser-check

Drive a real browser and come back with a MEASUREMENT rather than an impression - console errors and >=400 responses as counts, computed styles as JSON when appearance is disputed. Use when work touches UI, when a review must verify one, or when fidelity-gate asks for its measurement.

jjanczur/tyran · 58 tokens

qa

QA testing skill with real browser automation. Use when asked to "test this site", "QA this page", "check for visual bugs", "verify the deploy", or when Hydra needs browser validation for UI changes. Requires the browse binary.

blueberrycongee/termcanvas · 50 tokens

chrome-devtools

Drive the machine Chrome debug browser via OpenClaw-managed MCP (chrome-devtools). Use for page navigation, snapshots, screenshots, clicks, forms, console/network inspection — not for host shell risk.

yunsii/wezdeck · 44 tokens

mission-control

Interact with Mission Control — AI agent orchestration dashboard. Use when registering agents, managing tasks, syncing skills, or querying agent/task status via MC APIs.

builderz-labs/mission-control · 34 tokens

browser

Browser automation via the agent-browser CLI. Use when the user needs to drive websites or Electron desktop apps — navigating, filling forms, clicking, screenshots, extracting data, testing web apps, visual UI checks, the Pi Dashboard's Electron shell, or the user's own logged-in browser (SSO/2FA sites). Triggers…

BlackBeltTechnology/pi-agent-dashboard · 92 tokens

prompt-tuning

Tune a prompt, or anything whose quality is measured by non-deterministic model output, without chasing noise - a noise baseline before the first edit, medians over repeated runs, enforcement AFTER generation rather than in the wording. Use when iterating on prompts or model-judged output.

jjanczur/tyran · 58 tokens