Overview
- Skill Key
- benson126/design-inspiration-collector
- Author
- benson126
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/benson126/design-inspiration-collector
- Latest Commit SHA
- ce44bd5b431b0f696087ab3a2e2fdbd3727b726b
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Design Inspiration Collector 技能。 若已安装,则直接安装 Design Inspiration Collector 技能。
# 多平台设计灵感收集器
帮助用户从 Behance、Dribbble、Pinterest 三个平台高效收集设计灵感,并生成飞书文档。
## 功能特点
1. **多平台搜索**:自动搜索 Behance、Dribbble、Pinterest 三个设计平台
2. **飞书文档**:自动生成飞书文档,命名为"关键词+日期时间"格式
3. **趋势分析**:提取 AI 设计趋势摘要
4. **推荐相关**:推荐相关设计方向供进一步探索
## 工作流程
### Step 1: 理解需求
当用户提出设计方向时,确认:
- 具体领域(App类型、设计风格、平台等)
- 是否有细分要求(如"只看移动端"、"只要Dashboard")
### Step 2: 多平台搜索
使用 Tavily API 搜索三个平台:
```python
# Pinterest
query = f"site:pinterest.com {主题} ui ux design 2026"
# Dribbble
query = f"site:dribbble.com {主题} ui design 2026"
# Behance
query = f"site:behance.net {主题} ui ux design 2026"
```
### Step 3: 生成飞书文档
使用 feishu_doc 工具创建飞书文档:
```python
# 1. 创建文档,命名为:关键词+日期时间
feishu_doc action=create title="{关键词}_{YYYYMMDD_HHMMSS}"
# 2. 写入 Markdown 内容
feishu_doc action=write doc_token=xxx content="markdown内容"
```
**文档命名格式**:`{关键词}_{YYYYMMDD_HHMMSS}`
示例:
- `医疗App设计灵感_20260311_170245`
- `金融Dashboard_20260311_143022`
### Step 4: 发送文档链接
将飞书文档链接发送给用户,格式如下:
```
# {主题} 设计灵感收集
> 来源:Behance、Dribbble、Pinterest
---
## 📊 趋势概览
{AI 分析的设计趋势}
---
## 🎨 Pinterest 精选 (5条)
1. **{标题}** ⭐⭐⭐⭐⭐
- 链接:{URL}
- 内容:{描述}
2. **{标题}** ⭐⭐⭐⭐
- 链接:{URL}
- 内容:{描述}
...(共5条)
---
## 🎯 Dribbble 精选 (5条)
...
---
## 💎 Behance 精选 (5条)
...
---
## 🔍 搜索关键词
- `{主题} ui design`
- `{主题} app ui`
- `{主题} dashboard`
- `{主题} mobile`
---
## 📌 相关方向推荐
需要我帮你搜索以下细分主题吗?
1. **{方向1}** - {简短描述}
2. **{方向2}** - {简短描述}
3. **{方向3}** - {简短描述}
```
---
**飞书文档链接**:https://feishu.cn/docx/xxx
---
## 依赖工具
| 工具 | 用途 | 安装 |
|------|------|------|
| Tavily API | 搜索三个设计平台 | `pip install tavily-python` |
| feishu_doc...
# Design Inspiration Collection Skills - ClawHub Package
> 打包时间:2026年03月11日 21:30
> 版本:1.0.0
---
## 📦 包含内容
此包包含以下技能,可直接上传到 ClawHub:
### 1. design-inspiration-collector (推荐)
**完整的多平台设计灵感收集技能**
- **功能**:搜索 Pinterest、Dribbble、Behance 三个平台
- **输出**:生成飞书文档(命名格式:关键词+日期时间)
- **触发词**:找灵感、收集灵感、设计参考、UI参考、视觉灵感
#### 特点:
- ✅ 三平台同时搜索
- ✅ 自动生成飞书文档
- ✅ 相关度星级评分
- ✅ 相关方向推荐
- ✅ 趋势分析摘要
#### 依赖:
```bash
pip install tavily-python playwright
playwright install chromium
export TAVILY_API_KEY="your-api-key"
```
---
### 2. pinterest-inspiration-collector (旧版)
**仅搜索 Pinterest 的简化版**
- **功能**:仅搜索 Pinterest 平台
- **输出**:Markdown 报告
- **状态**:建议使用 design-inspiration-collector 替代
---
## 🚀 快速开始
### 安装到 OpenClaw
```bash
# 方式1:使用 .skill 文件
clawhub install design-inspiration-collector.skill
# 方式2:复制文件夹
cp -r design-inspiration-collector ~/.openclaw/workspace/skills/
```
### 使用方法
在聊天中输入:
- "帮我收集医疗App的设计灵感"
- "搜索上传文件的UI参考"
- "找一些AI界面的视觉灵感"
---
## 📁 文件结构
```
clawhub_packages/
├── README.md # 本文件
├── design-inspiration-collector/ # 主技能
│ ├── SKILL.md # 技能定义
│ └── scripts/
│ └── design_collector.py # 主脚本
└── pinterest-inspiration-collector/ # 旧版技能
├── SKILL.md
└── scripts/
└── search_pinterest.py
```
---
## 🎯 上传 ClawHub 指南
1. 访问 https://clawhub.com
2. 点击「发布技能」
3. 选择 `design-inspiration-collector` 文件夹
4. 填写信息:
- **名称**:design-inspiration-collector
- **版本**:1.0.0
- **标签**:design, inspiration, pinterest, dribbble, behance, ui
- **描述**:多平台设计灵感收集技能,支持 Pinterest、Dribbble、Behance
---
## 📚 使用示例
### 示例 1:医疗App设计
```
用户:帮我收集医疗App的设计灵感
助手:
✅ 飞书...
youmind-openlab
AI skill for OpenClaw & Claude Code — recommend from 10000+ Nano Banana Pro (Gemini) image prompts. Smart search by use case, content remix, sample images.
23blocks-os
AI Agent Orchestrator with Skills System - Give AI Agents superpowers: memory search, code graph queries, agent-to-agent messaging. Manage Claude, Codex or any AI Agent from one dashboard. Move Agents between computers and locations
hashgraph-online
AI agent skills for the Universal Registry - search, chat, and register 72,000+ agents across 14+ protocols. Works with Claude, Codex, Cursor, OpenClaw, and any AI assistant.
rito-w
A cross-platform skills manager for AI IDEs. Search marketplace, download locally, and install to Claude, Cursor, Windsurf, and more with one click.
besoeasy
Battle-tested skill library for AI agents. Save 98% of API costs with ready-to-use code for crypto, PDFs, search, web scraping & more. No trial-and-error, no expensive APIs.
openbotx
An open-source platform for orchestrating AI agents — secure, simple, and built for everyone. Multi-agent, real-time task board, web control panel, skills system, browser automation, multi-provider, scheduler, and more. One command to start. Everything from the browser. No coding required.