← 返回 Skills 市场
sipoon

Skill Compounding

作者 Sipoon · GitHub ↗ · v0.1.0 · MIT-0
cross-platform ⚠ suspicious
39
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install skill-compounding
功能描述
识别并提取可复用的解决方案为团队技能,实现经验积累与复利,避免重复摸索相同问题。
使用说明 (SKILL.md)

skill-compounding

借鉴来源:Multica (multica-ai/multica) 的 Reusable Skills 机制

每一个成功的解决方案,都应该成为团队未来可复用的技能。 技能随使用次数增加而积累,形成团队能力的复利。

核心理念:不要每次遇到相同问题都重新摸索。


触发条件

满足以下任一场景时激活:

  • 成功解决了一个非平凡问题
  • 发现了一个通用的解决方案(可以跨项目复用)
  • 用户明确要求"把这个流程固化下来"
  • 某个模式出现了 2 次以上

工作流程

Phase A:识别可复用的模式

问自己:

[compounding-check]
- 这个问题未来还会出现吗?
- 这个解决方案是否可以泛化?
- 这个流程是否有其他人需要?
- 沉淀为 Skill 的成本 vs 收益?

如果 >= 2 个"是",就值得沉淀。

Phase B:提取为 Skill

创建 Skill 目录结构:

skills/\x3Cskill-name>/
├── SKILL.md          # 核心文档(必须)
├── examples/         # 示例(可选)
├── templates/        # 模板(可选)
└── TOOLS.md         # 工具配置(可选)

SKILL.md 必须包含:

# \x3CSkill 名称>

## 何时使用
[一句话描述触发条件]

## 工作流程
[步骤 1]
[步骤 2]
[...]

## 输入/输出
- 输入:
- 输出:

## 限制与注意事项
[任何已知限制]

## 触发命令
[触发这个 Skill 的用户说法示例]

Phase C:注册到 Skill 索引

将新 Skill 添加到 skills/quick-reference.md(如果有),或者在 SOUL.md 的技能分层架构中声明。

Phase D:持续迭代

每次使用这个 Skill:

  • 如果发现问题 → 更新 SKILL.md
  • 如果有新场景 → 扩展 SKILL.md
  • 如果发现更优解 → 重写对应部分

Skill 生命周期

发现 → 提取 → 使用 → 迭代 → 传播
  ↑_____________________________|
        反馈驱动改进

质量标准

一个好的 Skill 应该满足:

标准 描述
可独立运行 不依赖其他 Skill 的上下文
触发条件明确 用户能说清楚什么时候该用它
验收标准清晰 完成后有可验证的结果
限制已说明 已知的不适用场景
有真实案例 至少验证过 1 次真实使用

与 Multica Skills 的对比

维度 Multica OpenClaw
存储位置 云端/团队共享 工作区 skills/
触发方式 Issue 路由 Skill 索引 + 手动
复用方式 团队共享 本地/可导出
积累可见性 团队面板 quick-reference.md

OpenClaw 的优势:更轻量,不需要服务器,直接文件系统管理。


触发命令

"把这个沉淀为 Skill"、"把这个流程记下来,以后复用"、"以后遇到 XXX 就用这个方案"

下一跳(Skill 链式调用)

skill-compounding 是技能沉淀技能,通常在其他技能链末端触发:

skill-compounding → 沉淀完成后回到原技能链

典型触发路径

  • \brainstorming Step 4 完成后 → 检查是否值得沉淀
  • conductor Implement 阶段交付后 → 检查是否有可复用成果
  • gent-teams 审查后发现通用模式 → 沉淀为 Skill
  • \refactoring 重构完成后 → 沉淀重构后的模式

不适用:纯一次性任务、商业敏感内容、个人偏好类内容。

安全使用建议
Install only if you want the agent to help turn repeated work into reusable local skills. Before using it, require the agent to ask for confirmation before creating or registering any skill, and avoid capturing secrets, proprietary workflows, client data, or other sensitive project details.
能力评估
Purpose & Capability
Creating skill folders, SKILL.md files, and index entries is coherent with the stated skill-compounding purpose.
Instruction Scope
Activation can occur after any non-trivial solved problem or repeated pattern, not only after an explicit user request, which makes the scope too broad for persistent workflow changes.
Install Mechanism
The package contains only markdown and JSON, with no executable scripts, dependencies, API keys, or network setup.
Credentials
The behavior is local and file-based, but it can preserve project procedures into reusable artifacts; the skill does warn against business-sensitive and personal-preference content.
Persistence & Privilege
The workflow directs the agent to create durable skills and update skill indexes or SOUL.md, which can affect future agent behavior without a clear confirmation or rollback step.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install skill-compounding
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /skill-compounding 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
- Initial release of the "skill-compounding" skill. - Adds a standardized workflow for identifying, extracting, and maintaining reusable skills within a team. - Includes clear triggers, a step-by-step process, and quality criteria for skill documentation. - Provides a directory structure and documentation template (SKILL.md) for new skills. - Outlines integration with skill indices and continuous iteration based on usage feedback. - Compares approach with Multica's team-based skill sharing and highlights OpenClaw’s lightweight, file-based management.
元数据
Slug skill-compounding
版本 0.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Skill Compounding 是什么?

识别并提取可复用的解决方案为团队技能,实现经验积累与复利,避免重复摸索相同问题。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 39 次。

如何安装 Skill Compounding?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install skill-compounding」即可一键安装,无需额外配置。

Skill Compounding 是免费的吗?

是的,Skill Compounding 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Skill Compounding 支持哪些平台?

Skill Compounding 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Skill Compounding?

由 Sipoon(@sipoon)开发并维护,当前版本 v0.1.0。

💬 留言讨论