用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/gbencke/dotfiles --skill obscura命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | obscura |
| description | Web scraping and automation using the Obscura headless browser. |
Obscura is a lightweight headless browser engine built in Rust for web scraping and AI agent automation. It bypasses bot protections, runs real JavaScript, and uses minimal resources.
It is available in the system PATH as obscura.
Use obscura fetch to render a single page.
# Get the page title
obscura fetch https://example.com --eval "document.title"
# Extract all links
obscura fetch https://example.com --dump links
# Render JavaScript and dump HTML
obscura fetch https://news.ycombinator.com --dump html
# Dump plain text (good for LLM context)
obscura fetch https://example.com --dump text
# Wait for dynamic content
obscura fetch https://example.com --wait-until networkidle0
# Wait for a specific element
obscura fetch https://example.com --selector ".my-dynamic-element"
# Stealth mode (anti-detection for Cloudflare/Datadome)
obscura fetch https://example.com --stealth --dump text
# Quiet mode (suppresses the banner output)
obscura fetch https://example.com --quiet --dump text
Use obscura scrape to extract data from multiple URLs simultaneously.
obscura scrape url1 url2 url3 \
--concurrency 5 \
--eval "document.querySelector('h1').textContent" \
--format json
obscura fetch <url> --quiet --dump text to get clean, readable text.--stealth flag to randomize fingerprints and bypass anti-bot challenges.--eval to extract specific DOM elements, states, or variables instead of dumping the whole page.