Back to Registry View Author Profile
Official Verified
cloudbypass
Use Cloudbypass API (穿云API/穿云) to fetch pages protected by Cloudflare/Turnstile/JS challenge. Use when normal requests fail with challenge/403 and compliant protected-page retrieval is required. Requires CLOUDBYPASS_APIKEY; V2/V2S also require CLOUDBYPASS_PROXY.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/chuanchuan007/cloudbypassOr
Use the bundled script to call Cloudbypass API.
- Script:
{baseDir}/scripts/cloudbypass_request.js
Required env:
CLOUDBYPASS_APIKEY(required)CLOUDBYPASS_PROXY(required for V2/V2S)CLOUDBYPASS_PART(optional, default:0)CLOUDBYPASS_SITEKEY(optional)
Security / usage notes:
- API key is sent to
api.cloudbypass.comto perform requests and may incur billing. - Review legal/ethical permissions before bypassing site protections.
- For autonomous usage, scope targets and monitor/rotate keys.
Quick usage
const skill = await openclaw.getSkill('cloudbypass');
// V1 (simple)
const r1 = await skill.get('https://example.com');
// V2 (challenge-heavy; proxy required)
const r2 = await skill.requestV2({
url: 'https://example.com',
proxy: process.env.CLOUDBYPASS_PROXY
});
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-chuanchuan007-cloudbypass": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.