← 返回
未分类 中文

Skill Development Guide / Skill 开发指南,tutorial, guide, skill, development, openclaw, qclaw, ai, mcp, how-to, 教程, 开发指南, skill-builder, clawhub

Comprehensive tutorial for building reusable AI Skills with instructions, scripts, security best practices, and examples on ClawHub and OpenClaw platforms.
在ClawHub和OpenClaw平台上构建可复用AI技能的综合教程,包含详细说明、脚本、安全最佳实践和示例。
cccpan
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 425
下载
💾 11
安装
1
版本
#latest

概述

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!

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 19:33 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

security-compliance

Skill Vetter

spclaudehome
AI智能体技能安全预审工具。安装ClawdHub、GitHub等来源技能前,检查风险信号、权限范围及可疑模式。
★ 1,223 📥 267,323
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,071 📥 804,805
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,371 📥 319,668