
Claude Skills by yangchuansheng
github.com/yangchuanshengReddit's "new" web UI (`reddit.com`) is a Lit / web-components SPA built around custom elements (`shreddit-post`, `shreddit-comment`, `faceplate-*`). This makes DOM extraction unusually reliable — the custom element tags are stable and exposed on the element itself (no hashed class names). Use the browser when you're logged in (private subreddits, NSFW gates, rate-limit avoidance). For fully public content, the JSON API path below is faster.
`https://restcountries.com` — open JSON API for country data. **Never use the browser.** All data is reachable via `http_get`. No auth required, no API key.
Starter guide based on Salesforce developer documentation. Treat Salesforce as an org-specific, browser-first domain: hosts, enabled apps, and visible objects vary by org, and Salesforce does not officially support UI URLs as a public interface contract.
`https://www.sec.gov` / `https://data.sec.gov` / `https://efts.sec.gov` — all public data, no auth required. Every workflow here is pure `http_get` — no browser needed.
Field-tested against soundcloud.com on 2026-04-18. No authentication required for any approach documented here. All code uses `http_get` (pure HTTP, no browser). ---
Field-tested against open.spotify.com on 2026-04-18. No authentication required for any approach documented here. ---
Starter guide based on Spreadshirt Help articles. Spreadshirt has two important surfaces for harness work: - the public **Showroom** / marketplace side - the interactive **Customize Tool** / Product Designer Treat public catalog browsing and interactive product customization as separate workflows.
`https://stackoverflow.com` — all public read-only data is available via the Stack Exchange API v2.3. No auth, no browser required for any read operation. API is fast, returns gzip-compressed JSON, and works transparently with `http_get`.
Field-tested against store.steampowered.com on 2026-04-18. All code blocks validated with live requests.
Field-tested against multiple Substack publications on 2026-04-27. No authentication required for any approach documented here. All endpoints work via `http_get` without a browser. ---
`https://thetechgeeks.com` — Shopify Online Store 2.0, AU Ubiquiti reseller. Prices GST-inclusive ("All Prices Include Australian GST At 10%" in footer).
URL: `https://www.tiktok.com/tiktokstudio/upload?from=upload&lang=en` (always append `&lang=en`)
`https://www.tradingview.com` — charting platform with multiple internal REST APIs. Stock/crypto/forex screener and symbol search work without auth. Use `http_get` or raw `urllib` for all workflows except JS-rendered chart pages.
Read-only pattern for Trello: land on a board URL, scrape lists and their cards. Works for signed-in agents that inherit Tom's Chrome session — no login dance, no captcha.
Field-tested against trustpilot.com on 2026-04-18. `http_get` with a generic Mozilla/5.0 UA works — no JS challenge, no Cloudflare block. The Trustpilot Consumer API (`api.trustpilot.com`) returns 403 for all endpoints without an API key. ---
Field-tested against walmart.com on 2026-04-18 using `http_get` (no browser required). All code blocks were run and outputs verified against live responses. ---
`https://web.archive.org` — all public data, no auth or API key required. Everything here is pure `http_get` — no browser needed. > **NOTE:** A comprehensive Internet Archive skill (covering CDX, item metadata, and search) already exists at `domain-skills/archive-org/scraping.md`. This file is a focused, CDX-first quick-reference for Wayback Machine snapshot work specifically.
Three free, no-auth weather APIs tested: **wttr.in** (simplest), **Open-Meteo** (most complete), **weather.gov / NWS** (US only, official). All work with `http_get` — no browser needed.
Field-tested against wellfound.com on 2026-04-18. All confirmed via live HTTP probes and response header analysis. ---
`https://api.worldbank.org/v2` — free REST API for global development indicators. No API key, no auth, no browser needed. All data via `http_get`.
URL patterns: - Home / discovery: `https://www.xiaohongshu.com/explore` - Search results: `https://www.xiaohongshu.com/search_result?keyword=...`
Field-tested against youtube.com on 2026-04-21. No authentication required for any approach documented here. ---
Field-tested against `www.zillow.com` on 2026-04-18 using `http_get` (no browser).