Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计提醒

slash-command-builder斜杠命令生成器

Agent Skill

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

总安装

612

周安装

25

GitHub Stars

16

下载量

196
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mike-coulbourn/claude-vibes --skill slash-command-builder

简介

slash-command-builder 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词、任务场景或来源线索进行信息筛选和整理。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 使用时需注意数据来源的准确性和适用性,避免依赖未经验证的外部信息。

SKILL.md

Slash Command Builder

Create effective custom slash commands for Claude Code with proper structure, dynamic features, and best practices.

Quick Reference

Command File Location:

  • Project (shared): .claude/commands/name.md
  • Personal (individual): ~/.claude/commands/name.md

Dynamic Features:

  • Arguments: $ARGUMENTS (all) or $1, $2, $3 (positional)
  • Bash execution: [execute: command] (requires allowed-tools: Bash(...))
  • File references: @path/to/file

Frontmatter: Optional YAML with description, allowed-tools, argument-hint, model

The Slash Command Creation Workflow

Phase 1: Requirements Gathering

Use AskUserQuestion to understand what they need:

  1. What should the command do?

- What task or prompt does it automate? - What's the expected outcome?

  1. Who will use it?

- Just you (personal command) - Your team (project command)

  1. Does it need dynamic inputs?

- Fixed prompt (no arguments) - User-provided values (arguments needed) - Context from system (bash execution) - File contents (file references)

  1. What tools should it access?

- Read-only analysis (Read, Grep, Glob) - Git operations (Bash(git:*)) - Full access (default, no restrictions)

Phase 2: Choose Scope

Personal Command (~/.claude/commands/):

  • Your individual shortcuts
  • Experimental commands
  • Personal workflow automation
  • Not shared with team

Project Command (.claude/commands/):

  • Team-shared commands
  • Standardized workflows
  • Committed to git
  • Available to all team members

Phase 3: Design the Structure

Basic command structure:

---
description: Brief description for /help
allowed-tools: Optional tool restrictions
argument-hint: Optional argument guidance
---

[Your prompt here]

Decision tree:

  1. Start with basic prompt
  2. Add arguments if needed ($ARGUMENTS or $1/$2)
  3. Add bash execution if context needed ([execute: command])
  4. Add file references if analyzing files (@path)
  5. Add frontmatter for description and restrictions

Phase 4: Implementation

Step 1: Create the file

# For project commands
touch .claude/commands/your-command.md

# For personal commands
touch ~/.claude/commands/your-command.md

The filename (without.md) becomes the command name.

Step 2: Write the command

Use templates from templates/ directory:

Step 3: Add frontmatter (recommended)

---
description: What this command does (appears in /help)
allowed-tools: Read, Grep, Glob  # Optional restrictions
argument-hint: [arg1] [arg2]     # Optional user guidance
---

Phase 5: Testing

  1. Verify command appears: /help Look for your command in the list.
  2. Test basic invocation: /your-command
  3. Test with arguments (if applicable): /your-command arg1 arg2
  4. Test bash execution (if applicable):

- Verify commands execute - Check output appears in prompt

  1. Test file references (if applicable):

- Verify files load correctly - Check paths resolve

  1. Team testing (for project commands):

- Have teammates try it - Gather feedback - Iterate based on usage

Phase 6: Iteration

Start simple, add complexity incrementally:

  1. First: Basic prompt without dynamic features
  2. Test: Verify it works
  3. Add: One feature (arguments OR bash OR files)
  4. Test: Verify new feature works
  5. Repeat: Add next feature if needed

Don't try to add all features at once. Build incrementally.

Common Command Patterns

Pattern 1: Code Analysis

---
description: Analyze code for [specific criteria]
allowed-tools: Read, Grep, Glob
argument-hint: [file-or-directory]
---

Analyze @$1 for:
1. [Criterion 1]
2. [Criterion 2]
3. [Criterion 3]

Provide specific findings with examples.

Pattern 2: Git Workflow

---
description: [Git operation] with context
allowed-tools: Bash(git:*)
---

## Current State

Branch: [execute: git branch --show-current]
Status: [execute: git status --short]

## Task

[What to do with this context]

Pattern 3: Code Generation

---
description: Generate [artifact] following patterns
allowed-tools: Read, Grep, Glob, Write
argument-hint: [what-to-generate]
---

## Existing Patterns

@[relevant examples]

## Task

Generate $ARGUMENTS following the patterns above.

Pattern 4: Deep Analysis

---
description: Deep analysis of [topic]
---

Think deeply about $ARGUMENTS considering:
1. [Aspect 1]
2. [Aspect 2]
3. [Aspect 3]

[Extended thinking triggered by keywords]

Real-World Examples

See examples/ for complete working examples:

Advanced Features

Arguments: $ARGUMENTS vs $1/$2

Use $ARGUMENTS when:

  • You want all input as a single block
  • Free-form text (messages, descriptions)
  • Don't need to reference parts separately

Use $1, $2, $3 when:

  • You need structured parameters
  • Different parts used in different places
  • Want to provide defaults for missing args

Example:

# $ARGUMENTS approach
Explain $ARGUMENTS in detail.

# Positional approach
Review PR #$1 with priority $2 assigned to $3.

Bash Execution

Execute commands BEFORE the prompt runs:

---
allowed-tools: Bash(git:*)
---

Current branch: [execute: git branch --show-current]
Recent commits: [execute: git log --oneline -5]

Requirements:

  1. Must include allowed-tools: Bash(...)
  2. Use [execute: command] syntax (backticks required)
  3. Output is captured and included in prompt

Security: Limit bash access with specific tool patterns:

allowed-tools: Bash(git:*)          # Git only
allowed-tools: Bash(npm:*), Bash(git:*)  # npm and git

File References

Include file contents with @ prefix:

Review @src/auth/login.js for security issues.

Features:

  • Automatic CLAUDE.md inclusion from file's directory hierarchy
  • Works with relative or absolute paths
  • Directories show listing (not contents)

Frontmatter Configuration

Complete frontmatter options:

---
description: Brief description (required for /help and SlashCommand tool)
allowed-tools: Read, Grep, Glob, Bash(git:*)  # Optional restrictions
argument-hint: [file] [priority]              # Optional guidance
model: claude-3-5-haiku-20241022              # Optional model override
disable-model-invocation: false               # Optional, prevent auto-calling
---

Best Practices

  1. Always include description

- Helps team understand command purpose - Required for SlashCommand tool - Appears in /help

  1. Use argument-hint for clarity

- Shows expected inputs - Self-documenting commands - Reduces user confusion

  1. Limit allowed-tools when appropriate

- Read-only commands: Read, Grep, Glob - Git-only: Bash(git:*) - Enhances security and safety

  1. Structure complex commands

- Use sections (Context, Task, Constraints) - Makes prompts easier to understand - Follows clear flow

  1. Reference project conventions

- Include @CLAUDE.md for standards - Reference example files - Ensures consistency

  1. Test incrementally

- Start simple, add features one at a time - Test each addition before next - Don't debug multiple features simultaneously

  1. Organize with subdirectories

- Group related commands - Cleaner file structure - Easier to maintain

  1. Commit project commands

- Share with team via git - Version control for commands - Team benefits from your work

Common Issues and Solutions

Issue: Command doesn't appear in /help

Causes:

  • File not in correct location
  • Missing.md extension
  • Filename has invalid characters

Solutions:

  • Check file is in .claude/commands/ or ~/.claude/commands/
  • Verify .md extension
  • Use lowercase-with-hyphens for filename

Issue: Arguments not replacing

Causes:

  • Typo in placeholder ($ARGUMENT instead of $ARGUMENTS)
  • Not passing arguments when invoking
  • Wrong syntax

Solutions:

  • Double-check spelling: $ARGUMENTS, $1, $2
  • Test with: /command arg1 arg2
  • Verify placeholder exists in template

Issue: Bash commands not executing

Causes:

  • Missing allowed-tools: Bash(...) in frontmatter
  • Wrong syntax (missing backticks)
  • Command fails when run

Solutions:

  • Add frontmatter: allowed-tools: Bash(command:*)
  • Use correct syntax: [execute: command]
  • Test command in terminal first

Issue: File references not working

Causes:

  • Missing @ prefix
  • File doesn't exist
  • Wrong path

Solutions:

  • Use @path/to/file syntax
  • Verify file exists: ls path/to/file
  • Try absolute path if relative fails

Slash Commands vs Skills

When to use each:

Use Slash CommandsUse Skills
Manual invocation (you decide when)Automatic discovery (Claude decides when)
Simple prompt templatesComplex multi-file workflows
Quick, focused operationsBroad capabilities
Single.md fileDirectory with multiple files

Example:

  • Slash command: /commit - You invoke when ready to commit
  • Skill: skill-builder - Claude discovers when you mention Skills

Both complement each other in your workflow.

Complete Syntax Reference

For detailed syntax documentation, see reference/syntax-guide.md.

For best practices and patterns, see reference/best-practices.md.

For troubleshooting help, see reference/troubleshooting.md.

Tips for Effective Commands

  1. Start with the simplest version that works
  2. Add complexity only when needed (YAGNI principle)
  3. Test with real scenarios before sharing
  4. Include clear descriptions in frontmatter
  5. Use tool restrictions for safety
  6. Reference project conventions with file refs
  7. Gather context with bash execution
  8. Structure prompts with clear sections
  9. Provide examples in argument-hint
  10. Iterate based on usage - improve over time

Next Steps

After creating a command:

  1. Test thoroughly with various inputs
  2. Share with team (if project command)
  3. Document in CLAUDE.md if it's a pattern others should know
  4. Create related commands for connected workflows
  5. Refine based on feedback - commands improve with use

Remember: Slash commands are user-invoked prompt templates. Start simple, test frequently, and add features incrementally. The best commands are clear, focused, and solve real workflow problems.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.74%
按下载量换算58

OpenCode

25.78%
按下载量换算51

Gemini CLI

17.59%
按下载量换算34

Antigravity

13.92%
按下载量换算27

Codex

8.36%
按下载量换算16

windsurf

3.12%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/mike-coulbourn/claude-vibes --skill slash-command-builder;npx skills add mike-coulbourn/claude-vibes --skill "slash-command-builder" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills