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

how-to-write-skills怎样写技巧

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

公开资料未说明

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/quick-brown-foxxx/myai --skill how-to-write-skills

简介

用于查找、检索和筛选相关信息,支持根据关键词或任务场景定位内容。

  • 适合在需要信息聚合的场景下使用,可结合来源仓库和原始 README 核验具体用法。
  • 安装命令:npx skills add https://github.com/quick-brown-foxxx/myai --skill how-to-write-skills。
  • 适用于 Codex、Claude、Cursor、Gemini CLI,通过 GitHub 安装。
  • 建议确认权限范围和维护状态,注意是否触发联网或文件读写操作。

SKILL.md

How To Write AI Skills

Overview

Write skills as compact, reusable guidance for a smart and capable model.

Default to a self-contained SKILL.md. Keep the skill portable, concise, and easy to trigger.

Default Approach

  • Prefer one self-contained SKILL.md.
  • Keep the skill high level by default. Give recommendations, decision rules, and good defaults rather than rigid scripts.
  • Use strict rigid step-by-step instructions only when the user explicitly asks for them or the task is fragile enough that ambiguity is likely to cause failure.
  • Avoid teaching basics the model already knows.
  • If the skill is growing too large, first cut repetition and boilerplate. If it is still too large, move heavy reference material or reusable tools into separate files only when they are clearly justified. Split into multiple skills only when the responsibilities are genuinely different.

Frontmatter

Use portable frontmatter first.

  • name: lowercase kebab-case, matches the directory name.
  • description: say what the skill does and when to use it.
  • Prefer folded YAML such as description: >- instead of one very long line.

Hard constraints:

  • Keep description within the platform's limits. 1024 characters is a safe default.
  • Avoid XML angle brackets in frontmatter.
  • Do not use reserved names such as claude or anthropic in the skill name.
  • Use compatibility only for concrete platform or environment requirements, not as a general slogan.

Write description for discovery, not for marketing.

  • Assume the agent sees ONLY directory name, name, and description before invocation.
  • Assume the body is ONLY post-invocation guidance.
  • Put invocation guidance in description, not in the body.
  • Keep description focused on when to load. Put detailed instructions and decision rules in the body.
  • Put the main use case early.
  • Include words users would actually say.
  • Mention concrete tasks, artifacts, file types, symptoms, or domains when relevant.
  • Keep it specific enough to trigger correctly, but not so narrow that it misses obvious paraphrases.
  • Keep it trigger-oriented. State the outcome and when to use the skill, but do not stuff it with workflow steps or process summaries.
  • A strong default is a two-part description: first sentence gives the trigger, second sentence packs in task, domain, artifact, and tool keywords.

Good pattern:

description: Helps create portable, self-contained agent skills with clear frontmatter and strong discoverability. Use when creating or editing a SKILL.md, refining skill instructions, or improving skill triggering.

Another good pattern:

description: >-
  ALWAYS LOAD THIS SKILL WHEN ADDING LOGGING, CONFIGURING LOG OUTPUT, OR SETTING UP COLORLOG.
  Do not configure Python logging directly — use this skill first. Python logging, stdout/stderr behavior, rotating files, CLI vs GUI/server output.

Bad patterns:

description: Helps with skills.
description: Use when doing agent things.
description: Writes the perfect skill by following a strict 12-step workflow with validation gates and advanced optimization.

Writing the Body

Keep the body short and load-bearing.

  • Start with the core principle and default approach.
  • Explain non-obvious constraints, heuristics, or patterns.
  • Prefer compact sections and short examples over long theory.
  • Give one-two good defaults, not five equal options.
  • If you include examples, make them realistic and directly reusable.

Optional sections that often help:

  • Overview
  • Default Approach
  • Frontmatter or equivalent configuration guidance
  • Core Workflow or Decision Rules
  • Common Mistakes

Discoverability

Discovery is part of the skill design.

When writing name and description, optimize for how another agent will find the skill later.

  • Treat loading and behavior as separate design problems.
  • The description should help the skill load for the right tasks.
  • The body should tell the agent how strongly to apply the skill once loaded.
  • Some skills should load broadly but apply flexibly. Others should load narrowly and be followed rigidly.

Important: body text cannot help a skill that did not load. If a rule is about invocation, trigger scope, or when to reach for the skill, put it in description.

Example: an advanced-repo-research skill should load for all inspect upstream source requests, but explain the agent when to use simple research vs advanced.

  • Use descriptive names with real task words.
  • Cover likely synonyms.
  • Include concrete trigger phrases when they help.
  • Mention failure symptoms when the skill addresses a problem.
  • Mention specific tools, libraries, file types, or domains only when they are truly part of the trigger.
  • Prefer literal task-shaped names and descriptions over abstract goals.
  • Hard directives like ALWAYS LOAD THIS SKILL WHEN X are useful when you need to ensure a skill is consistently loaded for a clearly scoped class of work.
  • Do not make entire body UPPER CASE, only initial phrase.
  • You can adjust this to language of the skill, eg russian.
  • Scope X tightly enough to avoid bad matches.
  • Pair it with a second sentence such as Do not do Y directly — read this skill first when you need to steer the agent away from bypassing the skill.

Example: ALWAYS LOAD THIS SKILL WHEN WORKING WITH PYSIDE6, QT, OR DESKTOP GUI CODE. Do not review or write PySide6 or Qt code directly — use this skill first.

Think in terms of search terms an agent might match:

  • user requests: create skill, start backend, proceed to plan
  • artifacts: SKILL.md, frontmatter
  • problems: does not trigger, too vague, loads too often
  • goals: portable, discoverable, self-contained

Undertriggering signs:

  • The skill does not load for obvious requests.
  • Agents keep asking for guidance the skill should already provide.
  • You need to invoke it manually for common matching tasks.

Overtriggering signs:

  • The skill loads for adjacent but different tasks.
  • The description is broad enough to match generic writing or documentation work.

If triggering is wrong, refine the description instead of editing body text.

Also verify that the skill is discoverable from the expected directory layout for the target agents. For supported agent paths, check:

  • https://github.com/vercel-labs/skills#supported-agents

Verification

Do not turn verification into ritual.

For simple skills, a small careful read by separate subagent is usually enough.

Match the verification effort to the risk. Use stronger checks when the main failure mode is triggering, discoverability, or behavior in realistic agent workflows.

Example: a tiny wording cleanup may only need a careful read, while a trigger-sensitive skill should usually get at least one realistic invocation test.

Use stronger verification only when the skill contains:

  • non-trivial scripts or other code
  • complex instructions
  • brittle workflows
  • decision logic that could be misread

In those cases:

  1. Start with a cheap check: try a few prompts that should trigger the skill and a few that should not.
  2. If the environment supports it, have a subagent or fresh reviewer try to use or review the skill.
  3. Look at where the skill was misunderstood, skipped, or interpreted too narrowly or too broadly.
  4. Fix the skill.
  5. Repeat if the first verification exposed meaningful problems.

For skills where triggering matters, a realistic invocation test is often the most useful check:

  • give a fresh agent a plausible task
  • do not over-specify the workflow unless that is part of the requirement
  • see whether the skill loads or is disclosed naturally
  • check whether it changed the behavior you cared about, such as tool choice, escalation, or reporting

Example: ask a fresh agent to research an upstream package behavior from real sources, instruct it to report used skills and see whether it will use advanced-repo-research practices or not.

The goal is not formal TDD. The goal is to confirm that another agent can understand and apply the skill. And that it's instructions are correct.

When Extra Files Make Sense

Default answer: they usually do not.

Keep the skill self-contained unless an extra file is meaningfully better outside the main markdown.

Good reasons:

  • executable scripts
  • templates the agent should fill in
  • structured data or large tables better kept as data files
  • external mutable artifacts that are part of the workflow, eg credentials.txt

Weak reasons:

  • optional reading
  • extra theory
  • long examples that can be shortened
  • reference docs that duplicate the main skill or are not explicitly linked from SKILL.md

If the skill depends on another file, say so explicitly and make the dependency obvious.

Platform-Specific Notes

Platform means "AI agent program", eg claude code, opencode or codex.

Default to standard frontmatter for portability.

Only add platform-specific fields when the task clearly needs platform-specific behavior such as invocation control, subagent execution, tool permissions, or argument substitution.

Check current docs for the target host before adding those fields.

Useful references:

  • Claude Code: https://docs.anthropic.com/en/docs/claude-code/skills
  • OpenCode: https://opencode.ai/docs/skills

If portability matters, keep the core skill useful even after those fields are removed.

Common Mistakes

  • Explaining basics instead of the non-obvious parts.
  • Writing a vague description that never triggers.
  • Writing a broad description that triggers on unrelated tasks.
  • Turning guidance into a rigid workflow without need.
  • Splitting a small skill into too many files.
  • Keeping a bloated skill instead of cutting or splitting it.
  • Adding platform-specific frontmatter by habit instead of need.
  • Assuming the agent will read optional extra files just because they exist.

Final Check

Before finishing, quickly confirm:

  • The skill is still concise.
  • name and directory name match.
  • description states what the skill does and when to use it.
  • The core instructions are self-contained.
  • Extra files are absent unless they serve a clear purpose.
  • Verification level matches the skill's complexity.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.13%
按下载量换算25

Claude

31.99%
按下载量换算21

Cursor

18.12%
按下载量换算12

Gemini CLI

8.67%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills