← Back to Skills Marketplace
rock-ma-ai

Inspirations

by Pengfei Ma · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
72
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install inspirations
Description
灵感捕捉与记录工具。当用户输入灵感、想法、创意、待验证创意时自动触发,记录为结构化 Markdown 文件保存到 workspace/inspirations/ 目录。支持类型识别(灵感/想法/待验证创意)、自动打标签、整理摘要。
README (SKILL.md)

Inspirations — 灵感捕捉与记录

核心工作流

当用户描述一个灵感/想法/创意时,执行以下步骤:

1. 内容类型识别

根据内容自动判断类型:

关键词/特征 类型 Tag
突然闪现、直觉、"冒出来"的念头 inspiration 💡 灵感
有目标、有步骤、可执行的方案 idea 🎯 想法
有根据但需要验证/实验的假设 todo 🔬 待验证
读书/文章/对话后的思考和延伸 reflection 💭 反思

类型判断优先级:todo > idea > reflection > inspiration。用户输入中最明确的特征为准。

2. 生成文件名

格式:YYYY-MM-DD--HHMM--{type}--{slug}.md

  • type:识别出的类型标签(小写,如 inspiration)
  • slug:从内容中提取 2-4 个核心关键词,用短横线连接
  • 中文标题直接音译或取拼音首字母

示例:

  • 内容:"忽然想到可以做个 AI 日程助手的浏览器插件"
  • 文件名:2026-05-09--0118--inspiration--ai-ri-cheng-zhu-shou.md

3. 写入 Markdown 文件

文件路径:workspace/inspirations/{filename}

文件内容模板:

---
title: {一句话标题}
type: {类型}
tags: [{tag1}, {tag2}, ...]
created_at: {YYYY-MM-DD HH:mm}
source: {来源,DM/群聊/文档等}
---

## 原始记录

{用户的原始输入,逐字保留}

## 摘要

{用一段简洁的话总结这条灵感的核心价值,30字以内}

## 延伸思考

{根据内容自动补充 1-3 条延伸问题或关联想法}

## 状态

- [ ] 未处理
- [ ] 有价值,待跟进
- [ ] 已归档

4. 存储目录

统一存放在 workspace/inspirations/ 下,按年月组织子目录:

workspace/inspirations/
├── 2026-05.md          ← 月度汇总索引
└── 2026-05/
    ├── 2026-05-09--0118--inspiration--ai-ri-cheng-zhu-shou.md
    └── ...

每月末在 YYYY-MM.md 文件中追加一条索引记录。

月度索引文件格式

路径:workspace/inspirations/{YYYY-MM}.md

# 灵感索引 — {YYYY年MM月}

## 本月记录

| 日期 | 标题 | 类型 | 状态 |
|------|------|------|------|
| 05-09 | AI 日程助手浏览器插件 | 💡 灵感 | ⏳ 未处理 |

## 本月统计

- 灵感:{N} 条
- 想法:{N} 条
- 待验证:{N} 条

交互原则

  • 不打断用户:识别到灵感后静默完成记录,不强制要求补充信息
  • 主动补充:自动生成摘要和延伸思考,减少用户操作负担
  • 简洁确认:记录完成后给一条简短确认("已记录:[标题]"),不冗长
  • 可纠正:用户可以随时说"修改/补充/删除刚才的灵感",立即响应

触发信号

以下情况必须记录:

  • 用户明确说"忽然想到……"、"冒出一个念头……"、"我有灵感了……"
  • 用户描述了一个未经验证的创意或方案
  • 用户提到"也许可以……"、"我在想能不能……"

以下情况不记录

  • 用户只是在聊天、问候、提问
  • 明确是在讨论现有任务或执行指令
  • 闲聊内容
Usage Guidance
This appears safe for its intended purpose as an automatic local inspiration logger. Before installing, be aware that inspiration-like messages may be saved verbatim under workspace/inspirations/, so avoid including secrets or sensitive personal information unless you are comfortable keeping it there.
Capability Analysis
Type: OpenClaw Skill Name: inspirations Version: 1.0.0 The 'inspirations' skill bundle is a productivity tool designed to capture and organize user ideas into structured Markdown files within a dedicated workspace directory. The logic in SKILL.md focuses entirely on content categorization, file naming, and template-based writing, with no evidence of data exfiltration, malicious execution, or unauthorized system access.
Capability Assessment
Purpose & Capability
The described capability—detecting inspirations, classifying them, and saving structured Markdown notes—matches the skill name and description.
Instruction Scope
The skill is designed to trigger automatically for certain inspiration-like phrases and record them quietly, but it also defines non-trigger cases and keeps the behavior scoped to note creation.
Install Mechanism
There is no install spec and no code files; the artifacts show only SKILL.md instructions.
Credentials
The only environment change described is writing Markdown files under workspace/inspirations/, which is proportionate for a note-taking skill.
Persistence & Privilege
The skill creates persistent local records of the user's original input, summaries, tags, and monthly indexes; no credentials or elevated privileges are requested.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install inspirations
  3. After installation, invoke the skill by name or use /inspirations
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of the "inspirations" skill: a tool for capturing and structuring user inspirations, ideas, and reflections. - Automatically detects input type (inspiration, idea, todo, reflection), tags, generates summaries, and organizes content in Markdown files. - Files are saved with structured filenames and placed under workspace/inspirations/, organized by month. - Monthly index files track and summarize all records, with statistics by type. - Designed for minimal user interruption, automatic content enhancement, and simple, fast confirmation. - Supports flexible corrections (modify/add/delete) for recent entries on user request.
Metadata
Slug inspirations
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Inspirations?

灵感捕捉与记录工具。当用户输入灵感、想法、创意、待验证创意时自动触发,记录为结构化 Markdown 文件保存到 workspace/inspirations/ 目录。支持类型识别(灵感/想法/待验证创意)、自动打标签、整理摘要。 It is an AI Agent Skill for Claude Code / OpenClaw, with 72 downloads so far.

How do I install Inspirations?

Run "/install inspirations" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Inspirations free?

Yes, Inspirations is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Inspirations support?

Inspirations is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Inspirations?

It is built and maintained by Pengfei Ma (@rock-ma-ai); the current version is v1.0.0.

💬 Comments