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

skill-development技能发展

Agent Skill

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

总安装

1,014

周安装

41

GitHub Stars

33

下载量

318
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/josiahsiegel/claude-plugin-marketplace --skill skill-development

简介

skill-development 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中获取信息的场景。
  • 通过关键词输入和来源仓库筛选来组织和呈现信息。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Development for Claude Code Plugins

Overview

Skills are modular knowledge packages that extend Claude's capabilities with specialized workflows, domain expertise, and bundled resources. They transform Claude from a general-purpose agent into a specialized expert.

Skills use progressive disclosure - a three-level loading system that manages context efficiently:

  1. Metadata (name + description) - Always in context (~100 words)
  2. SKILL.md body - Loaded when skill triggers (~1,500-2,000 words)
  3. Bundled resources - Loaded as needed by Claude (unlimited)

Skill Structure

skill-name/
├── SKILL.md              # Required: Core instructions
├── references/           # Optional: Detailed documentation
│   ├── patterns.md       #   Loaded when Claude needs detail
│   └── advanced.md
├── examples/             # Optional: Working code examples
│   └── example.sh        #   Users can copy and adapt
├── scripts/              # Optional: Executable utilities
│   └── validate.sh       #   Token-efficient, deterministic
└── assets/               # Optional: Output resources
    └── template.html     #   Used in output, not loaded into context

Only create directories you actually need. A minimal skill is just SKILL.md.

SKILL.md Format

Frontmatter (Required)

---
name: skill-name
description: |
  This skill should be used when the user asks to "specific phrase 1",
  "specific phrase 2", "specific phrase 3". Include exact phrases users
  would say that should trigger this skill.
---

Description rules:

  • Use third person: "This skill should be used when..." (NOT "Use this skill when...")
  • Include specific trigger phrases users would actually say
  • Be concrete: "create a hook", "add a PreToolUse hook" (NOT "helps with hooks")
  • List multiple trigger phrases to maximize activation
  • Include common synonyms — users say "slow DAX" not "DAX performance optimization", "semantic model" not "data model", "slow query" not "query performance tuning"
  • Keep under 500 characters — rely on keywords in plugin.json for breadth

Trigger phrase completeness checklist: Before finalizing a skill description, verify it covers:

  1. The skill's primary domain terms (e.g., "Power Query M" for an ETL skill)
  2. Common synonyms and informal phrases users actually type (e.g., "slow report", "merge queries", "pivot/unpivot")
  3. Action verbs for tasks the skill handles (e.g., "optimize", "debug", "migrate", "configure")
  4. Abbreviations and acronyms users may use (e.g., "PQ" for Power Query, "DAX" for Data Analysis Expressions)
  5. Problem-oriented phrases (e.g., "report is slow" not just "performance optimization")

Good example:

description: |
  This skill should be used when the user asks to "create a hook",
  "add a PreToolUse hook", "validate tool use", or mentions hook events
  (PreToolUse, PostToolUse, Stop). Provides hook development guidance.

Bad examples:

description: Use this skill when working with hooks.    # Wrong person, vague
description: Provides hook guidance.                     # No trigger phrases
description: Load when user needs hook help.             # Not third person

Body - Writing Style

Write the entire skill body using imperative/infinitive form (verb-first instructions):

Correct (imperative):

To create a hook, define the event type.
Configure the MCP server with authentication.
Validate settings before use.
Start by reading the configuration file.

Incorrect (second person):

You should create a hook by defining the event type.
You need to configure the MCP server.
You can use the grep tool to search.

Body - Structure

# Skill Title

## Overview
[Purpose and when to use - 2-3 sentences]

## Quick Reference
[Tables with key facts, common values, or patterns]

## Core Content
[Essential procedures and workflows - the main value]

## Additional Resources

### Reference Files
- **`references/patterns.md`** - Common patterns
- **`references/advanced.md`** - Advanced techniques

### Example Files
- **`examples/example.sh`** - Working example

Body - Size Guidelines

TargetWords
Ideal1,500-2,000
Maximum3,000 (absolute hard limit)

If SKILL.md exceeds 2,000 words, move detailed content to references/ files.

Size enforcement process:

  1. After writing SKILL.md, count words (exclude frontmatter). Use wc -w or estimate ~5 words per line.
  2. If over 2,000 words, identify sections that are reference material (detailed tables, exhaustive lists, server-specific configs, troubleshooting matrices) and extract them to references/.
  3. If over 3,000 words after extraction, the skill is too broad — split into two skills or move more content to references.
  4. Never leave a section in SKILL.md just because it was written there first. Always evaluate whether each section earns its place in the core file.

Body - Avoiding Duplicate Content

Within a single SKILL.md, never repeat the same table, list, or block of content. Before adding any table or reference block, search the file for similar content already present.

Across SKILL.md and references/, information lives in one place only. If a detailed table is in references/patterns.md, SKILL.md should contain only a brief summary and a pointer to the reference file — not a copy of the table.

Resource Types

references/ - Documentation loaded as needed

  • Detailed patterns, advanced techniques, API docs, migration guides
  • Keeps SKILL.md lean while making information discoverable
  • Each file can be 2,000-5,000+ words
  • For large files (>10k words), include grep search patterns in SKILL.md
  • Avoid duplication: information lives in SKILL.md OR references/, not both

examples/ - Working code users can copy

  • Complete, runnable scripts and configuration files
  • Template files and real-world usage examples

scripts/ - Executable utilities

  • Validation tools, testing helpers, automation scripts
  • Token-efficient (executed without loading into context)
  • Should be executable and documented

assets/ - Output resources (not loaded into context)

  • Templates, images, icons, boilerplate code, fonts
  • Used within the output Claude produces, not for Claude to read

Skill Creation Process

Step 1: Understand Use Cases

Identify concrete examples of how the skill will be used. Ask:

  • What functionality should this skill support?
  • What would a user say that should trigger this skill?
  • What tasks does this skill help with?

Step 2: Plan Resources

Analyze each use case to identify what reusable resources would help:

  • Scripts: Code that gets rewritten repeatedly → scripts/
  • References: Documentation Claude should consult → references/
  • Assets: Files used in output → assets/
  • Examples: Working code to copy → examples/

Step 3: Create Structure

mkdir -p plugin-name/skills/skill-name/{references,examples,scripts}
touch plugin-name/skills/skill-name/SKILL.md

Only create directories you actually need.

Step 4: Write Content

  1. Start with reusable resources (scripts/, references/, assets/)
  2. Write SKILL.md:

- Frontmatter with third-person description and trigger phrases - Lean body (1,500-2,000 words) in imperative form - Reference supporting files explicitly

Step 5: Validate

  • SKILL.md has valid YAML frontmatter with name and description
  • Description uses third person ("This skill should be used when...")
  • Description includes specific trigger phrases (minimum 5 distinct phrases)
  • Description includes common synonyms and informal terms users actually type
  • Description includes problem-oriented phrases, not just feature names
  • Body uses imperative/infinitive form (not second person)
  • Body is under 3,000 words (ideally 1,500-2,000; detailed content in references/)
  • No duplicate tables, lists, or content blocks within the same SKILL.md
  • No duplicated information between SKILL.md and references/
  • All referenced files actually exist
  • Examples are complete and working
  • Scripts are executable

Step 6: Iterate

After using the skill on real tasks:

  1. Notice struggles or inefficiencies
  2. Strengthen trigger phrases in description
  3. Move long sections from SKILL.md to references/
  4. Add missing examples or scripts
  5. Clarify ambiguous instructions

Common Mistakes

MistakeFix
Weak trigger description ("Provides guidance")Add specific phrases: "create X", "configure Y"
Missing synonyms in descriptionAdd informal terms users actually type: "slow report" not just "performance optimization"
Duplicate table/block within same SKILL.mdSearch the file before adding any table — never repeat the same content block
Everything in one SKILL.md (8,000 words)Move details to references/, keep SKILL.md under 2,000
Second person ("You should...")Imperative form ("Configure the server...")
Missing resource referencesAdd "Additional Resources" section listing references/ and examples/
Duplicated content across filesPut info in SKILL.md OR references/, never both
Same block copied into multiple SKILL.md filesCross-cutting content (platform guidelines, etc.) belongs in the agent body or one shared reference — NEVER copied into each skill
Wrong person in descriptionThird person: "This skill should be used when..."
Description too long (>500 chars)Condense description; use plugin.json keywords for breadth
Agent body duplicates skill contentAgent is a lean orchestrator — domain knowledge belongs in skills only
Skill body too large (>3,000 words)Split into core SKILL.md + references/ files

Auto-Discovery

Claude Code automatically discovers skills:

  1. Scans skills/ directory for subdirectories containing SKILL.md
  2. Loads metadata (name + description) at startup
  3. Loads SKILL.md body when skill triggers based on description match
  4. Loads references/examples when Claude determines they're needed

No configuration needed - just place SKILL.md in the right location.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.85%
按下载量换算108

Claude

31.25%
按下载量换算99

Cursor

16.75%
按下载量换算53

Gemini CLI

9.89%
按下载量换算31

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills