Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

skill-build-helper技能培养助手

Agent Skill

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

总安装

13,324

周安装

539

GitHub Stars

公开资料未说明

下载量

4,183
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-build-helper

简介

skill-build-helper 用于辅助前端页面和组件开发,适合在 OpenClaw 中需要维护前端项目时使用。

  • 适用于创建或优化 OpenClaw 技能,提供 SKILL.md 模板参考。
  • 帮助用户建立新技能、改进现有功能或准备 ClawHub 发布材料。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
skill-build-helper
description
Create or optimize an OpenClaw skill. Use when the user wants to build a new skill, improve an existing one, review a SKILL.md, or prepare a skill for ClawHub publishing.
metadata
{"openclaw":{"requires":{"bins":["jq"]}}}

Skill Builder

A meta-skill for creating and optimizing OpenClaw skills following official best practices. Guides you through a structured workflow from intent to publish-ready skill.

Workflow

1. Understand intent

Determine the mode:

ModeTrigger
CreateUser wants a new skill
OptimizeUser wants to improve or review an existing skill

If creating: Ask the user for 2-3 concrete usage examples (what would they say to trigger this skill, what should happen). These examples drive the description and workflow design.

If optimizing: Read the existing SKILL.md and note its current structure before proceeding.

2. Scaffold the directory

Create the skill directory under ~/workspace/skills/:

<skill-name>/
├── SKILL.md          (required — agent instructions)
├── README.md         (recommended for published skills)
├── scripts/          (if deterministic code is needed)
└── references/       (if large docs needed on-demand)

Naming rules:

  • Lowercase, hyphens only (no underscores, no spaces)
  • Max 64 characters
  • Verb-led when possible (e.g., workout-track, skill-builder)
  • Folder name must match the name field in frontmatter

3. Write the SKILL.md

The SKILL.md is the core file — it contains the agent's instructions for executing the skill.

Frontmatter (YAML)

Three fields:

---
name: <skill-name>
description: <what it does>. Use when <trigger context>.
metadata: {"openclaw":{"requires":{"bins":["list","of","binaries"]}}}
---
  • name: Must match folder name exactly
  • description: Primary trigger mechanism. Include "Use when..." to help the agent decide when to activate. Be specific to avoid overlap with other skills
  • metadata: Declare runtime dependencies. Load {baseDir}/references/frontmatter-spec.md for the full reference if needed

Body structure

Write the body following these rules:

  1. Opening line: One sentence explaining what the skill does
  2. ## Workflow: Numbered H3 steps (### 1. Step name) — imperative form
  3. Tables for structured data (fields to extract, flags, mappings)
  4. Code blocks with exact commands — use exec tool JSON format:
   {
     "tool": "exec",
     "command": "<shell command here>"
   }
  1. ## Examples: Table with realistic input/output pairs (minimum 3 rows)
  2. Error handling section: What to do when things fail — always present, never retry silently

Key rules

  • Keep SKILL.md under 500 lines — move detailed docs to references/
  • Use {baseDir} for paths within the skill directory (e.g., {baseDir}/scripts/run.sh)
  • No hardcoded secrets — read from env vars, .env, or openclaw.json via jq
  • Imperative form throughout ("Extract the URL", not "The URL is extracted")
  • Confirmation before state changes — show a summary and ask before writing to DB, sending messages, etc.

4. Write the README.md

User-facing documentation with these sections:

# <Skill Name>

<What it does — 1-2 lines>

## Requirements

- <binary or service 1>
- <binary or service 2>

## Setup

<Step-by-step setup instructions>

## Usage

<2-3 natural language examples showing what the user would say>

## Install

\`\`\`bash
clawhub install <author>/<skill-name>
\`\`\`

5. Quality check

Load {baseDir}/references/checklist.md and validate every item:

  • [ ] Frontmatter has name + description
  • [ ] name matches folder name
  • [ ] Description includes "Use when..." trigger phrases
  • [ ] No hardcoded secrets or API keys
  • [ ] {baseDir} used for all internal paths
  • [ ] Metadata declares runtime dependencies (requires.bins, requires.env)
  • [ ] Error handling section is present
  • [ ] Examples section with at least 3 rows
  • [ ] SKILL.md is under 500 lines
  • [ ] README.md present for published skills
  • [ ] Confirmation step before any state-changing operation

Report the results as a checklist to the user, noting any failures.

6. Optimize (existing skills only)

When reviewing an existing skill:

  1. Read the current SKILL.md
  2. Run the quality check from Step 5
  3. List each issue found with a concrete fix
  4. Ask the user which fixes to apply
  5. Apply approved fixes

Do not rewrite an entire SKILL.md — make targeted, minimal edits.

Examples

User saysModeAction
"I want to create a skill that tracks my reading list"CreateScaffold reading-track/, gather examples, write SKILL.md + README.md
"Can you review my sm-saver skill?"OptimizeRead sm-saver/SKILL.md, run checklist, report issues
"Build a skill for checking server status"CreateScaffold server-check/, gather examples, write SKILL.md + README.md
"Improve the reminder skill for ClawHub"OptimizeRead reminder/SKILL.md, run checklist, add README.md if missing

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.28%
按下载量换算3,651

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills