From web-intel
Extract what works from a URL and suggest how to adapt patterns/copy/design for your project. Triggers: "adapt" | "inspire from" | "steal from" | "adapt this" | "take inspiration from" | "borrow from this site" | "how do they do it" | "what can we learn from" | "model after".
How this skill is triggered — by the user, by Claude, or both
Slash command
/web-intel:adapt <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
Let:
Let: P(x) := pattern of type x (content | design | technical | business)
Scrape URL → extract what works → suggest adaptations for your project.
/adapt 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"
Identify reusable patterns across 4 domains:
| Domain | Patterns to extract |
|---|---|
| Content & Copy | Headlines/CTAs, value props, social proof, microcopy |
| Design | Layout/section order, nav UX, component patterns, color/typography |
| Technical | Architecture (SSR/SPA/API), performance strategies, integrations, DX |
| Business | Pricing tiers, growth mechanics, onboarding/activation flow |
∀ identified pattern → provide:
Sort into priority matrix:
Output structured markdown. → DP(A) Implement a specific adaptation | Deep-dive a pattern | Adapt from another URL
$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.