Agent skill · AI & Agents

slash-commands

Create and use Claude Code slash commands - quick prompts, bash execution, file references

parcadeigithub.com/parcadeiGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill slash-commands --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Allowed tools: ReadWriteBash
Path: .claude/skills/slash-commands/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. When to Use
  2. Built-in Commands
  3. Creating Commands
  4. Project Commands
  5. Personal Commands
  6. Command File Format
  7. Bash Execution
  8. File References
  9. Arguments
  10. Namespacing
  11. MCP Slash Commands
  12. Slash Commands vs Skills
  13. Example: Complete Git Commit Command
Commands it runs
mkdir -p .claude/commands
cat > .claude/commands/optimize.md << 'EOF'
mkdir -p ~/.claude/commands
cat > ~/.claude/commands/review.md << 'EOF'
More from Continuous-Claude-v3
All skills →
About this skill
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.

Keep going