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

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

相关推荐
AskHarries5 小时前
Skills.lc 是什么?为什么我会做(用)这个站
ai编程
沈二到不行5 小时前
【22-26】蜉蝣一日、入樊笼尔
程序员·ai编程·全栈
GHL2842710909 小时前
分析式AI学习
人工智能·学习·ai编程
猫头虎10 小时前
2026年AI产业13大趋势预测:Vibe Coding创作者经济元年到来,占冰强专家解读AIGC未来图景
人工智能·开源·prompt·aigc·ai编程·远程工作·agi
kjkdd12 小时前
6.1 核心组件(Agent)
python·ai·语言模型·langchain·ai编程
皮卡丘不断更16 小时前
告别“金鱼记忆”:SwiftBoot v0.1.5 如何给 AI 装上“永久项目大脑”?
人工智能·系统架构·ai编程
JMchen12318 小时前
AI编程与软件工程的学科融合:构建新一代智能驱动开发方法学
驱动开发·python·软件工程·ai编程
心疼你的一切21 小时前
代码革命:CANN加速的AI编程助手实战
数据仓库·深度学习·aigc·ai编程·cann
kjkdd21 小时前
5. LangChain设计理念和发展历程
python·语言模型·langchain·ai编程
程序员老刘·1 天前
Android Studio Otter 3 发布:日常开发选AS还是Cursor?
flutter·android studio·ai编程·跨平台开发·客户端开发