From web-intel
Deep analysis of a URL — tech stack, architecture, business model, competitive positioning. Triggers: "analyze url" | "deep dive url" | "analyze this site" | "analyze https://" | "what tech does this site use" | "reverse engineer this site" | "analyze this website" | "look into this site".
How this skill is triggered — by the user, by Claude, or both
Slash command
/web-intel:analyze-url <url><url>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Scrape URL → deep technical and strategic analysis.
Scrape URL → deep technical and strategic analysis.
/analyze-url https://example.com
¬U → → DP(B)to get one.
PLUGIN_ROOT=$(find ~/projects -maxdepth 4 -path "*/web-intel/pyproject.toml" -print -quit 2>/dev/null | xargs dirname)
if [ -z "$PLUGIN_ROOT" ]; then
echo "ERROR: web-intel plugin not found. Install: claude plugin install web-intel"
exit 1
fi
First invocation in session only:
cd "$PLUGIN_ROOT" && uv run python scripts/doctor.py
cd "$PLUGIN_ROOT" && SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt uv run python scripts/scraper.py "$URL"
Run full video analysis pipeline (tempfile per ${CLAUDE_PLUGIN_ROOT}/../shared/references/tempfile-convention.md):
TMPDIR=$(mktemp -d -t "web-intel-video-analysis-XXXXXX")
trap 'rm -rf "$TMPDIR"' EXIT
ANALYSIS="$TMPDIR/analysis.json"
cd "$PLUGIN_ROOT" && SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt uv run python scripts/video_analyzer.py "$URL" --output "$ANALYSIS"
Pipeline: scrape metadata + transcript → download video (yt-dlp, 1080p max) → extract frames at 1fps (ffmpeg) → auto-detect best local VLM by GPU VRAM (qwen3-vl via Ollama) → batch-describe frames → output JSON.
Read "$ANALYSIS" → analyze:
video_analyzer fails (¬GPU ∨ ¬Ollama) → fall back to transcript-only via standard scraper.
Output structured markdown with clear headers. Include confidence (high|medium|low) for inferred info.
success: false → fall back to WebFetch.
$ARGUMENTS
npx claudepluginhub roxabi/roxabi-intel --plugin web-intelCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.