From sundial-org-awesome-openclaw-skills-4
Scrapes any webpage as markdown bypassing bot detection/CAPTCHA or searches Google with structured JSON results via Bright Data API. Requires API key and Unlocker zone.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Direct API access to Bright Data's Web Unlocker and SERP APIs.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Direct API access to Bright Data's Web Unlocker and SERP APIs.
1. Get your API Key: Get a key from Bright Data Dashboard.
2. Create a Web Unlocker zone: Create a zone at brightdata.com/cp by clicking "Add" (top-right), selecting "Unlocker zone".
3. Set environment variables:
export BRIGHTDATA_API_KEY="your-api-key"
export BRIGHTDATA_UNLOCKER_ZONE="your-zone-name"
Search Google and get structured JSON results (title, link, description).
bash scripts/search.sh "query" [cursor]
cursor: Optional page number for pagination (0-indexed, default: 0)Scrape any webpage as markdown. Bypasses bot detection and CAPTCHA.
bash scripts/scrape.sh "url"
Returns JSON with structured organic array:
{
"organic": [
{"link": "...", "title": "...", "description": "..."}
]
}
Returns clean markdown content from the webpage.