Install
openclaw skills install design-platform-searchRun public design search flows on Dribbble, Pinterest, and Behance without login, and extract normalized result fields such as title, search-page cover image...
openclaw skills install design-platform-searchUse public search pages as the primary source of truth and keep the workflow login-free.
Choose search tags.
Build public search URLs.
https://dribbble.com/search/<urlencoded-tag>https://www.pinterest.com/search/pins/?q=<urlencoded-tag>&rs=typedhttps://www.behance.net/search/projects?search=<urlencoded-tag>Collect candidate cards from the search page.
title, source_url, cover_image_url, summary, author_name when exposed, and raw_metrics when exposed.Backfill sparingly.
cover_image_url.publish_time.author_name when the search card exposes nothing and the request budget allows it.Return a normalized public-only record.
title: search-card title first, then safe public meta/title fallback.cover_image_url: search-page image first; only do light URL upgrades when the site uses obvious small fixed-size variants.author_name: search-card author first; leave Unknown if public search does not expose it reliably.publish_time: detail-page public metadata when available; otherwise null.summary: normalized title or short public snippet.Platform-specific rules live in:
Normalize results into a shape close to:
{
"title": "",
"platform": "dribbble|pinterest|behance",
"source_url": "",
"cover_image_url": "",
"author_name": "",
"publish_time": null,
"keyword": "",
"matched_tags": []
}