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

creating-skills创造技能

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

2

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jesseotremblay/claude-skills --skill creating-skills

简介

creating-skills 用于查找、检索和筛选相关信息,支持快速定位候选结果。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中根据关键词匹配任务线索。
  • 通过 GitHub 安装,建议查看原始文档了解数据来源与更新机制。
  • 使用前需确认是否具备联网权限及数据缓存策略。
  • 维护状态不明时应限制调用频次,避免影响宿主系统性能。

SKILL.md

Creating Skills

This skill helps you create new Claude Agent Skills following Anthropic's official specifications and best practices.

This skill includes comprehensive resources:

  • BEST_PRACTICES.md: Detailed authoring guidelines
  • REFERENCE.md: Technical specifications and detailed examples
  • README.md: Overview and quick start guide
  • templates/: Ready-to-use skill templates
  • examples/: Sample skills for reference
  • scripts/validate_skill.py: Skill validation tool

When to Use This Skill

Invoke this skill when the user:

  • Asks to create a new Claude skill
  • Wants to generate a skill template
  • Needs help structuring a custom capability
  • Requests skill scaffolding or boilerplate
  • Wants to validate an existing skill

Skill Creation Workflow

Step 1: Gather Requirements

Ask the user for:

  1. Skill name: What should the skill be called?

- Lowercase letters, numbers, hyphens only - Maximum 64 characters - Use gerund form (e.g., "processing-data", "analyzing-logs") - Avoid vague names like "helper" or "utils"

  1. Skill description: What does the skill do and when should it be used?

- Maximum 1024 characters - Write in third person - Include specific triggers - Format: "[What it does]. Use when [conditions]."

  1. Skill complexity: Simple or complex?

- Simple: Single SKILL.md file (under 300 lines) - Complex: SKILL.md + REFERENCE.md + FORMS.md + scripts

  1. Core functionality: What are the main tasks?

Step 2: Choose and Copy Template

Simple Template (for focused, single-file skills):

cp -r templates/simple-skill-template/ ../your-skill-name/

Complex Template (for multi-file skills with extensive docs):

cp -r templates/complex-skill-template/ ../your-skill-name/

See REFERENCE.md section "Template Selection Guide" for detailed criteria.

Step 3: Customize the Template

Edit SKILL.md frontmatter:

---
name: your-skill-name
description: What it does. Use when triggers.
---

Fill in required sections:

  1. When to Use This Skill
  2. Core functionality with steps
  3. Common patterns
  4. Error handling
  5. Examples
  6. Validation checklist

For Complex Skills:

  • Edit REFERENCE.md for technical details
  • Edit FORMS.md for output templates
  • Create scripts for automation

See REFERENCE.md section "Customization Guide" for detailed instructions.

Step 4: Validate the Skill

Run the validation script:

python scripts/validate_skill.py ../your-skill-name/SKILL.md --strict

The validator checks:

  • YAML frontmatter syntax and fields
  • Name format (lowercase-with-hyphens, ≤64 chars, gerund form)
  • Description (≤1024 chars, includes triggers)
  • No reserved words ("anthropic", "claude")
  • File structure and references
  • Best practices compliance

See REFERENCE.md section "Validation Tool" for detailed usage.

Step 5: Review Best Practices

Before finalizing:

cat BEST_PRACTICES.md

Key principles:

  • Conciseness: Only include non-standard information
  • Progressive Disclosure: Keep SKILL.md under 500 lines
  • Freedom Levels: Match specificity to task fragility
  • Consistent Terminology: Use same terms throughout
  • Validation Steps: Include checklists for complex workflows

See BEST_PRACTICES.md for complete guidelines.

Frontmatter Requirements

Every SKILL.md must start with:

---
name: skill-name
description: Clear description. Use when triggers.
---

Quick Rules:

  • name: lowercase-with-hyphens, ≤64 chars, gerund form
  • description: ≤1024 chars, includes "Use when..."
  • No XML tags or reserved words

See REFERENCE.md section "Frontmatter Specifications" for complete rules and examples.

Progressive Disclosure

Skills load in three levels:

Level 1 - Metadata (~100 tokens, always loaded):

  • YAML frontmatter for skill discovery

Level 2 - Instructions (<5,000 tokens, triggered):

  • Main SKILL.md content

Level 3 - Resources (on-demand):

  • REFERENCE.md, FORMS.md, scripts
  • Load only when referenced

Example:

## Basic Processing
[Instructions for common case]

## Advanced Techniques
See REFERENCE.md section "Advanced Methods" for details.

Example Skills

Simple Skill: Code Reviewer (examples/simple-skill-example/)

  • Single SKILL.md file
  • Clear workflow with checklists
  • ~350 lines

Complex Skill: Data Analyzer (examples/complex-skill-example/)

  • SKILL.md + REFERENCE.md + FORMS.md + scripts
  • Statistical methods in REFERENCE.md
  • Report templates in FORMS.md

View examples:

cat examples/simple-skill-example/SKILL.md
cat examples/complex-skill-example/SKILL.md

Quick Start

1. Choose template based on complexity:

  • Simple: Single focused task, <300 lines
  • Complex: Multiple features, needs extensive docs

2. Copy template:

cp -r templates/simple-skill-template/ ../my-skill/

3. Edit frontmatter and fill sections:

  • Replace all [placeholders]
  • Add specific examples
  • Create validation checklist

4. Validate:

python scripts/validate_skill.py ../my-skill/SKILL.md --strict

5. Review BEST_PRACTICES.md and test

Validation Checklist

Before using a new skill:

Frontmatter:

  • Valid name (gerund form, ≤64 chars)
  • Description with triggers (≤1024 chars)
  • No prohibited content

Content:

  • "When to Use This Skill" section
  • Core functionality with steps
  • Examples included
  • Validation checklist
  • Concise (no unnecessary info)

Structure:

  • Progressive disclosure applied
  • SKILL.md under 500 lines (or split)
  • Referenced files exist

Testing:

  • Passed validator
  • Functionally tested
  • Works as expected

Common Patterns

Pattern 1: Simple Single-File Skill

  • Use simple-skill-template
  • Focus on one capability
  • Include 2-3 examples
  • Add validation checklist

Pattern 2: Complex Multi-File Skill

  • Use complex-skill-template
  • SKILL.md: High-level workflow with references
  • REFERENCE.md: Technical details, algorithms
  • FORMS.md: Output templates
  • scripts/: Automation utilities

Pattern 3: Skill with Automation

  • Include scripts/ directory
  • Document script usage in SKILL.md
  • Scripts execute without loading to context
  • Use only pre-installed packages

Runtime Constraints

Remember when designing skills:

  • ❌ No network access or external API calls
  • ❌ No runtime package installation
  • ✅ Only pre-installed packages
  • ✅ Scripts execute via bash without context loading
  • ✅ Progressive disclosure minimizes context usage

Error Handling

Common Issue: Validation Fails

  • Check YAML syntax
  • Verify name format (lowercase-with-hyphens)
  • Ensure description includes "Use when..."
  • Remove any reserved words

Common Issue: Skill Too Long

  • Split into SKILL.md + REFERENCE.md
  • Move technical details to REFERENCE.md
  • Move templates to FORMS.md
  • Keep SKILL.md under 500 lines

Common Issue: References Not Found

  • Ensure referenced files exist
  • Use relative paths
  • Check file names match exactly

Additional Resources

Internal:

  • REFERENCE.md: Technical specs, detailed examples, troubleshooting
  • BEST_PRACTICES.md: Complete authoring guidelines
  • README.md: Quick start and overview
  • templates/: Ready-to-use templates
  • examples/: Working sample skills

External:

Getting Help

Review templates:

cat templates/simple-skill-template/SKILL.md
cat templates/complex-skill-template/SKILL.md

Study examples:

cat examples/simple-skill-example/SKILL.md
cat examples/complex-skill-example/SKILL.md

Read best practices:

cat BEST_PRACTICES.md

Check technical specs:

cat REFERENCE.md

Validate your skill:

python scripts/validate_skill.py ../your-skill/SKILL.md --strict

For detailed technical specifications, troubleshooting, and comprehensive examples, see REFERENCE.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.6%
按下载量换算24

Claude

28.53%
按下载量换算20

Cursor

20.97%
按下载量换算15

Gemini CLI

9.82%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills