Install
$ agentstack add skill-press-pass-journalism-skills-web-fetch-cloudflare-circumvent ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
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:
- Call
browser_navigatewith the URL. - Call
browser_snapshotto capture the page content. - 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.
- Author: press-pass
- Source: press-pass/journalism-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.