Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问许可证需确认审计通过

create-skill创造技能

Agent Skill

create-skill 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

326

周安装

14

GitHub Stars

58

下载量

114
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/archieindian/openclaw-superpowers --skill create-skill

简介

create-skill 是用于向 openclaw-superpowers 生态添加新技能的元技能,提供标准化接入流程。

  • 适合贡献者或用户自定义扩展,需先回答技能用途、触发条件及是否为核心能力等关键问题。
  • 使用时需对照现有技能列表避免重复,确保新技能具备明确边界与适用场景说明。
  • 安装前请仔细阅读模板要求,注意提交前应通过 lint 检查与基础测试用例验证。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Create Skill

A meta-skill for onboarding new skills into openclaw-superpowers. Follow this process whenever you or a contributor wants to add a new skill.

Step 1: Define the Skill

Answer these questions before writing anything:

  1. What does this skill do? (one sentence)
  2. When should the agent use it? (the trigger)
  3. Is it core or OpenClaw-native?

- Core: General agent methodology (brainstorming, debugging, planning). Works in any agent runtime. - OpenClaw-native: Requires persistence, long-running sessions, or memory. Specific to OpenClaw's always-on model.

  1. Does an existing skill already cover this? If yes, extend it instead of creating a new one.
  2. Does this skill need to persist state between sessions or wakeups? If yes → stateful: true + STATE_SCHEMA.yaml.

Step 2: Choose a Name

  • Use kebab-case: my-new-skill
  • Name describes the action, not the category: retry-with-backoff not error-handling-utils
  • Keep it short — 2-4 words max

Step 3: Scaffold the Skill

Create the directory and files:

skills/<core|openclaw-native>/<skill-name>/
  ├── SKILL.md
  └── STATE_SCHEMA.yaml   # only if stateful: true

Use the frontmatter template for SKILL.md (optional fields shown as comments):

---
name: <skill-name>
description: <One sentence — what it does and when to use it.>
# cron: "<5-field cron expression>"   # optional: if skill runs on a schedule
# stateful: true                       # optional: if skill persists state
---

See TEMPLATE.md for the full content structure.

Step 4: Write the Content

Follow these conventions (learned from existing skills):

  • Be direct. Open with the core principle, not a preamble. ("Plans prevent wasted work." not "This skill helps you write plans.")
  • Be prescriptive. Tell the agent exactly what to do, step by step. Avoid vague guidance.
  • Be brief. The best skills in this repo are under 50 lines. If it's longer, split into smaller skills.
  • Include decision criteria. Tell the agent *when* to use it and *when not to*.
  • Use checklists for verification steps (see verification-before-completion).
  • Add checkpoint guidance if the skill applies to work spanning multiple sessions.
  • State in prose is a mistake. If your skill describes saving progress to markdown or memory files, use stateful: true + STATE_SCHEMA.yaml instead.

Step 5: Validate

Before committing, check:

  • Frontmatter is correctname matches directory name, description is one clear sentence
  • File is at the right pathskills/<core|openclaw-native>/<name>/SKILL.md
  • No overlap with existing skills — if there's overlap, merge or differentiate clearly
  • Follows the template — has When to Use, The Process, and Key Principles sections
  • Under 80 lines — if longer, consider splitting
  • Actionable — every step tells the agent what to *do*, not what to *think about*
  • Testable — you can tell whether the agent followed the skill correctly by looking at its output
  • If stateful: trueSTATE_SCHEMA.yaml exists with version: and fields: keys
  • If cron: is set — expression is valid 5-field cron syntax

Step 6: Register

No manual registration needed. OpenClaw auto-discovers skills from the extensions directory. Ensure:

  1. The directory is under skills/core/ or skills/openclaw-native/
  2. The file is named exactly SKILL.md
  3. The install symlink is in place (install.sh handles this)
  4. For stateful skills, install.sh creates ~/.openclaw/skill-state/<skill-name>/ automatically
  5. For skills with cron:, install.sh registers them with OpenClaw's cron on next run

Common Mistakes

  • Too abstract. "Think carefully about edge cases" is not a skill step. "List 3 edge cases and write a test for each" is.
  • Too broad. If a skill covers more than one distinct workflow, split it.
  • Missing triggers. Without clear "when to use" criteria, the agent won't know to invoke it.
  • Duplicating existing skills. Check brainstorming, writing-plans, systematic-debugging, and verification-before-completion before creating something similar.
  • State in prose. If your skill describes saving progress to markdown or memory files, use stateful: true with a STATE_SCHEMA.yaml instead — it's structured, machine-readable, and resumable.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.68%
按下载量换算45

Claude

28.09%
按下载量换算32

Cursor

17.39%
按下载量换算20

Gemini CLI

10.65%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills