← Back to Skills Marketplace
nycxk

灵感素材整理器

by nycxk · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
116
Downloads
2
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install inspiration-material-organizer
Description
将聊天记录、截图文字、链接和随手记等碎片灵感整理为可检索知识库。支持快速收录、智能分类、语义检索和灵感反刍。用户提到灵感整理、素材归档、笔记分类、找不到收藏内容、旧素材回顾时使用。
README (SKILL.md)

\r \r

Inspiration Material Organizer\r

\r

适用场景\r

\r 当用户提出以下需求时启用:\r \r

  • 整理分散的灵感素材\r
  • 把截图文字或链接沉淀成卡片\r
  • 给素材自动打标签并分组归档\r
  • 通过关键词或模糊描述找历史素材\r
  • 定期回顾旧素材,防止遗忘\r \r

默认策略\r

\r

  1. 使用本技能的 Python 脚本作为唯一实现入口。\r
  2. 所有素材落到本地 JSON 知识库,保证可检索和可迁移。\r
  3. 分类使用外部规则文件(稳定、可解释),可直接编辑主题与关键词。\r
  4. 检索使用关键词与简单语义近似(token overlap),避免外部依赖。\r \r

工作流\r

\r 复制并跟踪以下清单:\r \r

任务进度:\r
- [ ] 步骤1: 收录素材为标准卡片\r
- [ ] 步骤2: 自动分类并补充标签\r
- [ ] 步骤3: 检索验证可用性\r
- [ ] 步骤4: 反刍输出回顾列表\r
```\r
\r
### 步骤1:快速收录\r
\r
命令:\r
\r
```bash\r
python .cursor/skills/inspiration-material-organizer/scripts/organizer.py capture --text "内容" --source "chat"\r
```\r
\r
支持输入:\r
\r
- `--text` 文字内容(聊天片段、随手记、OCR 结果)\r
- `--url` 链接(可选)\r
- `--title` 标题(可选,不传则自动生成)\r
- `--source` 来源:`chat` / `screenshot` / `link` / `note` / `other`\r
\r
### 步骤2:智能分类\r
\r
命令:\r
\r
```bash\r
python .cursor/skills/inspiration-material-organizer/scripts/organizer.py classify --ids all\r
```\r
\r
效果:\r
\r
- 自动按 `config/topic_rules.json` 分配主题分类\r
- 自动追加关键词标签\r
- 按主题写入分组字段\r
\r
### 步骤3:语义检索\r
\r
命令:\r
\r
```bash\r
python .cursor/skills/inspiration-material-organizer/scripts/organizer.py search --query "我记得有个关于内容选题的方法"\r
```\r
\r
输出:\r
\r
- 按相关性排序的历史素材卡片\r
- 显示命中原因(标签/关键词)\r
\r
### 步骤4:灵感反刍\r
\r
命令:\r
\r
```bash\r
python .cursor/skills/inspiration-material-organizer/scripts/organizer.py ruminate --topic 写作 --count 5\r
```\r
\r
可选:\r
\r
- `--date-from YYYY-MM-DD`\r
- `--date-to YYYY-MM-DD`\r
- `--topic 主题`\r
- `--count 数量`\r
\r
## 数据文件\r
\r
默认数据库位置:\r
\r
` .cursor/skills/inspiration-material-organizer/data/inspirations.json `\r
\r
可通过环境变量覆盖:\r
\r
`INSPIRATION_DB_PATH`\r
\r
默认分类规则位置:\r
\r
` .cursor/skills/inspiration-material-organizer/config/topic_rules.json `\r
\r
可通过环境变量覆盖:\r
\r
`INSPIRATION_TOPIC_RULES_PATH`\r
\r
## 附加资源\r
\r
- 详细字段说明与分类规则见 [reference.md](reference.md)\r
- 常见命令与场景示例见 [examples.md](examples.md)\r
Usage Guidance
总体上此技能内部一致且实现透明,但在安装/运行前请注意: - 如果你关心隐私,确认将 INSPIRATION_DB_PATH 指向安全的位置(默认写入 .cursor/skills/... 下的 JSON 文件),并定期备份或加密敏感条目。 - examples.md 在文档中被引用但未包含,可能只是遗漏;若需要示例操作请手动检查 scripts/organizer.py 的子命令说明。 - 虽然脚本不做网络请求或读取其它系统凭据,建议在受限账户或虚拟环境中先运行并审阅 organizer.py 源码,确保行为符合你的预期(例如输出位置、文件权限)。 - 如果将来发现该包包含额外文件或脚本尝试联网、读取系统凭据或写入非预期路径,请停止使用并重新评估。
Capability Analysis
Type: OpenClaw Skill Name: inspiration-material-organizer Version: 1.0.0 The skill is a local knowledge management tool designed to capture, categorize, and search text-based 'inspirations' using local JSON storage. Analysis of 'scripts/organizer.py' reveals no network activity, shell command execution, or use of sensitive APIs; it relies entirely on Python standard libraries for file I/O and basic text processing. The instructions in 'SKILL.md' are functional and align with the stated purpose without any evidence of prompt injection or malicious intent.
Capability Assessment
Purpose & Capability
技能名称/描述与包含的脚本和数据文件一致:organizer.py 实现收录、分类、检索、反刍等功能;config/topic_rules.json 提供分类规则;data/inspirations.json 为默认数据库示例。没有请求与目的不相关的权限或凭据。
Instruction Scope
SKILL.md 指示使用本地 Python 脚本作为唯一入口并将数据存储到本地 JSON(可通过环境变量覆盖),这与 scripts/organizer.py 的行为一致。留意一点:SKILL.md 引用了 examples.md,但该文件未包含在清单中——这只是文档不一致,不影响主功能。脚本不会访问其它系统配置或外部网络。
Install Mechanism
无安装规范(instruction-only),且随包提供的脚本为纯 Python 文件;没有从不可信 URL 下载或安装第三方二进制的行为。运行前只需本地 Python 环境。
Credentials
不要求任何环境变量或凭据作为必需项(registry metadata shows none)。脚本支持可选环境变量 INSPIRATION_DB_PATH 和 INSPIRATION_TOPIC_RULES_PATH 来覆盖默认路径——这与用途相符且比例合适。
Persistence & Privilege
flags (always/user-invocable) 为默认值,未要求强制常驻或修改其他技能配置。脚本会在 ~/.cursor/skills/...(相对路径 .cursor/skills/...)下写入数据库和规则文件,这属于技能本身的数据持久化,可由用户通过环境变量重定向。
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install inspiration-material-organizer
  3. After installation, invoke the skill by name or use /inspiration-material-organizer
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release: organize inspiration and material fragments into a searchable local knowledge base. - Supports fast capture of chat logs, screenshots, links, and notes as standardized cards. - Automatically classifies material using external, editable rule files; adds topic and keyword tags. - Enables keyword and simple semantic (token overlap) search for easy retrieval. - Provides scheduled review (rumination) of old material to prevent forgetting. - All data is stored locally in a JSON database, ensuring easy migration and privacy.
Metadata
Slug inspiration-material-organizer
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 灵感素材整理器?

将聊天记录、截图文字、链接和随手记等碎片灵感整理为可检索知识库。支持快速收录、智能分类、语义检索和灵感反刍。用户提到灵感整理、素材归档、笔记分类、找不到收藏内容、旧素材回顾时使用。 It is an AI Agent Skill for Claude Code / OpenClaw, with 116 downloads so far.

How do I install 灵感素材整理器?

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

Is 灵感素材整理器 free?

Yes, 灵感素材整理器 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 灵感素材整理器 support?

灵感素材整理器 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 灵感素材整理器?

It is built and maintained by nycxk (@nycxk); the current version is v1.0.0.

💬 Comments