slash-commands
Create and use Claude Code slash commands - quick prompts, bash execution, file references
npx skills add parcadei/Continuous-Claude-v3 --skill slash-commands --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Slash Commands Reference Create and use user-triggered prompts with `/command-name` syntax. ## When to Use - "How do I create a slash command?" - "What slash commands are available?" - "Add bash to my command" - "Use file references in commands" - "Slash commands vs skills" ## Built-in Commands | Command | Purpose | |---------|---------| | `/clear` | Clear conversation history | | `/compact` | Compact conversation with focus | | `/config` | Open settings interface | | `/cost` | Show token usage | | `/agents` | Manage sub-agents | | `/mcp` | Manage MCP servers | | `/memory` | Edit CLAUDE.md files | | `/model` | Select AI model | | `/review` | Request code review | | `/resume` | Resume session | | `/help` | Get usage help | ## Creating Commands ### Project Commands ```bash mkdir -p .claude/commands cat > .claude/commands/optimize.md << 'EOF' --- description: Analyze code for performance issues --- Review this code for: - Performance bottlenecks - Memory leaks - Caching opportunities EOF ``` ### Personal Commands ```bash mkdir -p ~/.claude/commands cat > ~/.claude/commands/review.md << 'EOF' --- description: Security-focused code review --- Check for vulnerabilities: - Input validat
- When to Use
- Built-in Commands
- Creating Commands
- Project Commands
- Personal Commands
- Command File Format
- Bash Execution
- File References
- Arguments
- Namespacing
- MCP Slash Commands
- Slash Commands vs Skills
- Example: Complete Git Commit Command
mkdir -p .claude/commands cat > .claude/commands/optimize.md << 'EOF' mkdir -p ~/.claude/commands cat > ~/.claude/commands/review.md << 'EOF'
What does the slash-commands skill do?
Create and use Claude Code slash commands - quick prompts, bash execution, file references
How do I install it?
Run `npx skills add parcadei/Continuous-Claude-v3 --skill slash-commands --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From parcadei/Continuous-Claude-v3, a repository with 3,879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
