技能 create-skill
🛠️

create-skill

安全 ⚙️ 外部命令🌐 网络访问

Create New Agent Skills

也可从以下获取: Cygnusfear,AaronAbuUsama,0xmsc

Creating Agent Skills requires understanding a specific file format and directory structure. This skill provides step-by-step guidance for building skills that work with Claude, Codex, and Claude Code.

支持: Claude Codex Code(CC)
📊 71 充足
1

下载技能 ZIP

2

在 Claude 中上传

前往 设置 → 功能 → 技能 → 上传技能

3

开启并开始使用

测试它

正在使用“create-skill”。 Create a skill called 'pdf-helper' that extracts text from PDF files.

预期结果:

  • Created skill structure: pdf-helper/SKILL.md
  • Added frontmatter with name and description
  • Included optional references/ folder for detailed documentation
  • Skill ready for activation when user needs PDF help

正在使用“create-skill”。 Help me understand the skill naming rules.

预期结果:

  • Skill names must be 1-64 characters
  • Only lowercase letters, numbers, and hyphens are allowed
  • Cannot start or end with a hyphen
  • Cannot contain consecutive hyphens
  • Must match the parent directory name exactly

正在使用“create-skill”。 What goes in the scripts folder?

预期结果:

  • The scripts/ folder contains executable code
  • Supported languages depend on the agent implementation
  • Common options include Python, Bash, and JavaScript
  • Scripts should be self-contained or document dependencies
  • Include helpful error messages and handle edge cases

安全审计

安全
v3 • 1/16/2026

This skill is purely documentation containing instructions and reference guides for creating Agent Skills. No executable code, no network access, no file system access, no environment variable access, and no command execution capabilities. The 146 static findings are all false positives triggered by markdown documentation patterns (code formatting backticks, documentation URLs, and text patterns).

4
已扫描文件
520
分析行数
2
发现项
3
审计总数

风险因素

⚙️ 外部命令 (99)
references/specification.md:10 references/specification.md:12-15 references/specification.md:15-18 references/specification.md:18 references/specification.md:18 references/specification.md:18-23 references/specification.md:23-27 references/specification.md:27-32 references/specification.md:32-36 references/specification.md:36-45 references/specification.md:45-49 references/specification.md:49-50 references/specification.md:50-51 references/specification.md:51-52 references/specification.md:52-53 references/specification.md:53-54 references/specification.md:54-56 references/specification.md:56-58 references/specification.md:58-60 references/specification.md:60 references/specification.md:60-61 references/specification.md:61-62 references/specification.md:62-66 references/specification.md:66-68 references/specification.md:68-69 references/specification.md:69-71 references/specification.md:71-72 references/specification.md:72-74 references/specification.md:74-77 references/specification.md:77-79 references/specification.md:79-80 references/specification.md:80-82 references/specification.md:82-83 references/specification.md:83-85 references/specification.md:85-87 references/specification.md:87-89 references/specification.md:89-95 references/specification.md:95-97 references/specification.md:97-100 references/specification.md:100-102 references/specification.md:102-104 references/specification.md:104-106 references/specification.md:106-111 references/specification.md:111-113 references/specification.md:113-115 references/specification.md:115-117 references/specification.md:117-123 references/specification.md:123-125 references/specification.md:125-126 references/specification.md:126-128 references/specification.md:128-131 references/specification.md:131-134 references/specification.md:134-136 references/specification.md:136-142 references/specification.md:142-146 references/specification.md:146-148 references/specification.md:148-150 references/specification.md:150-155 references/specification.md:155-157 references/specification.md:157-168 references/specification.md:168-184 references/specification.md:184-185 references/specification.md:185-186 references/specification.md:186 references/specification.md:186-201 references/specification.md:201 references/specification.md:201-202 references/specification.md:202-203 references/specification.md:203 references/specification.md:203 references/specification.md:203-205 references/specification.md:205-211 references/specification.md:211-216 references/specification.md:216-218 references/specification.md:218-222 references/specification.md:222 references/what-are-skills.md:6 references/what-are-skills.md:6 references/what-are-skills.md:6 references/what-are-skills.md:8-14 references/what-are-skills.md:14-22 references/what-are-skills.md:22-30 references/what-are-skills.md:30-32 references/what-are-skills.md:32-48 references/what-are-skills.md:48-50 references/what-are-skills.md:50-52 references/what-are-skills.md:52-53 references/what-are-skills.md:53-59 SKILL.md:9-15 SKILL.md:15-18 SKILL.md:18 SKILL.md:18-21 SKILL.md:21 SKILL.md:21-24 SKILL.md:24 SKILL.md:24 SKILL.md:24 SKILL.md:24-25 SKILL.md:25-27
🌐 网络访问 (3)
审计者: claude 查看审计历史 →

质量评分

41
架构
100
可维护性
87
内容
24
社区
100
安全
91
规范符合性

你能构建什么

Build New Skills

Create well-structured Agent Skills following the official specification format and best practices.

Write Reference Docs

Structure reference materials in separate files for efficient context management in skills.

Extend AI Capabilities

Create custom skills that add specialized knowledge and workflows to AI agents.

试试这些提示

Basic Skill Creation
Create a new skill called [skill-name] in the [directory] folder. The skill should [description of what it does]. Follow the Agent Skills format specification.
Add Reference Files
Add a reference document to the [skill-name] skill that covers [topic]. The reference should explain [key concepts] with examples.
Validate Skill Structure
Verify that the [skill-name] skill follows the correct format. Check the frontmatter, directory structure, and instruction quality.
Progressive Disclosure
Restructure [skill-name] to use progressive disclosure. Move detailed reference material to separate files and keep main instructions concise.

最佳实践

  • Keep SKILL.md under 500 lines for efficient context loading
  • Include specific keywords in descriptions to help agents identify relevant tasks
  • Use relative paths for file references and keep them one level deep
  • Match the skill directory name exactly to the frontmatter name field

避免

  • Using uppercase letters or consecutive hyphens in skill names
  • Putting all documentation in SKILL.md without using references/ folder
  • Writing vague descriptions that do not explain when to use the skill
  • Leaving optional directories (scripts/, references/, assets/) empty

常见问题

What is the minimum required file for a skill?
Every skill needs at minimum a SKILL.md file with YAML frontmatter containing name and description fields.
What characters are allowed in skill names?
Skill names must use only lowercase letters, numbers, and hyphens. They cannot start or end with a hyphen or contain consecutive hyphens.
How do I reference external files in my skill?
Use relative paths from the skill root. Place referenced files in scripts/, references/, or assets/ folders and reference them with paths like references/FILE.md.
Is my data safe when using this skill?
Yes. This skill only provides documentation guidance. It does not read, write, or transmit any files or data.
Why is my skill not appearing in the skill list?
Verify that the skill directory name matches the name field in SKILL.md frontmatter exactly. Check that frontmatter uses valid YAML format.
How is this skill different from other skills?
This is a meta-skill that teaches how to create skills. Other skills perform specific tasks. This skill provides instructions rather than executing actions.

开发者详情

文件结构