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

create-skill创造技能

Agent Skill

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

总安装

447

周安装

19

GitHub Stars

公开资料未说明

下载量

157
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lwlee2608/agent-skills --skill create-skill

简介

create-skill 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Create an Agent Skill

Guide the creation of a new SKILL.md file that meets quality standards for agent skills.

Rules

  1. One skill, one job. A skill should target exactly one workflow or domain. If you need the word "and" to describe what it does, split it into two skills.
  2. Prefer gerund form for names. Per Anthropic's official guidance, use verb+ing: processing-pdfs, analyzing-spreadsheets, writing-documentation. Acceptable alternatives: noun phrases (pdf-processing) or action-oriented (process-pdfs). Avoid vague names (utils, helpers, tools) and overly generic ones (documents, data). Hard constraints from the spec: lowercase + numbers + hyphens only, max 64 chars, must not contain the reserved words anthropic or claude.
  3. Write a trigger-oriented description in third person. The description field determines when the agent activates the skill. Start with "Use when..." and be specific enough to avoid false triggers but broad enough to catch the right moments. Always third person — Anthropic warns that I can… or You can use this… phrasing degrades discovery. Max 1024 chars.

- Bad: "Helps with diagrams." / "I can fix your ASCII art." - Good: "Use when creating or fixing ASCII box diagrams, tables, or monospace text art to ensure proper alignment."

  1. Use this file structure: --- name: <kebab-case-name> description: <"Use when..." trigger description> user-invocable: true --- # <Short Title> <1-2 sentence intro: what problem this solves and when to use it.> ## Rules <Numbered, imperative rules. Each rule starts with a bolded verb phrase.> ## Verification procedure (if applicable) <Numbered steps the agent follows to check its own work.> ## Common mistakes to watch for (if applicable) <Bulleted list of predictable failure modes and how to avoid them.>
  2. Write rules in direct imperative voice. Start each rule with a bolded action ("Use...", "Never...", "Always prefer..."). Rules must be specific enough that two agents would follow them the same way.
  3. Include exact syntax for anything format-sensitive. If the skill involves CLI commands, file formats, or structured output, provide the exact command or template in a fenced code block. Do not leave format details to interpretation.
  4. Explain "why" for non-obvious constraints. If a rule exists because of a bug, workaround, or past failure, state the reason so the agent can make correct judgment calls in edge cases.
  5. Include a verification procedure for skills that produce output. Tell the agent how to check its own work. This catches more errors than generic "think carefully" instructions.
  6. Document common failure modes. LLMs make predictable, repeated mistakes. List the top 3-5 mistakes for the skill's domain so the agent can avoid them.
  7. Design for the 80% case. Over-specified skills become brittle. Establish a preference hierarchy with fallbacks (e.g., "prefer X, fall back to Y if X is unavailable") rather than trying to cover every edge case.
  8. Keep skills independent. A skill must work without assuming other skills are loaded. Cross-skill dependencies create fragile setups where uninstalling one skill silently breaks another.
  9. Keep it concise; split with progressive disclosure if needed. Anthropic recommends SKILL.md body under 500 lines. Aim shorter (under 4KB) when the skill fits. If content grows past that, move detail to sibling files (reference.md, examples.md, forms.md) and link from SKILL.md — Claude reads them on demand, so they cost zero context until needed. Keep references one level deep from SKILL.md; nested references can cause Claude to partial-read with head and miss content.

Verification procedure

After drafting the skill, verify:

  1. Name check — Lowercase + hyphens, ≤64 chars, no anthropic/claude? Gerund form (preferred) or noun phrase / action-oriented (acceptable)?
  2. Description check — Third person, starts with "Use when...", ≤1024 chars, clearly describes the trigger condition?
  3. Rule clarity — Could two different agents follow each rule identically without ambiguity?
  4. Syntax check — Are all format-sensitive outputs shown with exact examples?
  5. Rationale check — Does every non-obvious rule have a "why"?
  6. Scope check — Does the skill do exactly one thing? Can you describe it in one sentence without "and"?
  7. Independence check — Does the skill work standalone without other skills loaded?

Common mistakes to watch for

  • Vague descriptions: "Helps with X" gives the agent no trigger signal. Always use "Use when..." with a specific condition.
  • Missing code examples: Rules like "format the output correctly" without showing the exact format leave too much to interpretation.
  • Over-scoping: Combining "create and validate and deploy" into one skill. Split them.
  • Generic CoT padding: "Think carefully before proceeding" wastes tokens. Use domain-specific reasoning steps instead (e.g., "Calculate box widths from content before drawing").
  • No verification step: The skill tells the agent what to do but never how to check if it did it right.
  • Wrong naming form: helper, utils, my-skill, or names containing claude/anthropic (the latter two are rejected by the spec). Default to gerund form (writing-X, processing-X) unless a noun phrase reads more naturally.
  • First-person description: I can help you… or You can use this to… degrades discovery. Always third person: Processes X. Use when….

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.15%
按下载量换算60

Claude

27.45%
按下载量换算43

Cursor

18.17%
按下载量换算29

Gemini CLI

9.33%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills