灵感素材整理器

v1.0.0

将聊天记录、截图文字、链接和随手记等碎片灵感整理为可检索知识库。支持快速收录、智能分类、语义检索和灵感反刍。用户提到灵感整理、素材归档、笔记分类、找不到收藏内容、旧素材回顾时使用。

2· 108·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for nycxk/inspiration-material-organizer.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "灵感素材整理器" (nycxk/inspiration-material-organizer) from ClawHub.
Skill page: https://clawhub.ai/nycxk/inspiration-material-organizer
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 inspiration-material-organizer

ClawHub CLI

Package manager switcher

npx clawhub@latest install inspiration-material-organizer
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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/...)下写入数据库和规则文件,这属于技能本身的数据持久化,可由用户通过环境变量重定向。
Assessment
总体上此技能内部一致且实现透明,但在安装/运行前请注意: - 如果你关心隐私,确认将 INSPIRATION_DB_PATH 指向安全的位置(默认写入 .cursor/skills/... 下的 JSON 文件),并定期备份或加密敏感条目。 - examples.md 在文档中被引用但未包含,可能只是遗漏;若需要示例操作请手动检查 scripts/organizer.py 的子命令说明。 - 虽然脚本不做网络请求或读取其它系统凭据,建议在受限账户或虚拟环境中先运行并审阅 organizer.py 源码,确保行为符合你的预期(例如输出位置、文件权限)。 - 如果将来发现该包包含额外文件或脚本尝试联网、读取系统凭据或写入非预期路径,请停止使用并重新评估。

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

latestvk979zyg721238d9czhnd467ws5858ahx
108downloads
2stars
1versions
Updated 1w ago
v1.0.0
MIT-0

Inspiration Material Organizer

适用场景

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

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

默认策略

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

工作流

复制并跟踪以下清单:

任务进度:
- [ ] 步骤1: 收录素材为标准卡片
- [ ] 步骤2: 自动分类并补充标签
- [ ] 步骤3: 检索验证可用性
- [ ] 步骤4: 反刍输出回顾列表

步骤1:快速收录

命令:

python .cursor/skills/inspiration-material-organizer/scripts/organizer.py capture --text "内容" --source "chat"

支持输入:

  • --text 文字内容(聊天片段、随手记、OCR 结果)
  • --url 链接(可选)
  • --title 标题(可选,不传则自动生成)
  • --source 来源:chat / screenshot / link / note / other

步骤2:智能分类

命令:

python .cursor/skills/inspiration-material-organizer/scripts/organizer.py classify --ids all

效果:

  • 自动按 config/topic_rules.json 分配主题分类
  • 自动追加关键词标签
  • 按主题写入分组字段

步骤3:语义检索

命令:

python .cursor/skills/inspiration-material-organizer/scripts/organizer.py search --query "我记得有个关于内容选题的方法"

输出:

  • 按相关性排序的历史素材卡片
  • 显示命中原因(标签/关键词)

步骤4:灵感反刍

命令:

python .cursor/skills/inspiration-material-organizer/scripts/organizer.py ruminate --topic 写作 --count 5

可选:

  • --date-from YYYY-MM-DD
  • --date-to YYYY-MM-DD
  • --topic 主题
  • --count 数量

数据文件

默认数据库位置:

.cursor/skills/inspiration-material-organizer/data/inspirations.json

可通过环境变量覆盖:

INSPIRATION_DB_PATH

默认分类规则位置:

.cursor/skills/inspiration-material-organizer/config/topic_rules.json

可通过环境变量覆盖:

INSPIRATION_TOPIC_RULES_PATH

附加资源

Comments

Loading comments...