AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Add Ai Access Scrapers

skill-press-pass-journalism-skills-add-ai-access-scrapers · by press-pass

Query AI Access sources with many scrape items and create a PR adding dedicated scrapers for them in perform_scrape_for_source.

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add skill-press-pass-journalism-skills-add-ai-access-scrapers

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-press-pass-journalism-skills-add-ai-access-scrapers)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Add Ai Access Scrapers? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Call the get_ai_access_sources MCP tool to get all AI Access sources with more than 10 scrape items.

For each source returned, read its aiAccessInstructions and sourceClientKey to understand what data it accesses and how. Then:

  1. Read backend/api/services/source/source_service.py to see the current perform_scrape_for_source function and its existing patterns (REDDIT, TWITTER, NYCOPENDATA, AI_ACCESS).
  2. For each source, determine if you can replace the generic AI Access scraping with a dedicated client that fetches the data directly (e.g., via an API, RSS feed, or structured web request). Skip sources whose instructions describe access patterns that cannot be replicated without Claude (e.g., "search the web for..." or "navigate through a complex UI").
  3. For each source you can write a dedicated scraper for:

a. Create a new client module in backend/api/services/source/ that fetches the data. b. Create a new SourceAccessType choice in the backend and a migration. b. Add an elif branch in perform_scrape_for_source that checks source.source_access_type == SourceAccessType and calls your new client, creating ScrapeItem records from the response. c. Place the new branch before the generic elif source.source_access_type == SourceAccessType.AI_ACCESS branch so it takes priority.

  1. Create a git branch, commit the changes, and open a PR. In the PR description, list each source ID and what dedicated scraper was added for it.

If no sources can be converted to dedicated scrapers, report which sources were found and why they could not be converted.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.