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

skill-creator技能创建器

Agent Skill

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

总安装

2,280

周安装

95

GitHub Stars

76

下载量

760
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill skill-creator

简介

skill-creator 是一个元技能,用于指导创建高质量、有效的技能。

  • 适用于需要构建新技能、更新现有技能或设计特定领域工作流程的场景。
  • 提供模板、最佳实践和结构指南,帮助增强 Claude 的专业知识、工作流或工具集成能力。
  • 安装方式:通过 npx skills add 命令从 GitHub 仓库安装。
  • 注意权限范围和维护状态,确认是否会触发联网、命令执行或文件读写操作。

SKILL.md

Skill Creator

Purpose

A meta-skill that guides the creation of high-quality, effective skills. Provides templates, best practices, and structural guidelines for building skills that enhance Claude's capabilities with specialized knowledge, workflows, or tool integrations.

When to Use

  • User wants to create a new skill
  • User wants to update or improve an existing skill
  • User asks how to structure skill documentation
  • Need to design a skill for a specific domain or workflow
  • Want to ensure skill follows best practices

Core Skill Structure

Required Components

Every skill must have these elements:

  1. Frontmatter --- name: skill-name description: One-line description when to use this skill ---
  2. Title & Purpose # Skill Name ## Purpose Clear, concise statement of what this skill does
  3. When to Use ## When to Use - Specific trigger 1 - Specific trigger 2 - Context where this helps
  4. Core Capabilities ## Core Capabilities ### Domain Expertise - Key knowledge area 1 - Key knowledge area 2 ### Tools & Methods - Specific techniques - Frameworks used

Optional but Recommended Components

  1. Workflow ## Workflow 1. Step 1: What to do first 2. Step 2: Next action 3. Step 3: Final deliverable
  2. Best Practices ## Best Practices - Do this - Avoid that - Remember this
  3. Examples ## Examples ### Example 1: Common Use Case **Input**: User request **Approach**: How to handle **Output**: Expected result
  4. Anti-Patterns ## Anti-Patterns ❌ **Don't**: Bad practice ✅ **Do**: Good alternative

Skill Creation Workflow

Step 1: Define Scope

Ask yourself:

  • What problem does this skill solve?
  • Who will use it?
  • What triggers its use?
  • What's the expected outcome?

Step 2: Identify Core Knowledge

Document:

  • Domain-specific terminology
  • Key concepts and principles
  • Common patterns in this domain
  • Tools and technologies involved

Step 3: Structure the Workflow

Map out:

  • Entry conditions
  • Step-by-step process
  • Decision points
  • Exit criteria and deliverables

Step 4: Add Practical Elements

Include:

  • Real-world examples
  • Common pitfalls to avoid
  • Best practices from the field
  • Quality criteria

Step 5: Write Clear Triggers

Make "When to Use" specific:

  • ✅ "User needs SQL query optimization for PostgreSQL databases"
  • ❌ "User needs database help"
  • ✅ "Debugging production outages in distributed systems"
  • ❌ "Fixing bugs"

Skill Quality Criteria

Clarity

  • Name is self-explanatory
  • Description clearly states when to use
  • Purpose is stated in 1-2 sentences
  • No jargon without explanation

Completeness

  • All required sections present
  • Workflow is actionable
  • Examples cover common cases
  • Edge cases addressed

Specificity

  • Triggers are concrete
  • Steps are detailed enough to follow
  • Tools/methods are named explicitly
  • Success criteria defined

Usability

  • Easy to scan and navigate
  • Consistent formatting
  • Logical section ordering
  • Cross-references where helpful

Skill Templates

Technical Domain Skill Template

---
name: domain-expert
description: Use when user needs [specific technical task] in [technology/domain]
---

# Domain Expert

## Purpose

Expert in [domain] specializing in [specific areas]. Helps with [key problems solved].

## When to Use

- User needs [specific task 1]
- Working with [technology] and needs [help type]
- Troubleshooting [specific problem type]
- Designing [architectural element]

## Core Capabilities

### [Domain] Expertise
- [Technology 1] - [version/specifics]
- [Technology 2] - [what aspects]
- [Pattern/practice] - [when/how]

### Key Techniques
- **[Technique 1]**: [What it solves]
- **[Technique 2]**: [When to use]
- **[Technique 3]**: [How it helps]

## Workflow

1. **Understand Requirements**
   - Clarify [specific aspects]
   - Identify [constraints]

2. **Apply [Domain] Patterns**
   - Use [pattern 1] for [scenario]
   - Consider [trade-off]

3. **Implement Solution**
   - Follow [best practice]
   - Ensure [quality criteria]

4. **Validate**
   - Test [aspects]
   - Verify [requirements met]

## Best Practices

- **[Practice 1]**: [Reasoning]
- **[Practice 2]**: [Benefit]
- **[Practice 3]**: [Why important]

## Common Patterns

### [Pattern 1]
**When**: [Scenario]
**How**: [Implementation approach]
**Why**: [Benefits]

### [Pattern 2]
**When**: [Scenario]
**How**: [Implementation approach]
**Why**: [Benefits]

## Anti-Patterns

❌ **Don't**: [Bad practice]
   - Why it fails: [Reason]
   - Better approach: [Alternative]

❌ **Avoid**: [Common mistake]
   - Problem: [What goes wrong]
   - Instead: [Correct way]

## Examples

### Example 1: [Common Scenario]
**Context**: [Situation]
**Approach**: [Solution steps]
**Result**: [Outcome]

## Tools & Technologies

- **[Tool 1]**: [Version] - [Use for what]
- **[Tool 2]**: [Version] - [Use for what]
- **[Framework]**: [Version] - [Key features used]

Process/Workflow Skill Template

---
name: process-specialist
description: Use when user needs [specific process/workflow] for [outcome]
---

# Process Specialist

## Purpose

Guides [specific process] to achieve [specific outcome]. Ensures [quality aspects] through [methodology].

## When to Use

- Need to [execute process]
- Want to ensure [quality outcome]
- Working on [scenario requiring this process]

## Core Process

### Phase 1: [Name]
**Goal**: [What to achieve]

Steps:
1. [Action 1]: [Details]
2. [Action 2]: [Details]
3. [Action 3]: [Details]

**Outputs**: [What you have after this phase]

### Phase 2: [Name]
**Goal**: [What to achieve]

Steps:
1. [Action 1]: [Details]
2. [Action 2]: [Details]

**Outputs**: [What you have after this phase]

### Phase 3: [Name]
**Goal**: [What to achieve]

Steps:
1. [Action 1]: [Details]
2. [Action 2]: [Details]

**Deliverable**: [Final output]

## Decision Points

### When to [Decision]
- If [condition], then [choice A]
- If [condition], then [choice B]

## Quality Gates

After each phase, verify:
- [ ] [Criterion 1]
- [ ] [Criterion 2]
- [ ] [Criterion 3]

## Best Practices

- **[Practice]**: [Why it matters]
- **[Practice]**: [Impact on quality]

## Common Pitfalls

- **Pitfall**: [What people do wrong]
  - **Impact**: [What happens]
  - **Solution**: [How to avoid]

Writing Tips

Be Specific

❌ "Use when working with databases" ✅ "Use when optimizing SQL queries for PostgreSQL 14+ production databases"

Be Actionable

❌ "Think about security" ✅ "Run OWASP ZAP scan and review all HIGH severity findings"

Be Structured

Use consistent heading levels:

  • ## for major sections
  • ### for subsections
  • #### for detailed breakdowns

Use Visual Indicators

  • ✅ for good practices
  • ❌ for anti-patterns
  • 🔍 for investigation steps
  • ⚠️ for warnings
  • 💡 for tips

Include Context

Don't just list what to do—explain why:

## Instead of:
- Use connection pooling

## Write:
- **Use connection pooling** (pg-pool for PostgreSQL)
  - Reduces connection overhead by 80%
  - Critical for applications with >100 concurrent users
  - Configure pool size = (core count × 2) + effective_spindle_count

Skill Maintenance

When to Update

  • New version of core technology released
  • Better practices emerge in the field
  • User feedback reveals gaps
  • Related skills are created (cross-reference)

Version Control

Consider adding to frontmatter:

---
name: skill-name
description: One-line description
---

Skill Integration

Cross-References

Link to related skills:

## Related Skills
- Use [[debugger-skill]] when issues arise
- Combine with [[performance-engineer-skill]] for optimization
- Precede with [[architect-reviewer-skill]] for design validation

Skill Composition

Complex workflows can chain skills:

## Workflow
1. Use [[requirement-analyst]] to gather needs
2. Apply this skill for implementation
3. Use [[code-reviewer]] for quality assurance
4. Use [[deployment-engineer]] to ship

Examples

Example 1: Creating a Python Pro Skill

Context: Need a skill for advanced Python development

Process:

  1. Define scope: Python 3.11+ with focus on FastAPI and type safety
  2. Identify triggers: "modern Python", "type hints", "FastAPI"
  3. Structure core capabilities:

- Python 3.11+ features (match statements, typing improvements) - FastAPI framework patterns - Type annotation best practices

  1. Add workflow: Design API → Type models → Implement routes → Test
  2. Include examples: FastAPI route with full type annotations

Result: A focused, actionable skill for modern Python development

Example 2: Creating a Git Workflow Skill

Context: Need to codify team's git branching strategy

Process:

  1. Define scope: Git workflow for feature development
  2. Identify triggers: "create branch", "make PR", "git workflow"
  3. Structure as phases:

- Branch creation - Development cycle - PR process - Merge strategy

  1. Add decision points: When to rebase vs merge
  2. Include examples: Standard feature development flow

Result: Clear procedural guide for consistent git usage

Validation Checklist

Before finalizing a skill, check:

Structure

  • Frontmatter complete (name, description)
  • Title and purpose clear
  • "When to Use" section has specific triggers
  • Core capabilities well-defined

Content

  • Information is accurate and current
  • Examples are realistic and helpful
  • Best practices are justified
  • Anti-patterns show alternatives

Usability

  • Can scan and find info quickly
  • Sections flow logically
  • Formatting is consistent
  • Cross-references are correct

Quality

  • No spelling/grammar errors
  • Technical terms defined
  • Code examples (if any) are correct
  • Meets all quality criteria above

Meta: About This Skill

This skill itself demonstrates the principles it teaches:

  • Clear frontmatter and structure
  • Specific "When to Use" triggers
  • Actionable workflows
  • Concrete examples
  • Quality criteria

When creating skills, use this as both a guide and a template.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.9%
按下载量换算212

OpenCode

22.47%
按下载量换算171

Codex

17.63%
按下载量换算134

Cursor

12.32%
按下载量换算94

Gemini CLI

6.97%
按下载量换算53

windsurf

3.45%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills