← 返回 Skills 市场
harrylabsj

Creative Inspiration Hub

作者 haidong · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
156
总下载
1
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install creative-inspiration-hub
功能描述
Creative Inspiration Hub / 创意灵感孵化器. 通过跨领域组合、灵感触发、创意评估和思维导图生成,帮助创意工作者突破瓶颈。
使用说明 (SKILL.md)

Creative Inspiration Hub / 创意灵感孵化器

你是创意灵感孵化器

你的任务是帮助创意工作者突破创作瓶颈,通过跨领域组合、灵感触发、创意评估和思维导图生成,发现新颖的创意方向。

产品定位

Creative Inspiration Hub 是一个创意激发系统,核心价值:

  • 跨领域组合:将不同领域的元素随机组合,产生新颖联想
  • 灵感触发:生成激发创意的关键词和概念
  • 创意评估:评估创意的原创性、可行性和价值
  • 思维导图:将创意概念可视化,展示关联和发展路径

使用场景

用户可能会说:

  • "为智能家居生成创意想法"
  • "我在产品设计遇到瓶颈,所有想法都太常规"
  • "组合生物学和建筑设计产生新创意"
  • "评估这个创意:基于区块链的二手书交易平台"

触发词

  • 创意灵感孵化器
  • 创意激发
  • 突破创作瓶颈
  • 跨领域灵感
  • 创意组合生成

输入 schema

interface InspirationRequest {
  type: "idea-generation" | "cross-domain" | "inspiration-trigger" | "evaluation" | "mindmap";
  theme?: string;
  domains?: string[];
  constraints?: string[];
  blocker?: string;
  existingIdeas?: string[];
  preferences?: { style?: "radical" | "moderate" | "conservative"; riskTolerance?: "low" | "medium" | "high"; };
  domainA?: string;
  domainB?: string;
  applicationScenario?: string;
  ideaToEvaluate?: string;
  evaluationDimensions?: ("novelty" | "feasibility" | "value" | "originality")[];
  coreConcept?: string;
  relatedThoughts?: string[];
}

输出 schema

interface InspirationReport {
  success: boolean;
  sessionId: string;
  ideas?: CreativeIdea[];
  combinations?: CrossDomainResult[];
  triggers?: InspirationTriggerWord[];
  evaluation?: IdeaEvaluation;
  mindmap?: MindMapResult;
  metadata: { requestType: string; processingTime: number; model: string; };
}

指令格式示例

1. 主题创意生成

为 智能家居 生成创意想法
领域:technology, design, environment

2. 跨领域组合

组合 biology 和 architecture 产生新创意
应用场景:可持续城市设计

3. 灵感触发

我在 产品设计 遇到瓶颈:思维定式
需要新的创意方向

4. 创意评估

评估这个创意:基于区块链的二手书交易平台
评估维度:新颖性、可行性、市场价值

5. 思维导图

生成思维导图
核心概念:未来办公空间设计
相关想法:灵活工位、健康环境、智能协作

支持的领域

  • technology(科技)
  • art(艺术)
  • science(科学)
  • business(商业)
  • design(设计)
  • education(教育)
  • health(健康)
  • environment(环境)
  • entertainment(娱乐)
  • social(社会)
  • cultural(文化)

当前状态

v0.1.0 MVP 骨架版本,所有功能返回 mock 数据。

目录结构

creative-inspiration-hub/
├── SKILL.md          # 技能定义
├── clawhub.json     # 技能元数据
├── package.json     # 依赖配置
├── handler.py       # 主逻辑入口
├── engine/          # 创意引擎(预留)
├── data/            # 数据文件(预留)
└── scripts/         # 工具脚本
    └── test.py      # 自测脚本

使用示例

from handler import handle_request

# 创意生成
result = handle_request({
    "type": "idea-generation",
    "theme": "智能家居",
    "domains": ["technology", "design"]
})

# 跨领域组合
result = handle_request({
    "type": "cross-domain",
    "domainA": "biology",
    "domainB": "architecture",
    "applicationScenario": "可持续城市设计"
})

# 灵感触发
result = handle_request({
    "type": "inspiration-trigger",
    "theme": "产品创新",
    "blocker": "思维定式"
})

# 创意评估
result = handle_request({
    "type": "evaluation",
    "ideaToEvaluate": "基于区块链的二手书交易平台"
})

# 思维导图
result = handle_request({
    "type": "mindmap",
    "coreConcept": "未来办公空间设计",
    "relatedThoughts": ["灵活工位", "健康环境", "智能协作"]
})
安全使用建议
This skill is a local, mock-data creative ideation helper implemented in Python and requires no credentials or external services. Before installing: (1) be aware it returns mock/sample data (SKILL.md says 'MVP 骨架' and handler.py returns synthetic outputs), so don't expect production-quality analyses; (2) packaging is slightly sloppy (package.json points to a non-existent index.js and version fields differ) — this is not a security red flag but indicates the author may not have fully polished the package; (3) run the included tests (scripts/test.py) in a safe environment to verify behavior; and (4) avoid sending sensitive secrets or private data to the skill (even though it doesn't exfiltrate or call external networks, it's best practice). If you need production-grade integrations (real data sources, persisting outputs, or networked features), request or review an updated version that documents external dependencies and includes a clear install spec.
功能分析
Type: OpenClaw Skill Name: creative-inspiration-hub Version: 1.0.0 The skill bundle is a legitimate creative brainstorming tool designed to provide structured ideation and evaluation. The Python logic in handler.py is self-contained, using hardcoded mock data and standard libraries (json, uuid, time) without any network, file system, or shell execution capabilities. The SKILL.md instructions are strictly aligned with the stated purpose of creative inspiration and do not contain any prompt-injection attacks or malicious directives.
能力评估
Purpose & Capability
Name/description, SKILL.md, and handler.py are consistent: the skill is an ideation/mindmap mock engine that returns synthetic data. There are minor packaging inconsistencies (registry metadata/version says 1.0.0 while SKILL.md and project files use 0.1.0; package.json is a Node manifest but the implementation is Python and package.json.main points to index.js which does not exist). These are packaging sloppiness rather than indicators of malicious intent.
Instruction Scope
SKILL.md only instructs generating ideas, cross-domain combos, triggers, evaluations, and mindmaps. The runtime code implements these and returns mock data. The instructions do not ask the agent to read arbitrary user files, environment variables, system paths, or to send data to external endpoints.
Install Mechanism
No install spec is provided (instruction-only style with included Python files). No downloads or archive extraction. The only runtime dependency is Python standard library modules. This is low-risk.
Credentials
The skill declares no required environment variables, no primary credentials, and the code does not access os.environ or request secrets. This is proportionate to its stated purpose.
Persistence & Privilege
always is false and the skill does not request elevated persistence or modify system or other-skill configurations. It can be invoked by the agent normally and has no autonomous privileges beyond the platform default.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install creative-inspiration-hub
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /creative-inspiration-hub 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Version 1.0.0 of creative-inspiration-hub - Added or updated the self-test script (scripts/test.py). - No functional changes to the core skill; main logic and docs remain unchanged.
v0.1.0
Initial MVP release providing mock data for all core features: - Supports creative idea generation by theme and domain. - Enables cross-domain creative combinations for innovative thinking. - Offers inspiration triggers to help break creative blocks. - Provides basic creative idea evaluation across novelty, feasibility, and value. - Generates mind maps to visualize and expand on core concepts. - All functionalities return mock data for demonstration and prototyping purposes.
元数据
Slug creative-inspiration-hub
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Creative Inspiration Hub 是什么?

Creative Inspiration Hub / 创意灵感孵化器. 通过跨领域组合、灵感触发、创意评估和思维导图生成,帮助创意工作者突破瓶颈。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 156 次。

如何安装 Creative Inspiration Hub?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install creative-inspiration-hub」即可一键安装,无需额外配置。

Creative Inspiration Hub 是免费的吗?

是的,Creative Inspiration Hub 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Creative Inspiration Hub 支持哪些平台?

Creative Inspiration Hub 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Creative Inspiration Hub?

由 haidong(@harrylabsj)开发并维护,当前版本 v1.0.0。

💬 留言讨论