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

cc-skill-creatorcc 技能创建者

Agent Skill

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

总安装

612

周安装

26

GitHub Stars

公开资料未说明

下载量

214
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add shintaxx/agent-skills --skill "cc-skill-creator"

简介

CC 技能创建者赋能开发者快速封装自定义能力为标准化 Skill,便于复用与分享。

  • 适合希望在 Codex、Claude 等平台扩展专属工具的工程师与技术负责人。
  • 提供模板脚手架、输入输出定义与宿主适配指南,简化 Skill 开发与注册流程。
  • 生成的 Skill 包将上传至指定仓库,请确保不包含敏感配置或私有凭证信息。
  • 发布前应在本地充分测试边界条件,防止异常输入引发宿主环境崩溃。

SKILL.md

name
cc-skill-creator
description
Creates and evaluates Agent Skills following the official specification. Use when the user wants to create a new skill, scaffold a skill directory, evaluate or validate an existing skill, or needs guidance on skill structure and format.
metadata
author
skill-repo
version
1.0

Skill Creator

This skill helps you create new Agent Skills that follow the official specification.

When to Use

  • User wants to create a new skill
  • User needs to scaffold a skill directory structure
  • User asks about skill format or structure
  • User wants to evaluate or validate an existing skill (e.g., "〜のスキルを評価して")

Steps to Create a New Skill

1. Gather Requirements

Ask the user for:

  • Skill name: Must be lowercase, use hyphens, 1-64 characters (e.g., pdf-processing, code-review)
  • Description: What the skill does and when to use it (1-1024 characters)
  • Optional: License, compatibility requirements, metadata

2. Confirm Installation Location

IMPORTANT: Before creating any files, confirm the installation location with the user.

Default Installation Path: .claude/skills

The installation path varies by tool/environment. Determine a reasonable default based on:

  • Current working directory structure
  • Existing skills directories (e.g., ./skills/, ./.claude/skills/)
  • Project conventions

Then ask the user for confirmation:

スキル「{skill-name}」を以下の場所に作成します:
  {full-path}/{skill-name}/

この場所でよろしいですか?別の場所を指定することもできます。

Only proceed after user confirms the location.

3. Create Directory Structure

Create the skill directory at the confirmed location:

skill-name/
├── SKILL.md          # Required - main skill file
├── references/       # Optional - additional documentation
├── scripts/          # Optional - executable code
└── assets/           # Optional - static resources

4. Create SKILL.md

The SKILL.md file must contain:

  1. YAML Frontmatter (required):
   ---
   name: skill-name
   description: A clear description of what this skill does and when to use it.
   ---
  1. Markdown Body (recommended sections):

- Step-by-step instructions - Examples of inputs and outputs - Common edge cases

5. Validation Checklist

Before finishing, verify:

  • [ ] name field matches the directory name
  • [ ] name is lowercase with hyphens only, no consecutive hyphens
  • [ ] description clearly explains what the skill does AND when to use it
  • [ ] Main SKILL.md is under 500 lines
  • [ ] File references use relative paths from skill root

Name Constraints

The name field must:

  • Be 1-64 characters
  • Use only lowercase letters, numbers, and hyphens (a-z, 0-9, -)
  • Not start or end with -
  • Not contain consecutive hyphens (--)
  • Match the parent directory name exactly

Valid: pdf-processing, code-review, data-analysis Invalid: PDF-Processing, -pdf, pdf--processing, pdf-

Example SKILL.md

---
name: example-skill
description: Does X and Y. Use when the user mentions A, B, or C.
license: MIT
metadata:
  author: your-name
  version: "1.0"
---

# Example Skill

Instructions for the agent go here.

## Usage

1. First step
2. Second step

## Examples

Input: ...
Output: ...

Optional Directories

references/

Additional documentation loaded on demand. Keep files focused and small.

scripts/

Executable code (Python, Bash, JavaScript). Should be self-contained with clear error messages.

assets/

Static resources: templates, images, data files, schemas.

Evaluating an Existing Skill

When the user asks to evaluate a skill (e.g., "〜のスキルを評価して"), follow these steps:

1. Read the Specification

First, read skills-spec.md to understand the complete format requirements.

2. Read the Target Skill

Read the target skill's SKILL.md file and any related files.

3. Check Against Specification

Evaluate the skill against these criteria:

Required Checks:

  • [ ] SKILL.md exists in the skill directory
  • [ ] YAML frontmatter is present and valid
  • [ ] name field exists and follows naming rules:

- 1-64 characters - Lowercase letters, numbers, hyphens only - No leading/trailing hyphens - No consecutive hyphens (--) - Matches parent directory name

  • [ ] description field exists (1-1024 characters)
  • [ ] Description explains both WHAT the skill does AND WHEN to use it

Recommended Checks:

  • [ ] SKILL.md is under 500 lines
  • [ ] Body contains step-by-step instructions
  • [ ] Examples are provided
  • [ ] File references use relative paths
  • [ ] Reference files are focused and not too large

Optional Field Checks (if present):

  • [ ] license field is concise
  • [ ] compatibility field is under 500 characters
  • [ ] metadata has string keys and string values
  • [ ] allowed-tools is space-delimited

4. Report Findings

Present the evaluation results to the user:

  1. List all issues found (errors and warnings)
  2. Provide specific suggestions for each issue
  3. Show example corrections where applicable

5. Wait for User Permission

IMPORTANT: Do NOT make any modifications automatically. Always:

  1. Present the evaluation report
  2. Ask the user if they want to apply the suggested fixes
  3. Only proceed with modifications after explicit user approval

Example response format:

## 評価結果

### エラー (必須修正)
1. `name` フィールドが...

### 警告 (推奨修正)
1. `description` が...

### 修正案
[具体的な修正内容]

これらの修正を適用しますか?

Reference

For the complete specification, see skills-spec.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

27.62%
按下载量换算59

windsurf

24.58%
按下载量换算53

trae

15.65%
按下载量换算33

OpenCode

11.34%
按下载量换算24

Codex

6.95%
按下载量换算15

Antigravity

2.91%
按下载量换算6

安全审计

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

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills