Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计未展示

skill-creator技能创建器

Agent Skill

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

总安装

19,159

周安装

687

GitHub Stars

公开资料未说明

下载量

8,369
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add eddiebe147/claude-settings --skill "skill-creator"

简介

发现并推荐适用于 Claude Code 生态系统的技能插件资源。

  • 适合在 Codex、Claude、Cursor 等宿主环境中快速增强自动化能力。
  • 通过 npx 命令一键安装社区贡献的各类实用技能模块。
  • 使用前请评估技能维护频率与安全审计情况,防范潜在风险。
  • 部分技能可能需要 API 密钥或其他认证配置,请参照 README 操作。

SKILL.md

name
Skill Creator
slug
skill-creator
description
Create new Claude Code skills with proper structure and documentation
category
meta
complexity
complex
version
1.0.0
author
ID8Labs
triggers
tags

Skill Creator

The Skill Creator skill helps you design, build, and document new Claude Code skills following ID8Labs standards. It guides you through the complete skill creation process, from concept to implementation, ensuring your skills are well-structured, properly documented, and integrate seamlessly with the Claude Code ecosystem.

This skill automates the boilerplate work of skill creation while enforcing best practices around naming conventions, file structure, workflow design, and documentation. It helps you think through skill design decisions, identify the right complexity level, define clear triggers, and create comprehensive documentation that makes your skills easy to use and maintain.

Use this skill whenever you want to extend Claude Code's capabilities with new, reusable workflows that solve recurring problems or automate complex tasks.

Core Workflows

Workflow 1: Design New Skill from Concept

  1. Clarify the skill purpose:

- What problem does it solve? - Who will use it? - What are the key workflows?

  1. Define skill metadata:

- Name (clear, descriptive) - Slug (kebab-case) - Category (development, operations, meta, etc.) - Complexity (simple, complex, multi-agent) - Triggers (natural language phrases) - Tags (for discovery)

  1. Design core workflows:

- Identify 2-4 primary workflows - Map step-by-step processes - Define inputs and outputs - Identify dependencies (tools, MCPs, other skills)

  1. Structure documentation:

- Overview and use cases - Workflow details - Quick reference table - Best practices - Examples

  1. Create skill file with full documentation
  2. Test skill integration
  3. Iterate based on usage

Workflow 2: Scaffold Skill from Template

  1. Gather basic requirements:

- Skill name and purpose - Category - Primary workflow

  1. Generate SKILL.md from template:

- Frontmatter with metadata - Description section - Core Workflows section - Quick Reference table - Best Practices list

  1. Create directory structure:

- /skills/[slug]/SKILL.md - Additional files if needed (examples, templates)

  1. Populate with placeholder content
  2. Guide user to fill in specifics

Workflow 3: Refactor Existing Workflow into Skill

  1. Analyze the existing workflow:

- What steps are repeated? - What knowledge is required? - What could be automated?

  1. Extract reusable patterns
  2. Generalize for broader use cases
  3. Document as formal skill
  4. Parameterize variable elements
  5. Test with original use case and variations
  6. Deploy to skills directory

Workflow 4: Skill Quality Review

  1. Check metadata completeness:

- All required frontmatter fields present - Triggers are natural and discoverable - Tags are relevant and consistent

  1. Review documentation:

- Clear description of purpose - Well-defined workflows - Actionable best practices - Useful examples

  1. Validate structure:

- Follows standard SKILL.md format - Proper markdown formatting - Logical organization

  1. Test functionality:

- Triggers work as expected - Workflows are executable - Dependencies are available

  1. Suggest improvements
  2. Approve or request revisions

Quick Reference

ActionCommand/Trigger
Create new skill"Create a skill for [purpose]"
Scaffold from template"Scaffold a skill called [name]"
Review existing skill"Review this skill: [path or content]"
Convert workflow to skill"Turn this workflow into a skill: [workflow]"
Generate skill metadata"Generate metadata for [skill concept]"
Design skill workflows"Design workflows for [skill purpose]"
Validate skill structure"Validate this skill file: [path]"

Best Practices

  • Name Clearly: Skill names should be instantly understandable

- Good: "Database Designer", "API Tester", "Deployment Automation" - Bad: "Helper", "Tool", "Manager"

  • Choose Right Complexity:

- Simple: Single workflow, minimal dependencies, straightforward execution - Complex: Multiple workflows, external tools, conditional logic - Multi-agent: Coordinates other skills/agents, orchestration layer

  • Define Natural Triggers: Use phrases users would actually say

- Include variations: "review code", "code review", "review this code" - Avoid overly formal language - Test with real users if possible

  • Document Workflows Step-by-Step: Each workflow should be executable

- Number the steps - Use action verbs - Be specific about inputs/outputs - Include decision points

  • Provide Quick Reference: Users shouldn't need to read full docs

- Table format for common actions - Copy-pasteable commands - Clear, concise descriptions

  • Include Examples: Show real usage

- Before/after scenarios - Common use cases - Edge cases if relevant

  • Tag Thoughtfully: Help users discover your skill

- Use existing category tags when possible - Add 3-5 specific tags - Consider search terms users might use

  • Version Properly: Follow semantic versioning

- Start at 1.0.0 for initial release - Increment patch for bug fixes - Increment minor for new workflows - Increment major for breaking changes

Skill Metadata Reference

Required Frontmatter Fields

name: Human-Readable Name
slug: kebab-case-identifier
description: One-line description (under 100 chars)
category: development | operations | meta | design | data | testing
complexity: simple | complex | multi-agent
version: "1.0.0"
author: "ID8Labs"
triggers:
  - "natural language trigger 1"
  - "natural language trigger 2"
tags:
  - relevant-tag-1
  - relevant-tag-2

Optional Frontmatter Fields

dependencies:
  tools:
    - playwright
    - supabase
  mcps:
    - firecrawl
    - github
  skills:
    - other-skill-slug
requires_config:
  - ENV_VAR_NAME: "Description of what this is for"
examples_dir: "./examples"

Skill Categories

CategoryPurposeExamples
developmentBuilding and codingCode review, scaffolding, refactoring
operationsDeployment and infrastructureCI/CD, monitoring, deployment
metaSkills about AI/skillsPrompt engineering, workflow design
designUI/UX and creative workComponent design, design systems
dataDatabase and data workflowsSchema design, migrations, queries
testingQuality assuranceTest generation, E2E testing
contentWriting and documentationTechnical writing, marketing copy

Common Skill Patterns

Simple Pattern: Single Action

## Core Workflows

### Workflow 1: Execute [Action]
1. Receive input
2. Process input
3. Return output

Complex Pattern: Multi-Step with Branching

## Core Workflows

### Workflow 1: [Primary Action]
1. Analyze input
2. **If** [condition]:
   - Path A
3. **Else**:
   - Path B
4. Synthesize results
5. Validate output

Multi-Agent Pattern: Orchestration

## Core Workflows

### Workflow 1: Coordinate [Task]
1. Assess requirements
2. **Delegate** to Skill A for [subtask]
3. **Delegate** to Skill B for [subtask]
4. **Monitor** progress
5. **Integrate** results
6. Validate final output

Testing Your Skill

Before considering a skill complete:

  1. Test triggers: Verify phrases activate the skill
  2. Execute workflows: Run through each workflow completely
  3. Check dependencies: Ensure all required tools are available
  4. Validate documentation: Have someone else read and use it
  5. Edge cases: Test with unusual or complex inputs
  6. Integration: Verify it works with related skills
  7. Performance: Ensure it doesn't create bottlenecks

Skill Maintenance

Skills should evolve with usage:

  • Track issues: Note when workflows fail or confuse users
  • Gather feedback: Ask users what's missing or unclear
  • Update docs: Keep examples and best practices current
  • Deprecate carefully: If replacing, provide migration guide
  • Version clearly: Document breaking changes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

25.51%
按下载量换算2,135

OpenCode

25.22%
按下载量换算2,111

Gemini CLI

19.34%
按下载量换算1,619

Antigravity

12.39%
按下载量换算1,037

Cursor

8.16%
按下载量换算683

windsurf

3.65%
按下载量换算305

安全审计

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

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills