Creative Inspiration Hub

v1.0.0

Creative Inspiration Hub / 创意灵感孵化器. 通过跨领域组合、灵感触发、创意评估和思维导图生成,帮助创意工作者突破瓶颈。

1· 150·0 current·0 all-time
byhaidong@harrylabsj

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for harrylabsj/creative-inspiration-hub.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Creative Inspiration Hub" (harrylabsj/creative-inspiration-hub) from ClawHub.
Skill page: https://clawhub.ai/harrylabsj/creative-inspiration-hub
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install creative-inspiration-hub

ClawHub CLI

Package manager switcher

npx clawhub@latest install creative-inspiration-hub
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

latestvk97f74nhqpme6p4wgjj8nw3r2984a6rq
150downloads
1stars
2versions
Updated 3w ago
v1.0.0
MIT-0

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": ["灵活工位", "健康环境", "智能协作"]
})

Comments

Loading comments...