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

skill-creator技能创建器

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

9

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cdeistopened/skill-stack --skill skill-creator

简介

创建可扩展 Claude 能力的模块化技能包,提供领域专用工作流。

  • 适用于需要特殊工具集成、知识库扩展和工作流定制的场景。
  • 使用时需定义目标、编写技能文件和运行测试验证效果。
  • 通过 GitHub 安装,支持主流宿主环境,建议建立技能评估标准。
  • skill-creator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Skill Creator

Create effective skills that extend Claude's capabilities with specialized knowledge, workflows, and tools.

About Skills

Skills are modular, self-contained packages that extend Claude's capabilities by providing specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific domains or tasks - they transform Claude from a general-purpose agent into a specialized agent equipped with procedural knowledge.

What Skills Provide

  1. Specialized workflows - Multi-step procedures for specific domains
  2. Tool integrations - Instructions for working with specific file formats or APIs
  3. Domain expertise - Company-specific knowledge, schemas, business logic
  4. Bundled resources - Scripts, references, and assets for complex tasks

Anatomy of a Skill

Every skill consists of a required SKILL.md file and optional bundled resources:

skill-name/
├── SKILL.md (required)
│   ├── YAML frontmatter metadata (required)
│   │   ├── name: (required)
│   │   └── description: (required)
│   └── Markdown instructions (required)
└── Bundled Resources (optional)
    ├── scripts/          - Executable code (Python/Bash/etc.)
    ├── references/       - Documentation loaded into context as needed
    └── assets/           - Files used in output (templates, icons, fonts)

Bundled Resources

Scripts (scripts/)

Executable code for tasks requiring deterministic reliability or repeated execution.

  • When to include: Same code rewritten repeatedly, or deterministic reliability needed
  • Example: scripts/rotate_pdf.py for PDF rotation tasks
  • Benefits: Token efficient, deterministic, may execute without loading into context

References (references/)

Documentation and reference material loaded as needed into context.

  • When to include: Documentation Claude should reference while working
  • Examples: Database schemas, API docs, domain knowledge, company policies
  • Best practice: If >10k words, include grep search patterns in SKILL.md
  • Avoid duplication: Information lives in SKILL.md OR references, not both

Assets (assets/)

Files used within output Claude produces (not loaded into context).

  • When to include: Files needed in final output
  • Examples: Templates, images, icons, boilerplate code, fonts
  • Benefits: Separates output resources from documentation

Progressive Disclosure Design

Skills use a three-level loading system to manage context efficiently:

  1. Metadata (name + description) - Always in context (~100 words)
  2. SKILL.md body - When skill triggers (<5k words)
  3. Bundled resources - As needed by Claude (Unlimited*)

*Unlimited because scripts can execute without reading into context.


Skill Creation Process

Follow these steps in order, skipping only if clearly not applicable.

Step 1: Understand the Skill with Concrete Examples

Goal: Clearly understand how the skill will be used.

Ask questions like:

  • "What functionality should this skill support?"
  • "Can you give examples of how this skill would be used?"
  • "What would a user say that should trigger this skill?"

Conclude when: You have a clear sense of the functionality the skill should support.

Step 2: Plan the Reusable Skill Contents

Goal: Identify what scripts, references, and assets would be helpful.

For each example use case:

  1. Consider how to execute it from scratch
  2. Identify what would be helpful when executing repeatedly

Example analysis:

SkillUse CaseReusable Resource
pdf-editor"Rotate this PDF"scripts/rotate_pdf.py
frontend-builder"Build me a todo app"assets/hello-world/ template
big-query"How many users logged in?"references/schema.md documentation

Conclude with: A list of reusable resources to include (scripts, references, assets).

Step 3: Initialize the Skill

Run the initialization script to create the skill structure:

scripts/init_skill.py <skill-name> --path <output-directory>

The script creates:

  • Skill directory at specified path
  • SKILL.md template with proper frontmatter and TODO placeholders
  • Example resource directories: scripts/, references/, assets/
  • Example files that can be customized or deleted

Skip this step if: Updating an existing skill (proceed to Step 4).

Step 4: Edit the Skill

Remember: The skill is for another Claude instance to use. Include information that would be beneficial and non-obvious.

Start with Reusable Contents

  1. Create the identified scripts, references, and assets
  2. Delete example files/directories not needed
  3. Request user input if needed (e.g., brand assets, documentation)

Update SKILL.md

Writing Style: Use imperative/infinitive form (verb-first instructions), not second person.

  • ✅ "To accomplish X, do Y"
  • ❌ "You should do X"

Answer these questions:

  1. What is the purpose of the skill? (few sentences)
  2. When should the skill be used?
  3. How should Claude use the skill? (reference all bundled resources)

Metadata Quality: The name and description in YAML frontmatter determine when Claude uses the skill. Be specific about what the skill does and when to use it. Use third-person:

  • ✅ "This skill should be used when..."
  • ❌ "Use this skill when..."

Step 5: Package the Skill

Package into a distributable zip file:

scripts/package_skill.py <path/to/skill-folder>

Optional output directory:

scripts/package_skill.py <path/to/skill-folder> ./dist

The script will:

  1. Validate - Check YAML frontmatter, naming conventions, structure
  2. Package - Create zip file with proper directory structure

If validation fails, fix errors and run again.

Step 6: Iterate

After testing the skill:

  1. Use the skill on real tasks
  2. Notice struggles or inefficiencies
  3. Identify how SKILL.md or resources should be updated
  4. Implement changes and test again

SKILL.md Template

---
name: skill-name
description: Brief description of what this skill does and when to use it. Use third-person (e.g., "This skill should be used when..."). Be specific about triggers and use cases.
---

# Skill Name

[One paragraph explaining the skill's purpose and core philosophy]

## Purpose

[What this skill accomplishes]

## When to Use This Skill

- [Trigger 1]
- [Trigger 2]
- [Trigger 3]

**Not for:** [What this skill should NOT be used for]

---

## Workflow

### Step 1: [First Step]
[Instructions]

### Step 2: [Second Step]
[Instructions]

[Continue as needed]

---

## Bundled Resources

- `scripts/[name].py` - [What it does]
- `references/[name].md` - [What it contains]
- `assets/[name]/` - [What it includes]

---

## Related Skills

- **skill-name** - [How it relates]

---

*[Brief closing note or key reminder]*

Best Practices

SKILL.md Guidelines

  • Keep it focused: One clear purpose per skill
  • Be specific about triggers: When should this skill activate?
  • Use imperative voice: "To do X, do Y" not "You should do X"
  • Reference all resources: Explain how to use bundled scripts/references/assets
  • Include examples: Show expected inputs and outputs
  • Add quality checks: Checklists for validating output

Frontmatter Best Practices

  • name: Lowercase, hyphenated (e.g., anti-ai-writing)
  • description: 1-3 sentences, third-person, specific triggers

- ✅ "This skill transforms raw transcripts into polished documents. Use when processing podcast or interview recordings." - ❌ "A transcript processing skill"

Resource Organization

  • scripts/: Executable code only, no documentation
  • references/: Documentation only, loaded as needed
  • assets/: Output resources only, never loaded into context

Context Management

  • Keep SKILL.md under 5k words
  • Move detailed reference material to references/
  • Include grep patterns for large reference files
  • Avoid duplication between SKILL.md and references

Common Patterns

Workflow Skills

## Workflow

### Phase 1: [Name]
**Goal:** [What this phase accomplishes]

#### Step 1: [Action]
[Instructions]

#### Step 2: [Action]
[Instructions]

### Phase 2: [Name]
[Continue...]

Reference Skills (Knowledge Base)

## Key Concepts

### [Concept 1]
[Explanation]

### [Concept 2]
[Explanation]

## When to Apply

[Guidance on when to use this knowledge]

Tool Integration Skills

## Setup

[Prerequisites and installation]

## Usage

### [Command/Function 1]

[Example command]


[Explanation]

### [Command/Function 2]

[Continue...]

Bundled Scripts

This skill includes helper scripts:

  • scripts/init_skill.py - Initialize new skill with template structure
  • scripts/package_skill.py - Validate and package skill for distribution
  • scripts/quick_validate.py - Quick validation check

Usage

# Initialize new skill
./scripts/init_skill.py my-new-skill --path ./skills/

# Package for distribution
./scripts/package_skill.py ./skills/my-new-skill

# Quick validation
./scripts/quick_validate.py ./skills/my-new-skill

Related Skills

  • voice-analyzer - Create voice style skills
  • anti-ai-writing - Example of a well-structured skill

*Skills are modular, self-contained, and focused. One clear purpose, specific triggers, and all resources referenced in SKILL.md.*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35%
按下载量换算22

Claude

28.95%
按下载量换算18

Cursor

19.55%
按下载量换算12

Gemini CLI

8.91%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills