From lazyweb
Connects external design inspiration sources (Mobbin, Savee, Dribbble, Behance) to Lazyweb design skills via headless browser authentication, session persistence, and registration for automatic research inclusion.
How this skill is triggered — by the user, by Claude, or both
Slash command
/lazyweb:lazyweb-add-inspo-sourceThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Connect an external design inspiration library so all Lazyweb design skills
Connect an external design inspiration library so all Lazyweb design skills
(/lazyweb-design-research, /lazyweb-design-improve, /lazyweb-design-brainstorm,
/lazyweb-quick-references) search it alongside Lazyweb's database.
No adapters or scrapers needed — Claude uses the browse tool to navigate the library UI at search time, the same way it browses any website.
LB=""
# Check lazyweb-skill browse first
for _P in "$(pwd)/.claude/skills/lazyweb-skill/browse/dist/browse" ~/.claude/skills/lazyweb-skill/browse/dist/browse; do
[ -x "$_P" ] && LB="$_P" && break
done
# Fall back to gstack browse
if [ -z "$LB" ]; then
_ROOT=$(git rev-parse --show-toplevel 2>/dev/null)
[ -n "$_ROOT" ] && [ -x "$_ROOT/.claude/skills/gstack/browse/dist/browse" ] && LB="$_ROOT/.claude/skills/gstack/browse/dist/browse"
[ -z "$LB" ] && [ -x ~/.claude/skills/gstack/browse/dist/browse ] && LB=~/.claude/skills/gstack/browse/dist/browse
fi
[ -x "$LB" ] && echo "BROWSE_READY: $LB" || echo "NO_BROWSE"
If NO_BROWSE: This skill requires the browse tool. Tell the user:
"Browse tool not found. Install it with: cd ~/.claude/skills/lazyweb-skill/browse && ./setup"
Then stop.
If the user didn't specify, ask which library to connect. Common options:
If the user wants a library not listed here, ask for:
cat ~/.lazyweb/libraries.json 2>/dev/null || echo '{"libraries":[]}'
If the library is already in the list, tell the user it's already connected and ask if they want to re-authenticate (useful if session expired).
Navigate to the library and hand off to the user for login:
# Open the library's login page
$LB goto "{url}"
# Hand off to visible Chrome so user can log in
$LB handoff "Log in to {name}. Close this window or press Enter when done."
The handoff opens a visible Chrome window where the user can:
After the user completes login:
# Resume headless control with cookies preserved
$LB resume
Navigate to the search page and confirm we're logged in:
$LB goto "{searchUrl}"
$LB snapshot -i
Check the snapshot for signs of being logged in (user avatar, account menu, no login prompts). If it looks like we're not authenticated, tell the user and offer to retry.
Do a quick test search to confirm everything works:
$LB snapshot -i
# Find the search input and type a test query
$LB fill @eN "pricing page"
$LB press Enter
# Wait briefly for results
$LB snapshot -i
If results load successfully, the connection works.
mkdir -p ~/.lazyweb
Read existing config, add the new library, write back:
{
"libraries": [
{
"name": "Mobbin",
"url": "https://mobbin.com",
"searchUrl": "https://mobbin.com/browse/ios/apps",
"addedAt": "2026-03-26"
}
]
}
Write to ~/.lazyweb/libraries.json.
Tell the user:
/lazyweb-add-inspo-source again to reconnect."/lazyweb-remove-inspo-source."npx claudepluginhub aboul3ata/lazyweb-skill --plugin lazywebFinds app screenshots and UI references via Lazyweb, downloads locally, and groups by pattern. Use for quick examples of screens, UI elements, or flows without deep analysis.
Pulls a ready-made DESIGN.md from the VoltAgent/awesome-design-md library (73+ brand design systems) as a starting point for a project's design layer, then adapts it to the real client.
Loads and applies brand design systems from the awesome-design-md library. Supports single brand, multi-brand mixing, project re-analysis, and catalog listing.