← Back to Skills Marketplace
156
Downloads
1
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install creative-inspiration-hub
Description
Creative Inspiration Hub / 创意灵感孵化器. 通过跨领域组合、灵感触发、创意评估和思维导图生成,帮助创意工作者突破瓶颈。
README (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": ["灵活工位", "健康环境", "智能协作"]
})
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install creative-inspiration-hub - After installation, invoke the skill by name or use
/creative-inspiration-hub - Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Frequently Asked Questions
What is Creative Inspiration Hub?
Creative Inspiration Hub / 创意灵感孵化器. 通过跨领域组合、灵感触发、创意评估和思维导图生成,帮助创意工作者突破瓶颈。 It is an AI Agent Skill for Claude Code / OpenClaw, with 156 downloads so far.
How do I install Creative Inspiration Hub?
Run "/install creative-inspiration-hub" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Creative Inspiration Hub free?
Yes, Creative Inspiration Hub is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Creative Inspiration Hub support?
Creative Inspiration Hub is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Creative Inspiration Hub?
It is built and maintained by haidong (@harrylabsj); the current version is v1.0.0.
More Skills