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

command-creator命令创建者

Agent Skill

command-creator 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,341

周安装

57

GitHub Stars

1,493

下载量

470
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/feiskyer/claude-code-settings --skill command-creator

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在需要围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。
  • 当前分类为开发。command-creator 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Command Creator

Create Claude Code custom slash commands with proper structure and best practices.

Understanding Commands

Claude Code commands are Markdown files with YAML frontmatter that define reusable workflows invoked via /command-name. They live in specific locations depending on scope:

  • Project-level: .claude/commands/ in the project root (shared via git)
  • User-level: ~/.claude/commands/ (personal, available everywhere)
  • Categorized: Nest under subdirectories for namespacing (e.g., gh/review-pr.md becomes /gh:review-pr)

Process

1. Clarify Intent

Before writing anything, understand:

  • What should the command do? (single clear purpose)
  • Who uses it — just this user, or the whole team? (determines project vs user-level)
  • Does it need arguments? What kind?
  • What tools does it need access to?
  • Is there a category it belongs to? (e.g., gh for GitHub, cc for Claude Code meta-commands)

2. Write the Command

Every command file follows this structure:

---
description: Brief description shown in command list
argument-hint: [expected-arguments]
allowed-tools: Tool1, Tool2, Bash(prefix:*)
---

# Command Name

What this command does and when to use it.

## Process:

Step-by-step instructions for the agent to follow.

## Your Task:

Act on "$ARGUMENTS" following these guidelines.

Frontmatter fields

FieldRequiredPurpose
descriptionYesShort description shown when listing commands
argument-hintNoHint for expected arguments (shown in autocomplete)
allowed-toolsNoRestrict which tools the command can use

Key conventions

  • $ARGUMENTS is replaced with whatever the user types after the command name. Always reference it in the "Your Task" section so the command acts on user input.
  • allowed-tools uses patterns: exact names (Read, Write), or prefix globs for Bash (Bash(git:*), Bash(npm:*)).
  • Keep commands focused and single-purpose — one command, one job.
  • Write instructions in the imperative form ("Analyze the code", not "You should analyze the code").
  • Include concrete examples of usage and expected behavior.

3. Choose the Right Location

ScopePathWhen to use
Project (shared).claude/commands/Team workflows, project-specific tasks
Project (categorized).claude/commands/<category>/Grouped commands (e.g., gh/, db/)
User (personal)~/.claude/commands/Personal productivity, cross-project tools

4. Validate

After creating the command file:

  • Verify the YAML frontmatter parses correctly (no syntax errors)
  • Confirm the file is in the right directory
  • Check that $ARGUMENTS is referenced if the command accepts input
  • Ensure allowed-tools includes everything the command needs

Example: A Simple Command

---
description: Review a pull request with detailed analysis
argument-hint: [PR-number-or-URL]
allowed-tools: Bash(gh:*), Read, Grep, Glob
---

# Review PR

Perform a thorough code review of a GitHub pull request.

## Process:

1. Fetch PR details and diff using `gh pr view` and `gh pr diff`
2. Read changed files for full context
3. Analyze changes for:
   - Correctness and potential bugs
   - Code style consistency
   - Missing tests or edge cases
   - Security concerns
4. Provide a structured review summary

## Your Task:

Review PR "$ARGUMENTS" following these guidelines. If no PR number is given,
use `gh pr list` to show recent PRs and ask which one to review.

Best Practices

  • Descriptive names: The filename becomes the command name — make it clear (fix-issue.md not fi.md)
  • Graceful argument handling: Always handle the case where $ARGUMENTS is empty
  • Minimal tool permissions: Only list tools the command actually needs in allowed-tools
  • Follow existing patterns: Look at other commands in the same directory for conventions
  • Test before shipping: Try the command with different inputs to verify it works

Your Task

Create a new command based on "$ARGUMENTS":

  1. If the purpose is unclear, ask clarifying questions
  2. Determine the appropriate location and category
  3. Create the command file with proper structure
  4. Explain what was created and how to use it

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.6%
按下载量换算158

Claude

30.27%
按下载量换算142

Cursor

18.36%
按下载量换算86

Gemini CLI

10.49%
按下载量换算49

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills