Agent skill
command-creator
Create Claude Code custom slash commands with proper structure, frontmatter, and best practices. Use this skill whenever the user wants to create a new command, add a slash command, build a custom command, or mentions "create-command", "new command", "add command", or "make a command" for Claude Code. Also trigger when the user wants to turn a workflow into a reusable command.
Install this agent skill to your Project
npx add-skill https://github.com/feiskyer/claude-code-settings/tree/main/skills/command-creator
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.mdbecomes/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.,
ghfor GitHub,ccfor 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
| Field | Required | Purpose |
|---|---|---|
description |
Yes | Short description shown when listing commands |
argument-hint |
No | Hint for expected arguments (shown in autocomplete) |
allowed-tools |
No | Restrict which tools the command can use |
Key conventions
$ARGUMENTSis 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-toolsuses 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
| Scope | Path | When 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
$ARGUMENTSis referenced if the command accepts input - Ensure
allowed-toolsincludes 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.mdnotfi.md) - Graceful argument handling: Always handle the case where
$ARGUMENTSis 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":
- If the purpose is unclear, ask clarifying questions
- Determine the appropriate location and category
- Create the command file with proper structure
- Explain what was created and how to use it
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
kiro-skill
Interactive feature development workflow from idea to implementation. Creates requirements (EARS format), design documents, and task lists. Triggers: "kiro", ".kiro/specs/", "feature spec", "需求文档", "设计文档", "实现计划".
github-review-pr
Review GitHub pull requests with detailed, multi-perspective code analysis using parallel subagents. Use this skill whenever the user wants to review a PR, asks for code review on a pull request, mentions "review PR", "check this PR", "look at pull request", or references a PR number or GitHub PR URL. Also trigger when the user wants feedback on code changes, wants to approve or request changes on a PR, or asks to review someone's contribution.
autonomous-skill
Execute long-running, multi-session tasks autonomously using Claude Code headless mode or in-session hook-based loops. Supports structured task decomposition (for complex projects) and lightweight Ralph-style iteration (for TDD, bug fixing, refactoring). Use this skill whenever the user says "autonomous", "long-running task", "multi-session", "run this in the background", "keep working on this", "batch process", "iterate until done", "ralph loop", or wants any task that requires sustained, unattended execution.
deep-research
深度调研的多Agent编排工作流:把一个调研目标拆成可并行子目标,用 Claude Code 非交互模式(`claude -p`)运行子进程;联网与采集优先使用已安装的 skills,其次使用 MCP 工具;用脚本聚合子结果并分章精修,最终交付"成品报告文件路径 + 关键结论/建议摘要"。用于:系统性网页/资料调研、竞品/行业分析、批量链接/数据集分片检索、长文写作与证据整合,或用户提及"深度调研/Deep Research/Wide Research/多 Agent 并行调研/多进程调研"等场景。
translate
Translate English or Japanese tech articles and texts into natural, fluent Chinese. Use this skill when the user wants to translate text to Chinese, asks for Chinese translation, mentions "translate to Chinese", "翻译", provides English/Japanese tech content for translation, or wants any text converted into Chinese. Also trigger when the user pastes text and asks to translate it, or references a file to translate into Chinese.
spec-kit-skill
GitHub Spec-Kit integration for constitution-based spec-driven development. 7-phase workflow. Triggers: "spec-kit", "speckit", "constitution", "specify", ".specify/", "规格驱动开发", "需求规格".
Didn't find tool you were looking for?