Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

skill-creator技能创建器

Agent Skill

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

总安装

374

周安装

15

GitHub Stars

公开资料未说明

下载量

121
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add maxritter/claude-codepro --skill "skill-creator"

简介

发现并安装 AI 代理的技能,支持技能创建与管理。

  • 适用于多宿主环境中的技能管理与集成需求。skill-creator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 npx 命令从 GitHub 安装,支持 Codex、Claude 等平台。
  • 注意权限范围和维护状态,避免自动执行未授权操作。
  • 建议结合原始仓库了解技能生成流程和模板规范。

SKILL.md

Skill Creator

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

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

Core Principles

Concise is Key

The context window is shared with system prompt, conversation history, and user requests.

Default assumption: Claude is already very smart. Only add context Claude doesn't already have. Challenge each piece: "Does Claude really need this?" and "Does this justify its token cost?"

Prefer concise examples over verbose explanations.

Set Appropriate Degrees of Freedom

Match specificity to task fragility:

Freedom LevelWhen to UseFormat
HighMultiple approaches valid, context-dependentText instructions
MediumPreferred pattern exists, some variation OKPseudocode/scripts with params
LowFragile operations, consistency criticalSpecific scripts, few params

Skill Anatomy

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

SKILL.md Structure

  • Frontmatter (YAML): name and description fields - these determine when the skill triggers
  • Body (Markdown): Instructions loaded AFTER the skill triggers

Bundled Resources

TypePurposeWhen to Include
scripts/Deterministic, reusable codeSame code rewritten repeatedly
references/Documentation loaded as neededLarge docs Claude should reference while working
assets/Files used in output (not loaded into context)Templates, images, boilerplate

Do NOT include: README.md, CHANGELOG.md, INSTALLATION_GUIDE.md, or other auxiliary docs.

Progressive Disclosure

Three-level loading system:

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

Pattern: Domain-specific organization

bigquery-skill/
├── SKILL.md (overview + navigation)
└── references/
    ├── finance.md
    ├── sales.md
    └── product.md

Claude loads only the relevant reference file.

Skill Creation Process

Step 1: Understand with Examples

Ask clarifying questions:

  • "What functionality should this skill support?"
  • "Can you give examples of how it would be used?"
  • "What would trigger this skill?"

Step 2: Plan Reusable Contents

For each example, identify:

  1. What scripts would help (repeated code)
  2. What references would help (schemas, docs)
  3. What assets would help (templates, boilerplate)

Step 3: Create the Skill

Create the skill directory in .claude/skills/:

mkdir -p .claude/skills/my-skill-name

Naming Convention:

  • Standard skills: plan, implement, verify, standards-* (overwritten on install)
  • Custom skills: Any other name (preserved during updates)

For project-specific skills, use a unique name that doesn't match standard patterns.

Step 4: Write SKILL.md

Frontmatter

---
name: skill-name
description: What the skill does AND when to use it. Include all trigger contexts here since the body is only loaded after triggering.
---

Description guidelines:

  • Include both what it does AND specific triggers/contexts
  • All "when to use" info goes here, not in the body
  • Example: "PDF processing for rotation, merging, text extraction. Use when working with.pdf files for editing, combining, or extracting content."

Body

Write concise instructions:

  • Use imperative/infinitive form
  • Keep under 500 lines
  • Reference bundled resources with clear "when to read" guidance
  • Move detailed docs to references/ files

Step 5: Test and Iterate

  1. Use the skill on real tasks
  2. Notice struggles or inefficiencies
  3. Update SKILL.md or bundled resources
  4. Test again

Writing Guidelines

Good Patterns

## Quick Start

Extract text with pdfplumber:
[concise code example]

## Advanced Features

- **Form filling**: See [references/forms.md](references/forms.md)
- **API reference**: See [references/api.md](references/api.md)

Avoid

  • Deeply nested references (keep one level deep)
  • Duplicating info between SKILL.md and references
  • Verbose explanations when examples suffice
  • "When to Use" sections in the body (put in description)

Checklist

Before finalizing:

  • Frontmatter has name and comprehensive description
  • Description includes trigger contexts
  • Body is under 500 lines
  • References exist for large documentation
  • Scripts are tested and working
  • No unnecessary auxiliary files (README, CHANGELOG, etc.)
  • Skill name follows convention (custom = unique name, standard = standards-*)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

windsurf

29.36%
按下载量换算36

OpenCode

21.6%
按下载量换算26

Codex

17.38%
按下载量换算21

Claude Code

13.05%
按下载量换算16

Antigravity

8.08%
按下载量换算10

Gemini CLI

3.02%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills