Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

lean-skill-builder精益技能构建者

Agent Skill

lean-skill-builder 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,197

周安装

306

GitHub Stars

公开资料未说明

下载量

2,521
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:lean-skill-builder(精益技能构建者)
来源仓库:https://github.com/zurbrick/lean-skill-builder
安装命令:
openclaw skills install lean-skill-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install lean-skill-builder

简介

基于 SKILL.md 构建轻量化技能框架结构。

  • 识别臃肿技能并防止功能漂移现象发生。lean-skill-builder 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 提供技能合理性判断与最小化设计建议。
  • 安装命令:openclaw skills install lean-skill-builder。
  • 建议配合人工审核确保技能边界清晰合理。

SKILL.md

name
skill-builder
description
>

Skill Builder

Use this skill when the job is to decide, build, or audit a skill itself.

This is a narrow builder, not a meta-agent and not a skill factory. Prefer the smallest useful answer.

Modes

  1. Decide — choose between plain edit, existing tool/skill, subagent, or a lean skill
  2. Build — draft a minimal skill skeleton only when a skill is justified
  3. Audit — tighten or lightly restructure an existing skill

Use when

  • deciding whether a new skill is justified at all
  • drafting a lean new skill skeleton after deciding a skill is warranted
  • tightening an existing skill's trigger description or scope
  • moving detail out of SKILL.md into references/
  • auditing a skill for bloat, stale instructions, duplicate content, or spec drift

Do not use when

  • a plain file edit will solve the problem faster
  • an existing tool or installed skill already covers the work
  • the problem is implementation labor across many files rather than reusable guidance
  • you are inventing process theater to justify a skill
  • you are trying to generate a large framework of boilerplate, governance, or publishing machinery

Default workflow

  1. Run the decision tree first

Read references/decision-tree.md and choose between plain edit, existing tool/skill, subagent, or a lean skill.

  1. If the answer is not "use a skill," stop there

Prefer the honest recommendation over unnecessary skill creation.

  1. If a skill is justified, build the smallest workable skeleton

Read references/supporting-files-guide.md and produce only what is earned: - skill folder - SKILL.md - references/ with 1-3 files only if they reduce context load or hold optional detail - assets/ only if the skill produces output that depends on bundled files - scripts/ stub only if deterministic execution is clearly warranted

  1. Write the skill body well

Read references/writing-patterns.md for guidance on voice, examples, output templates, and explaining the why behind instructions.

  1. Keep SKILL.md minimal

Include only: - clear frontmatter (name, description) — see references/frontmatter-patterns.md - scope and non-scope - default workflow - reference pointers when optional detail is useful

  1. Smoke test before shipping

Try 2-3 realistic prompts against the skill before calling it done: - one clear trigger (should activate the skill) - one edge case (should activate but tests a boundary) - one near-miss (should *not* activate — tests specificity)

If any of these behave wrong, revisit the description or workflow before shipping.

  1. Audit before expanding

Use references/audit-checklist.md to remove bloat, stale claims, weak triggers, duplicate guidance, and files that do not earn their keep.

  1. Apply the Tool Addition Gate lightly

If the proposed skill is compensating for a missing primitive, check this order: existing tools → lean skill → subagent/retrieval pattern → new tool only if clearly needed.

Build output

When building, produce the smallest useful package in this order:

  1. Recommendation

State whether the answer is: - Use a skill - Use the existing tool/skill - Use a subagent - Do nothing special; just edit it

  1. Folder tree

Show a minimal tree such as:

 skill-name/
 ├── SKILL.md
 └── references/
 └── optional-file.md
  1. Draft frontmatter

Provide only: - name - description

  1. SKILL.md outline

Include only the sections the skill actually needs.

  1. Optional additions

Suggest 1-3 references/ files if justified. Suggest an assets/ folder only if the skill needs bundled templates or static files. Suggest a scripts/ stub only if exact repeatable execution matters. Optionally suggest publish metadata ideas (description/tags), but do not package or publish.

Minimal build example

Recommendation: Use a skill

skill-name/
├── SKILL.md
└── references/
 └── checklist.md
name: skill-name
description: Helps with X. Use when the user asks for Y or needs Z.

SKILL.md should then contain only:

  • scope / non-scope
  • default workflow
  • pointer to references/checklist.md

Good outcomes

  • A plain edit stays a plain edit
  • An existing skill gets tightened instead of replaced
  • A new skill has a sharp trigger description and a short SKILL.md
  • A new skill skeleton is minimal and immediately editable
  • Supporting files exist only when they reduce context load or improve reliability
  • The skill triggers correctly on natural phrasings (not just its literal name)

Avoid

  • turning one-off work into a permanent skill
  • adding README, changelog, install notes, or setup clutter inside the skill unless publishing truly needs it
  • stuffing examples, schemas, and edge cases into SKILL.md
  • creating scripts for things that are better as instructions
  • inventing governance layers, registries, dashboards, or lifecycle systems
  • writing ALWAYS/NEVER/CRITICAL in all caps instead of explaining reasoning

Works well with

This skill handles the pre-flight phase: deciding if a skill is warranted and structuring the smallest viable version. For testing, iteration, and benchmarking of a built skill, hand off to skill-creator (if available), which provides eval runners, comparison viewers, and description optimization loops.

References

  • references/decision-tree.md — choose skill vs tool vs subagent vs plain edit
  • references/frontmatter-patterns.md — lean frontmatter, description patterns, and pushy trigger guidance
  • references/writing-patterns.md — voice, examples, output templates, and instruction style
  • references/supporting-files-guide.md — progressive disclosure model and what belongs in each folder
  • references/audit-checklist.md — fast bloat/spec-drift review

Output style

Lead with the recommendation, then provide only the smallest justified build or edit plan.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.64%
按下载量换算2,260

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills