Token导航 LogoToken导航TokenDH.com
开发external-serviceclawhub未标认证来源可访问clear审计通过

skill-dev-guide技能开发指南

Agent Skill

skill-dev-guide 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,416

周安装

217

GitHub Stars

公开资料未说明

下载量

1,753
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-dev-guide

简介

使用说明、脚本、安全最佳实践以及 ClawHub 和 OpenClaw 平台上的示例构建可重复使用的 AI 技能的综合教程。

SKILL.md

Skill Development Guide / Skill 开发指南

A comprehensive guide to creating Skills for ClawHub and OpenClaw.

一份完整的 Skill 开发教程,适用于 ClawHub 和 OpenClaw 平台。


Quick Start / 快速开始

A Skill is a reusable prompt template that extends AI capabilities. Every Skill needs a SKILL.md file.

Skill 是一个可复用的提示词模板,用于扩展 AI 能力。每个 Skill 都需要一个 SKILL.md 文件。

Minimal Structure / 最小结构

# My Skill Name

Short description of what this skill does.

---

instructions: |
  You are a helpful assistant that...

  ## Your Task
  1. Step one
  2. Step two

Core Concepts / 核心概念

1. Instructions Block / 指令块

The instructions field defines AI behavior:

instructions: |
  You are an expert at [task].

  ## Guidelines
  - Be concise
  - Focus on accuracy

Tips / 提示:

  • Use clear, specific language / 使用清晰具体的语言
  • Break complex tasks into steps / 将复杂任务分解为步骤
  • Avoid ambiguous instructions / 避免模糊的指令

2. Scripts (Optional) / 脚本(可选)

Add automation with bash scripts:

scripts:
  - name: validate
    description: Validate input data
    command: ./scripts/validate.sh

Security Rules / 安全规则:

  • Never use set -a (exports all variables) / 禁止使用 set -a
  • Avoid hardcoded secrets / 避免硬编码密钥
  • Use explicit variable exports / 使用显式变量导出

3. Allowed Commands / 允许的命令

Declare which commands your skill needs:

allowed_commands:
  - curl
  - jq
  - node

Best Practices / 最佳实践

Passing Security Scan / 通过安全扫描

Do / 推荐Don't / 避免
Explicit variable exportsset -a or export *
Documented API callsHidden external requests
Clear script descriptionsVague or missing descriptions
User-facing outputsSilent background operations

Writing Good Instructions / 写好指令

  1. Be Specific / 具体明确

- Bad: "Help with code" - Good: "Review Python code for security vulnerabilities"

  1. Provide Context / 提供上下文

- Include relevant background information - Define technical terms if needed

  1. Set Boundaries / 设定边界

- Specify what the skill should NOT do - Define output format expectations


Examples / 示例

Basic Example / 基础示例

See examples/minimal.md for a starter template.

With Scripts / 带脚本示例

See examples/with-script.md for automation patterns.

Real-World Reference / 实际项目参考

For a complete MCP + Skill implementation example, check out:


Common Mistakes / 常见错误

IssueSolution
Skill not foundCheck file is named SKILL.md (case-sensitive)
Script permission deniedAdd chmod +x to your script
Security scan failedReview scripts for set -a, hardcoded secrets
Instructions too longBreak into sections, use bullet points

FAQ / 常见问题

Q: How do I test my skill locally?

A: Use the ClawHub CLI or import directly in OpenClaw.

Q: Can I use external APIs?

A: Yes, but document them clearly in your skill description.

Q: Where can I get help?

A: Open an issue for discussion and questions:

  • https://github.com/CCCpan/data-verify-mcp/issues

Resources / 资源


Author / 作者

Created by @CCCpan

Found this helpful? Star the repo or open an issue to share your feedback!

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.46%
按下载量换算1,568

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills