AgentStack
SKILL verified MIT Self-run

Web Fetch Cloudflare Circumvent

skill-press-pass-journalism-skills-web-fetch-cloudflare-circumvent · by press-pass

Fetch web content that may be blocked by Cloudflare. Cascades through WebFetch, curl, and Playwright until one succeeds.

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

Install

$ agentstack add skill-press-pass-journalism-skills-web-fetch-cloudflare-circumvent

✓ 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 Used
  • 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.

Are you the author of Web Fetch Cloudflare Circumvent? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

You will be given a URL and an optional prompt describing what to extract from the page.

Follow this cascade to fetch the content, stopping as soon as one method succeeds:

Step 1: Try WebFetch

Use the WebFetch tool with the provided URL and prompt. If it succeeds, return the result.

If WebFetch returns a 403, 503, or any error suggesting the request was blocked, proceed to Step 2.

Step 2: Try curl

Run curl -s via the Bash tool. Inspect the response:

  • If you get valid HTML content, process it according to the prompt and return the result.
  • If you get a 403, a Cloudflare challenge page (look for "Just a moment..." or "Checking your browser"), or an empty response, proceed to Step 3.

Step 3: Try Playwright

Use the Playwright MCP tools to load the page in a real browser:

  1. Call browser_navigate with the URL.
  2. Call browser_snapshot to capture the page content.
  3. Process the snapshot according to the prompt and return the result.

Output

After successfully fetching the content, apply the user's prompt to the content and return the result. If all three methods fail, report which methods were tried and what errors occurred.

URL and prompt: $ARGUMENTS

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.