Claude Code中英文系列教程:创建自己的斜杠快捷命令

Create custom slash commands

创建自定义斜杠命令

Claude Code supports custom slash commands that you can create to quickly execute specific prompts or tasks.

Claude Code 支持自定义斜杠命令,你可以通过创建这些命令快速执行特定的提示或任务。

一,Create project-specific commands

创建项目特定命令

Suppose you want to create reusable slash commands for your project that all team members can use.

假设你想为你的项目创建可重用的斜杠命令,所有团队成员都可以使用。

1.1 Create a commands directory in your project

在你的项目中创建一个 commands 目录

mkdir -p .claude/commands

1.2 Create a Markdown file for each command

为每个命令创建一个 Markdown 文件

echo "Analyze the performance of this code and suggest three specific optimizations:" > .claude/commands/optimize.md

分析这段代码的性能,并提出三个具体的优化建议

1.3 Use your custom command in Claude Code

在 Claude Code 中使用自定义命令

> /optimize

使用技巧:

Command names are derived from the filename (for example, optimize.md becomes /optimize)

命令名称源自文件名(例如, optimize.md 变为 /optimize )

You can organize commands in subdirectories (for example, .claude/commands/frontend/component.md

creates /component with "(project:frontend)" shown in the description)

您可以将命令组织在子目录中(例如, .claude/commands/frontend/component.md 会创建一个 /component 命令,并在描述中显示"(project:frontend)")

Project commands are available to everyone who clones the repository

项目命令可供所有克隆代码仓库的用户使用

The Markdown file content becomes the prompt sent to Claude when the command is invoked

当命令被调用时,Markdown 文件的内容将成为发送给 Claude 的提示词

二,Add command arguments with $ARGUMENTS

使用$ARGUMENTS 添加命令参数

Suppose you want to create flexible slash commands that can accept additional input from users.

假设你想创建灵活的斜杠命令,这些命令可以接受用户的额外输入

2.1,Create a command file with the $ARGUMENTS placeholder

创建一个包含$ARGUMENTS 占位符的markdwon命令文件

echo 'Find and fix issue #$ARGUMENTS. Follow these steps:

1.Understand the issue described in the ticket

2.Locate the relevant code in our codebase

3.Implement a solution that addresses the root cause

4.Add appropriate tests

5.Prepare a concise PR description' >

.claude/commands/fix-issue.md

找到并修复问题#$ARGUMENTS。遵循以下步骤:

1.理解issue中描述的问题。

2.在我们的代码库中找到相关的代码。

3.实现一个解决根本原因的解决方案。

4.添加适当的测试。

5.准备一份简洁的PR描述

2.2,Use the command with an issue number

使用带有问题编号的命令

In your Claude session, use the command with arguments.

在您的 Claude 会话中,使用带参数的命令。

> /fix-issue 123

This replaces $ARGUMENTS with "123" in the prompt.

这将在提示中替换$ARGUMENTS 为"123"。

使用技巧:

The $ARGUMENTS placeholder is replaced with any text that follows the command

$ARGUMENTS 占位符会被替换为命令后面的任何文本

You can position $ARGUMENTS anywhere in your command template

您可以在命令模板中的任何位置放置$ARGUMENTS

Other useful applications:

generating test cases for specific functions,

creating documentation for components,

reviewing code in particular files,

or translating content to specified languages

其他实用应用,可以创建这些命令方便后续使用:

为特定函数生成测试用例、

为组件创建文档、

在特定文件中审查代码

或将内容翻译成指定语言

三,Create personal slash commands

创建个人斜杠命令

Suppose you want to create personal slash commands that work across all your projects.

假设你想创建可在所有项目中使用的个人斜杠命令。

3.1 Create a commands directory in your home folder

在你的家目录中创建一个 commands 目录

mkdir -p ~/.claude/commands

3.2 Create a Markdown file for each command

为每个命令创建一个 Markdown 文件

echo "Review this code for security vulnerabilities, focusing on:" >

~/.claude/commands/security-review.md

查看此代码中的安全漏洞,重点关注:

3.3 Use your personal custom command

使用你的个人自定义命令

> /security-review

使用技巧:

Personal commands show "(user)" in their description when listed with /help

个人命令在 /help 列表中显示时,描述中会标有"(user)"

Personal commands are only available to you and not shared with your team

个人命令仅对您可见,不会与您的团队共享

Personal commands work across all your projects

个人命令适用于您所有的项目

You can use these for consistent workflows across different codebases

您可以使用这些命令在不同代码库中实现一致的工作流程

相关推荐
仙逆GPT24 分钟前
ChatGPT、Codex实战:Sol、Terra、Luna怎么选?Reasoning不是越高越好
ai编程·codex·chatgptplus·gpt5.6·codex教程
百工蜂Agent30 分钟前
万物皆工具
agent·ai编程
起个名字好难啊这也被占用了30 分钟前
LangGraphjs可中断可恢复的AI工作流
人工智能·ai编程
NWU_白杨36 分钟前
AI协作开发
ai编程
东小西2 小时前
番外篇四:《一个图搞定智能客服:用 StateGraph 把"条件路由"和"状态合并"玩明白》
openai·ai编程
全栈弄潮儿3 小时前
第一次让 AI 帮你写代码:用 JavaScript 完成一个待办事项清单
chatgpt·openai·ai编程
颜进强3 小时前
Claude Code - 26 效率三件套:cc-switch 切模型 · codeburn 算成本 · claude-hud 看状态
前端·后端·ai编程
东小西3 小时前
番外篇三:《ReactAgent 为什么能"想一步做一步"?扒开它的 Graph 内核》
openai·ai编程
答案answer4 小时前
VibeCoding 能做到什么程度?我用它做了一座 3D 数字博物馆
ai编程·three.js·vibecoding
测试_AI_一辰5 小时前
AI Agent 评测最隐蔽的坑-记忆
人工智能·算法·ai·自动化·ai编程