plugins/claude-code-expert/archive/v7.6.0/skills/slash-commands/SKILL.md
# Claude Code Slash Commands Complete reference for all built-in and custom slash commands. ## Built-in Slash Commands ### Session Management | Command | Description | |---------|-------------| | `/clear` | Clear conversation and start fresh (same session) | | `/compact` | Compress conversation to reduce context usage | | `/compact [instructions]` | Compact with custom focus instructions | | `/resume` | Resume a previous session | | `/continue` | Continue current session | | `/status` | Curre
npx skillsauth add markus41/claude plugins/claude-code-expert/archive/v7.6.0/skills/slash-commandsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Complete reference for all built-in and custom slash commands.
| Command | Description |
|---------|-------------|
| /clear | Clear conversation and start fresh (same session) |
| /compact | Compress conversation to reduce context usage |
| /compact [instructions] | Compact with custom focus instructions |
| /resume | Resume a previous session |
| /continue | Continue current session |
| /status | Current session info |
| /context | View context window usage |
| Command | Description |
|---------|-------------|
| /help | Show available commands |
| /doctor | Run diagnostics and health checks |
| /version | Show Claude Code version |
| /settings | View active settings |
| Command | Description |
|---------|-------------|
| /model | View or change the current model |
| /model <name> | Switch to specific model (sonnet, opus, haiku) |
| /permissions | Manage permission rules |
| Command | Description |
|---------|-------------|
| /plan | Enter plan mode (read-only analysis) |
| /fast | Toggle fast mode (faster output, same model) |
| Command | Description |
|---------|-------------|
| /memory | Edit CLAUDE.md and auto-memory |
| /init | Generate project CLAUDE.md |
| /init-only | Generate CLAUDE.md and exit |
| Command | Description |
|---------|-------------|
| /agents | View, create, edit, delete subagents |
| /agents list | List all available agents |
| /skills | Browse available skills |
| /plugin | Manage plugins (install, enable, disable) |
| Command | Description |
|---------|-------------|
| /mcp | Check MCP server status, authenticate |
| /hooks | Configure lifecycle hooks |
| /add-dir <path> | Add additional working directory |
| Command | Description |
|---------|-------------|
| /diff | View git diff interactively |
| /review | Review pull request |
| /fork [name] | Fork current conversation |
| Command | Description |
|---------|-------------|
| /theme | Change color theme |
| /vim | Toggle Vim editing mode |
| /terminal-setup | Configure keybindings |
| Command | Description |
|---------|-------------|
| /simplify | Review code quality and refactor |
| /batch <instruction> | Parallel codebase changes |
| /debug [description] | Debug session issues |
| /loop <interval> | Recurring prompts |
| /claude-api | Load Claude API reference docs |
| Command | Description |
|---------|-------------|
| /sandbox | View or configure sandbox settings |
| /security-review | Run security analysis on codebase |
| Command | Description |
|---------|-------------|
| /export | Export conversation |
| /copy | Copy last response to clipboard |
| Command | Description |
|---------|-------------|
| /tasks | View background tasks |
| /insights | Session insights and analytics |
| /stats | Usage statistics |
| /usage | Token/cost usage for current session |
| /extra-usage | Extended usage details |
| Command | Description |
|---------|-------------|
| /release-notes | View release notes for current version |
| /upgrade | Upgrade Claude Code to latest |
| Command | Description |
|---------|-------------|
| /save-hooks | Save current hooks configuration |
| /reload-plugins | Reload installed plugins |
| Command | Description |
|---------|-------------|
| /chrome | Open Chrome browser session |
| /desktop | Desktop view mode |
| /mobile | Mobile view mode |
| /ide | IDE integration mode |
| Command | Description |
|---------|-------------|
| /login | Login to Anthropic |
| /logout | Logout from Anthropic |
| Command | Description |
|---------|-------------|
| /rename | Rename current conversation |
| /keybindings | View or edit keybindings |
| /statusline | Configure status line display |
| /output-style | Change output formatting style |
| /privacy-settings | View or edit privacy settings |
| /add-dir | Add working directory to context |
| Command | Description |
|---------|-------------|
| /remote-env | Configure remote environment |
| /remote-control | Start remote control session |
| Command | Description |
|---------|-------------|
| /install-github-app | Install Claude GitHub App |
| /install-slack-app | Install Claude Slack App |
| Command | Description |
|---------|-------------|
| /bug | Report a bug (can be disabled via env var) |
| Prefix | Action |
|--------|--------|
| / | Invoke command or skill |
| ! | Bash mode (execute shell command) |
| @ | File mention (add file to context) |
| ? | Show shortcuts |
| Shortcut | Action |
|----------|--------|
| Enter | Send message |
| Shift+Enter | Multi-line input |
| Ctrl+C | Interrupt current operation |
| Ctrl+D | Exit Claude Code |
| Escape | Rewind to last checkpoint |
| Escape (2x) | Full rewind |
| Tab | Auto-complete |
| Up/Down | Navigate command history |
| ? | Show shortcuts |
| Shortcut | Action |
|----------|--------|
| Shift+Tab | Cycle permission modes |
| Ctrl+O | Toggle verbose output |
| Ctrl+B | Send task to background |
| Ctrl+T | Toggle task list |
| Option+P | Switch model |
| Option+T | Toggle extended thinking |
| Ctrl+G | Open input in text editor |
| Ctrl+V | Paste image |
| Shortcut | Action |
|----------|--------|
| Ctrl+K | Kill text from cursor to end of line |
| Ctrl+U | Kill text from cursor to start of line |
| Ctrl+Y | Yank (paste) killed text |
| Alt+Y | Cycle through kill ring |
| Alt+B | Move back one word |
| Alt+F | Move forward one word |
| Alt+M | Toggle multiline mode |
| Shortcut | Action |
|----------|--------|
| Ctrl+L | Clear screen |
| Ctrl+R | Reverse search history |
| Ctrl+F | Kill background agents |
| Shortcut | Action |
|----------|--------|
| y / Enter | Approve (Allow Once) |
| a | Allow Always (for this session) |
| n | Deny |
| d | Deny Always (for this session) |
| e | Edit (modify the tool call) |
Custom commands are skill files in .claude/skills/ or plugin directories.
---
name: my-command
description: What this command does
triggers:
- /my-command
- /mc
args:
- name: target
description: Target to operate on
required: false
---
# My Custom Command
Instructions for Claude when this command is invoked.
## Steps
1. Do this first
2. Then do this
3. Finally do this
## Rules
- Always follow this pattern
- Never do this other thing
Commands in plugin commands/ directories:
# Command Name
Description of what the command does.
## Usage
\`\`\`
/plugin-prefix:command-name [args]
\`\`\`
## Arguments
- `arg1` — Description
- `--flag` — Description
## Implementation
When this command is invoked:
1. Step one
2. Step two
3. Step three
.claude/skills/)~/.claude/skills/)# Direct invocation
/my-command
# With arguments
/my-command some-argument
# Plugin-namespaced command
/plugin-name:command-name
# Via Skill tool (programmatic)
Skill(skill="my-command", args="some-argument")
When /plan is active:
ExitPlanMode to present plan to userAskUserQuestion for clarifications during planningExitPlanMode when plan is ready (not AskUserQuestion)Compresses the conversation to free up context window space.
/compact # Default compression
/compact focus on the API # Compress with focus on API-related content
When to use:
How it works:
Starts a completely fresh conversation.
/clear
When to use:
Difference from /compact:
/compact preserves summarized context/clear removes all context entirelydevelopment
Enhanced plan-authoring skill with Pre-Writing context gathering, task metadata, non-TDD templates, Red Flags, telemetry, and an automated plan linter. Use when you have a spec or requirements for a multi-step task, before touching code.
tools
Documentation intelligence engine with graph-based API docs, algorithm library, and drift detection
tools
Ultraplan cloud planning — kick off a plan in the cloud from your terminal, review and revise in the browser, then execute remotely or send back to CLI
tools
--- name: mcp description: Configure MCP servers for Claude Code — stdio vs HTTP, authentication, Tools/Resources/Prompts distinction, channels (CI webhook, mobile relay, Discord bridge, fakechat), and cost of always-loaded tools. Use this skill whenever adding an MCP server, debugging connection issues, choosing between MCP Tools vs Prompts vs Resources, installing channel servers, or managing .mcp.json. Triggers on: "MCP server", "mcp config", "add Obsidian MCP", "install context7", "channels"