Slash commands, all 106.
Commands typed at the prompt, the built-in ones the bundle carries.
/
○ not in v2.1.243, ◆ Anthropic has never documented it.
Every slash command in the build
/add-dirAdd a working directory for file access during the current session. Type a partial path to see matching directory suggestions; press Tab to accept one. Most .claude/ configuration is [not discovered](/docs/en/permissions#additional-directories-grant-file-access-not-configuration) from the added directory. A successful add runs your [DirectoryAdded hooks](/docs/en/hooks#directoryadded). When you run it while Claude is responding, Claude Code asks you to confirm the directory right away, and once you confirm, Claude's next tool call in the same turn can access it. Before v2.1.234, Claude Code queued the command until the turn finished never mined ○
/advisorEnable or disable the [advisor tool](/docs/en/advisor), which consults a second model for guidance at key moments during a task. Accepts fable, opus, sonnet, or a full model ID. fable requires [Fable 5 access](/docs/en/advisor#choose-an-advisor-model). Without an argument, opens a picker never mined ○
/agentsAs of v2.1.198, running /agents prints a reminder to ask Claude to create or manage [subagents](/docs/en/sub-agents), or to edit .claude/agents/ or ~/.claude/agents/ directly. On v2.1.197 and earlier, opens an interactive interface for creating and managing subagent configurations never mined ○
/allowed-tools/permissions now opens its dialog immediately instead of waiting in the message queue. never mined ○ ◆
/artifact-diagrammingA new /artifact-diagramming command gives guidance on hand-authoring inline SVG diagrams inside Artifacts. never mined ○ ◆
/artifact-pr-reviewIf composed review publishing is unavailable, the refusal now says whether it was turned off mid-session. never mined ○ ◆
/artifactsList the [artifacts](/docs/en/artifacts#find-an-artifact-again) you own or that are shared with you, then attach one to the session, open it in your browser, or copy its link. Available where [artifacts](/docs/en/artifacts#availability) are. Requires Claude Code v2.1.208 or later; attaching with Enter requires v2.1.216 never mined ○
/auto-mode-setup[Draft autoMode.environment entries](/docs/en/auto-mode-config#generate-environment-entries) from your project and recent sessions, then review the draft and save it to your user settings. Requires a Pro, Max, or Team plan and Claude Code v2.1.228 or later. On native Windows, requires v2.1.233 or later never mined ○
/autocompactSet the auto-compact window: how full the context window gets before Claude Code compacts automatically. Pass a size such as 500k, or auto to return to the window tuned for your model. Claude Code saves the value to user settings and applies it to the current session. See [Set the auto-compact window](/docs/en/model-config#set-the-auto-compact-window) for accepted values and what overrides it. Without an argument, opens a dialog that shows the current window. Requires Claude Code v2.1.221 or later never mined ○
/autofix-prSpawn a [Claude Code on the web](/docs/en/claude-code-on-the-web#auto-fix-pull-requests) session that watches the current branch's PR and pushes fixes when CI fails or reviewers leave comments. Detects the open PR from your checked-out branch with gh pr view; to watch a different PR, check out its branch first. By default the cloud session is told to fix every CI failure and review comment; pass a prompt to give it different instructions, for example /autofix-pr only fix lint and type errors. Requires the gh CLI and access to [Claude Code on the web](/docs/en/claude-code-on-the-web) never mined ○
/batch[Skill](/docs/en/skills#bundled-skills). Orchestrate large-scale changes across a codebase in parallel. Researches the codebase, decomposes the work into 5 to 30 independent units, and presents a plan. Once approved, spawns one [background subagent](/docs/en/sub-agents#run-subagents-in-foreground-or-background) per unit in an isolated [git worktree](/docs/en/worktrees). Each subagent implements its unit, runs tests, and opens a pull request. Requires a git repository. Example: /batch migrate src/ from JavaScript to TypeScript never mined ○
/brief/brief is hidden by server config, but brief mode still works via an environment variable. never mined ○ ◆
/btwAsk a [side question](/docs/en/interactive-mode#side-questions-with-%2Fbtw) about the current session without adding to the conversation. If you run /btw without a question, Claude Code shows your most recent side question so you can browse earlier answers; if you haven't asked one yet, Claude Code prints a usage line. Before v2.1.212, /btw required a question never mined ○
/bugReport a bug or share your conversation. You choose how much session history to include and confirm on a consent screen before anything is sent. When you're signed in to Anthropic on a first-party connection, the report goes to Anthropic; on a third-party provider, or without Anthropic credentials, Claude Code writes the report to a [local archive under ~/.claude/feedback-bundles/](/docs/en/data-usage#telemetry-services) that you forward yourself. In the [VS Code extension](/docs/en/vs-code#use-the-prompt-box), /bug opens the extension's own feedback dialog instead; requires Claude Code v2.1.229 or later. When you run it while Claude is responding, Claude Code opens the dialog immediately. Before v2.1.232, Claude Code queued the command until the turn finished. Alias: /share. Before v2.1.212, /bug and /share were aliases of /feedback never mined ○
/cdMove this session to a new working directory, keeping the conversation. Type a partial path to see matching directory suggestions; press Tab to accept one. The suggestions require Claude Code v2.1.206 or later. For what Claude Code applies from the new directory as soon as you move, and how /cd differs from /add-dir, see [Move the session to another directory](/docs/en/permissions#move-the-session-to-another-directory). Requires Claude Code v2.1.169 or later never mined ○
/chromeConfigure [Claude in Chrome](/docs/en/chrome) settings never mined ○
/claude-api[Skill](/docs/en/skills#bundled-skills). Load [Claude API](https://platform.claude.com/docs/en/api/overview) and Managed Agents reference material for your project's language. Also activates automatically when your code imports anthropic or @anthropic-ai/sdk. Run migrate to update existing Claude API code to a newer model; upgrade to move your project's Anthropic SDK dependency across a major version, currently the Python anthropic package from 0.x to 1.x; managed-agents-onboard for a walkthrough that creates a new Managed Agent; or prompt-audit to flag instructions written for older models in your prompts, skills, and tool descriptions and propose fixes as a diff. The prompt-audit subcommand requires Claude Code v2.1.221 or later, and upgrade requires v2.1.236 or later never mined ○
/clearStart a new conversation with empty context. Pass a name to label the previous conversation in the /resume picker. To free up context while continuing the same conversation, use /compact instead. Resume the previous conversation with /resume, or, in the same Claude Code process, restore it from [the rewind menu's previous-session entry](/docs/en/checkpointing#rewind-past-a-cleared-conversation). The rewind entry requires Claude Code v2.1.191 or later. Aliases: /reset, /new never mined ○
/cloud-pluginsYou now decide separately whether cloud sessions may use your plugins and your local settings. never mined ○ ◆
/code-review[Skill](/docs/en/skills#bundled-skills). Review the current diff, or a PR number, branch, or path you pass, for correctness bugs and cleanup opportunities. Pass --fix to apply findings, --comment to post them as inline GitHub PR comments, or ultra to run a deep [cloud review](/docs/en/ultrareview). With ultra on a github.com PR target, --post preselects [posting the finished findings to the PR](/docs/en/ultrareview#post-findings-to-the-pull-request) in the launch dialog. See [Review a diff locally](/docs/en/code-review#review-a-diff-locally) for the effort levels, targeting, and how it relates to /simplify. Alias: /review never mined ○
/colorSet the prompt bar color for the current session. Available colors: red, blue, green, yellow, purple, orange, pink, cyan. Use default to reset, or run with no argument to pick a random color. When [Remote Control](/docs/en/remote-control) is connected, the color syncs to claude.ai/code. Also available in non-interactive mode (-p); requires Claude Code v2.1.205 or later never mined ○
/commitA built-in commit command with a strict git workflow exists but is off unless a server enables it. never mined ○ ◆
/commit-push-prThe built-in commit-and-PR command can no longer use flags that rewrite history. never mined ○ ◆
/compactFree up context by summarizing the conversation so far. Optionally pass focus instructions for the summary. See [how compaction handles rules, skills, and memory files](/docs/en/context-window#what-survives-compaction) never mined ○
/configOpen the [Settings](/docs/en/settings) interface to adjust theme, model, [output style](/docs/en/output-styles), and other preferences. From v2.1.181, pass one or more key=value pairs to set a setting directly without opening the interface, for example /config thinking=false. From v2.1.182, named shorthand keys are also accepted, such as /config theme=dark or /config model=sonnet. The key=value form also works in non-interactive mode (-p) and from the Claude mobile app via [Remote Control](/docs/en/remote-control). The key=value form can't turn on a setting that needs your confirmation in the panel, such as [autoContinueAtUsageLimit](/docs/en/interactive-mode#turn-automatic-continue-off), though it can turn one off. Run /config --help to list the keys it accepts. Alias: /settings never mined ○
/contextVisualize current context usage as a colored grid. Shows optimization suggestions for context-heavy tools, memory bloat, and capacity warnings. When the conversation exceeds the context window, the output includes a [warning](/docs/en/errors#context-exceeds-the-token-limit) showing how far over the limit you are and which command frees space. In [fullscreen mode](/docs/en/fullscreen), /context collapses the per-item breakdown to keep the grid visible. Pass all to expand it never mined ○
/costAlias for /usage never mined ○
/debug[Skill](/docs/en/skills#bundled-skills). Enable debug logging for the current session and troubleshoot issues by reading the session debug log. Debug logging is off by default unless you started with claude --debug, so running /debug mid-session starts capturing logs from that point forward. Optionally describe the issue to focus the analysis never mined ○
/deep-research[Workflow](/docs/en/workflows#bundled-workflows). Fan out web searches on a question, fetch and cross-check sources, and synthesize a cited report never mined ○
/designA /design skill drafting multi-artboard canvases as editable Artifacts is bundled but switched off. never mined ○ ◆
/design-loginAuthorize design-system access for /design-sync with your claude.ai account never mined ○
/desktopContinue the current session in the Claude Code Desktop app. Requires macOS or x64 Windows and a Claude subscription. Alias: /app never mined ○
/diffOpen an interactive diff viewer showing uncommitted changes and per-turn diffs. Use left/right arrows to switch between the current git diff and individual Claude turns, and up/down to browse files. Press Enter to open the selected file's diff, scroll it with up/down or PageUp/PageDown, and press Esc to return to the file list. Claude Code computes these diffs from raw git blob content, so diff drivers and textconv filters configured in .gitattributes or git config don't apply. Before v2.1.222, workspace-configured drivers and filters could rewrite the viewer's output. The open viewer also refreshes automatically when the repository's git state changes outside the session, such as a branch switch or commit in another terminal; the auto-refresh requires Claude Code v2.1.198 or later never mined ○
/doctor[Skill](/docs/en/skills#bundled-skills). Run a setup checkup that diagnoses issues and can fix them. Checks installation health, including duplicate or leftover installs, PATH problems, and unparseable settings files. Finds unused skills, MCP servers, and plugins versus their context cost, flags slow [hooks](/docs/en/hooks), and checks for a newer version on your [release channel](/docs/en/setup#configure-release-channel). Deduplicates local CLAUDE.md files against checked-in ones, trims checked-in [CLAUDE.md](/docs/en/memory#my-claude-md-is-too-large) files by cutting content Claude could derive from the codebase, and migrates the always-loaded guidance that remains into [skills](/docs/en/skills) and nested CLAUDE.md files that load on demand. Also offers to make [auto mode](/docs/en/permissions#permission-modes) your default and to [pre-approve](/docs/en/permissions) frequently denied read-only commands. Reports findings first and asks for confirmation before changing anything. From the terminal, claude doctor prints read-only installation diagnostics without starting a session. Alias: /checkup. The CLAUDE.md trim check requires Claude Code v2.1.206 or later. Before v2.1.205, /doctor opened a read-only diagnostics screen and pressing f sent the report to Claude never mined ○
/exitExit the CLI. In an attached [background session](/docs/en/agent-view#attach-to-a-session), this detaches and the session keeps running. Alias: /quit never mined ○
/fastToggle [fast mode](/docs/en/fast-mode) on or off. Availability in non-interactive mode with -p is limited; see [Toggle fast mode](/docs/en/fast-mode#toggle-fast-mode). Requires Claude Code v2.1.205 or later never mined ○
/feedbackSend product feedback about Claude Code. Opens the same dialog as [/bug](#all-commands), with the same consent step, sending rules, and mid-turn behavior. In sessions with [Claude-drafted feedback](/docs/en/tools-reference#sendfeedback-tool-behavior), /feedback with no argument opens the drafts queue instead, where you review, edit, send, or discard the drafts Claude queued; the queue includes an option to write a new report in the dialog. With an argument, and for /bug always, the dialog opens directly never mined ○
/goalSet a [goal](/docs/en/goal): Claude keeps working across turns until the condition is met or the goal [clears for another reason](/docs/en/goal#how-evaluation-works). With no argument, shows the current or most recently achieved goal. clear, stop, off, reset, none, or cancel removes an active goal early never mined ○
/healthzThe runner and orchestrator serve Prometheus metrics at /metrics on the health port. never mined ○ ◆
/heapdumpWrite a JavaScript heap snapshot and a memory breakdown to ~/Desktop, or your home directory on Linux without a Desktop folder, for diagnosing high memory usage. Attach only the -diagnostics.json file when reporting a memory issue; the .heapsnapshot contains your full conversation and credentials, so don't share it. [Hidden from the command menu](#how-the-command-menu-matches-what-you-type); type it in full. See [what to do with the output](/docs/en/troubleshooting#high-cpu-or-memory-usage) never mined ○
/helpShow help and available commands never mined ○
/hooksView [hook](/docs/en/hooks) configurations for tool events never mined ○
/importBring configuration from other coding agents on your machine, currently OpenAI Codex and Google Gemini CLI, into Claude Code, including instruction files, MCP servers, commands, subagents, and skills. In [non-interactive mode](/docs/en/headless) with -p, /import lists what it found and gives you the command that confirms the import. Add --dry-run to preview without writing anything, or --yes to skip the interactive picker. Not available on Amazon Bedrock, Google Cloud's Agent Platform, Microsoft Foundry, or Claude Platform on AWS. Also unavailable when you turn off [feature-flag fetching](/docs/en/env-vars#features-that-need-feature-flag-fetching). Requires Claude Code v2.1.213 or later never mined ○
/initInitialize project with a CLAUDE.md guide. Set CLAUDE_CODE_NEW_INIT=1 for an interactive flow that also walks through skills, hooks, and personal memory files. If /init finds configuration from a coding agent that /import supports, it offers to carry it over with /import never mined ○
/insightsGenerate an HTML report analyzing your recent sessions on this machine: which projects you work in, how you use Claude Code, where things go wrong, and features to try. Not available in [cloud sessions](/docs/en/claude-code-on-the-web). See [Analyze your usage patterns](/docs/en/costs#analyze-your-usage-patterns) for the report location, retention, and cost never mined ○
/install-github-appInstall the Claude GitHub App for a repository, with an optional step to set up [GitHub Actions](/docs/en/github-actions) workflows and secrets. Walks you through selecting a repo and configuring the integration never mined ○
/install-slack-appInstall the Claude Slack app. Opens a browser to complete the OAuth flow never mined ○
/limit-resetYou could clear a five-hour session limit once a week, but the command stays hidden. never mined ○ ◆
/list-agentsList the subagents, [agent team](/docs/en/agent-teams) teammates, and other Claude Code sessions Claude can message, with the name to use for each. See [cross-session messaging](/docs/en/cross-session-messaging). Also available as /peers. Requires Claude Code v2.1.224 or later; earlier versions report Unknown command: /list-agents. Teammate rows and the first line showing this session's own name require v2.1.239 or later. Available only in sessions where [cross-session messaging is enabled](/docs/en/cross-session-messaging#availability) never mined ○
/loginSign in to your Anthropic account never mined ○
/logoutSign out from your Anthropic account never mined ○
/loop[Skill](/docs/en/skills#bundled-skills). Run a prompt repeatedly while the session stays open. Omit the interval and Claude [self-paces between iterations](/docs/en/scheduled-tasks#let-claude-choose-the-interval). Omit the prompt and Claude runs the [built-in maintenance prompt](/docs/en/scheduled-tasks#run-the-built-in-maintenance-prompt) or your [loop.md](/docs/en/scheduled-tasks#customize-the-default-prompt-with-loop-md). Example: /loop 5m check if the deploy finished. See [Run prompts on a schedule](/docs/en/scheduled-tasks). Alias: /proactive never mined ○
/loopsA /loops command for managing loops exists but declares itself permanently disabled. never mined ○ ◆
/low-priorityHitting the 5-hour limit could offer to keep working at reduced priority, but it is off for everyone. never mined ○ ◆
/mcpManage MCP server connections and OAuth authentication. Run with no argument to open the interactive list, pass reconnect <server> to reconnect one disconnected server, or pass enable/disable with a server name or all to change connection state without opening the dialog. Also available in non-interactive mode (-p), where running it with no argument prints a text summary of server status instead of opening the list; requires Claude Code v2.1.205 or later never mined ○
/memoryEdit CLAUDE.md files, enable or disable [auto memory](/docs/en/memory#auto-memory), and view auto memory entries never mined ○
/metricsThe runner and orchestrator serve Prometheus metrics at /metrics on the health port. never mined ○ ◆
/modelSwitch the AI model and save it as your default for new sessions. For models that support it, use left/right arrows to [adjust effort level](/docs/en/model-config#adjust-effort-level). With no argument, opens a picker; press s on a row to switch for the current session only. See [when Claude Code asks you to confirm the switch](/docs/en/prompt-caching#switching-models). Once confirmed, the change applies without waiting for the current response to finish. Also available in non-interactive mode (-p) with a model argument instead of the picker, where it applies to the current session only and isn't saved as your default; requires Claude Code v2.1.205 or later never mined ○
/output-styleYou can now pick a "Concise" output style so Claude leads with results and skips narration. never mined ○ ◆
/outputsCloud sessions now upload files you changed during a turn back to the session worker. never mined ○ ◆
/peersType /list-agents or /peers to see every Claude session you can message, with status and age. never mined ○ ◆
/permissionsManage allow, ask, and deny rules for tool permissions. Opens an interactive dialog where you can view rules by scope, add or remove rules, manage working directories, and review [recent auto mode denials](/docs/en/auto-mode-config#review-denials). You can also view and edit [auto mode classifier rules](/docs/en/auto-mode-config#edit-rules-from-permissions) from the dialog's Auto mode tab. When you run it while Claude is responding, Claude Code opens the dialog immediately and applies your changes starting with Claude's next tool call in the same turn. Before v2.1.234, Claude Code queued the command until the turn finished. Alias: /allowed-tools never mined ○
/planEnter plan mode directly from the prompt. Pass an optional description to enter plan mode and immediately start with that task, for example /plan fix the auth bug never mined ○
/pluginManage Claude Code [plugins](/docs/en/plugins). Run with no argument to open the plugin menu, or pass a subcommand such as list, install, enable, or disable to act directly. Claude Code can activate a plugin during the install; the [install summary](/docs/en/discover-plugins#install-plugins) tells you whether it did or whether to run /reload-plugins never mined ○
/plugin-typesType /plugin-types to generate a TypeScript file typing every connected MCP tool's arguments. never mined ○ ◆
/prA pr command that opens GitHub pull requests is bundled but gated off; pr-explainer is gone. never mined ○ ◆
/pr-reviewAn alternate PR-review description exists but you'll always see the original one. never mined ○ ◆
/pro-trial-expiredNew automatic prompts appear: a first-time auto mode warning, a spending threshold dialog and a worktree tip. never mined ○ ◆
/protocolThe gateway's protocol document is now generated to match how your deployment is actually configured. never mined ○ ◆
/prototypeYou're on build 2.1.223, with mostly cosmetic internal tidying alongside it. never mined ○ ◆
/rate-limit-optionsShow ways to keep working when a claude.ai usage limit blocks a request: wait and [continue automatically when the limit resets](/docs/en/interactive-mode#wait-for-a-usage-limit-to-reset), add [usage credits](/docs/en/costs#add-usage-credits-to-your-subscription), or upgrade your plan. Claude Code can also open this menu on its own when you hit a limit at your own terminal. See [Turn automatic continue off](/docs/en/interactive-mode#turn-automatic-continue-off). Requires a claude.ai subscription. Doesn't appear in the command menu; type it in full. The wait-and-continue rows require Claude Code v2.1.234 or later never mined ○
/recapGenerate a one-line summary of the current session on demand. See [Session recap](/docs/en/interactive-mode#session-recap) for the automatic recap that appears after you've been away never mined ○
/release-notesView the changelog in an interactive version picker. Select a specific version to see its release notes, or choose to show all versions. The notes appear in your transcript without entering the conversation Claude sees never mined ○
/reload-pluginsReload all active [plugins](/docs/en/plugins) to apply pending changes without restarting. Reports counts for each reloaded component and flags any load errors. When the reload would change which MCP tools are loaded and invalidate the prompt cache, the command warns and skips unless you pass --force never mined ○
/remoteLosing Remote Control now adds a transcript warning hinting at /remote-control to reconnect. never mined ○ ◆
/remote-controlMake this session available for [Remote Control](/docs/en/remote-control) from claude.ai. Running it while signed out prints that Remote Control requires a claude.ai subscription and tells you how to sign in; before v2.1.206 it reported Unknown command: /remote-control. Alias: /rc never mined ○
/renameRename the current session and show the name on the prompt bar. Without a name, auto-generates one from conversation history. Also available in non-interactive mode (-p); requires Claude Code v2.1.205 or later. From every rename surface, including claude.ai and the desktop app, Claude Code replaces control and invisible characters in the new name with spaces and caps the name at 200 characters. If the name is empty once invisible characters are removed, Claude Code rejects it and shows That name is empty once invisible characters are removed. Usage: /rename <name>. The character replacement and length cap require Claude Code v2.1.221 or later. If another live session on this machine already uses a name you pass, Claude Code applies [a variant of it](/docs/en/sessions#name-your-sessions) instead never mined ○
/resumeResume a conversation by ID or name, or open the session picker. [Background sessions](/docs/en/agent-view) appear in the picker marked with bg; one that is still running can't be resumed here, so attach to it from claude agents or stop it there first. Alias: /continue never mined ○
/reviewAlias of [/code-review](/docs/en/code-review#review-a-diff-locally): reviews the current diff, or a PR number, branch, or path you pass, such as /review 1234, and takes the same effort levels and flags. With no level given, the review reuses the last low through max level you typed; see [Review a diff locally](/docs/en/code-review#review-a-diff-locally) for the exact rules. For a deep cloud review, use [/code-review ultra](/docs/en/ultrareview). Before v2.1.223, /review was a separate command that ran a single-pass, read-only review of a GitHub pull request by number, listing open PRs to pick from when run with no argument; from v2.1.186 through v2.1.201, it ran the same multi-agent engine as /code-review medium never mined ○
/rewindRewind the conversation and/or code to a previous point, or summarize from a selected message. See [checkpointing](/docs/en/checkpointing). Aliases: /checkpoint, /undo never mined ○
/run[Skill](/docs/en/skills#bundled-skills). Launch and drive your project's app to see a change working, not only passing tests. See [Run and verify your app](/docs/en/skills#run-and-verify-your-app) never mined ○
/sandboxToggle [sandbox mode](/docs/en/sandboxing). Available on supported platforms only never mined ○
/scheduleCreate, update, list, or run [routines](/docs/en/routines), which execute in the cloud. Claude walks you through the setup conversationally. You can also ask about a [routine's recent runs](/docs/en/routines#manage-routines-from-the-cli). Alias: /routines never mined ○
/sessionCommands blocked in cloud sessions now tell you the exact local command to run instead. never mined ○ ◆
/simplify[Skill](/docs/en/skills#bundled-skills). Review the changed code for cleanup opportunities and apply the fixes. Four review [agents](/docs/en/sub-agents) run in parallel, covering reuse of existing helpers, simplification, efficiency, and whether the change is at the right level of abstraction. From v2.1.154, the review doesn't look for correctness bugs. Use /code-review to find bugs. On earlier versions, /simplify is equivalent to /code-review --fix. Pass a path or PR reference to review a specific target never mined ○
/skill-doctorA Stats tab in /plugin shows skill usage and context costs, with /skill-doctor redirecting there. never mined ○ ◆
/statusOpen the Settings interface on the Status tab, showing version, model, account, and connectivity. A Session kind row reads background job · attached or background job · unattended in a [background session](/docs/en/agent-view), depending on whether a terminal is attached, and interactive in any other session. Before v2.1.221, /status didn't show this row. Works while Claude is responding never mined ○
/statuslineConfigure Claude Code's [status line](/docs/en/statusline). Describe what you want, or run without arguments to auto-configure from your shell prompt never mined ○
/stopStop the current [background session](/docs/en/agent-view). Only available while attached to a background session; the transcript and any worktree are kept. To detach without stopping, use /exit or press ← never mined ○
/tasksView and manage background work in the current session, including subagents that have finished. Also available as /bashes never mined ○
/teleportPull a [Claude Code on the web](/docs/en/claude-code-on-the-web#from-web-to-terminal) session into this terminal. Opens a picker, then fetches the branch and conversation. Also available as /tp. Requires a claude.ai subscription never mined ○
/themeChange the color theme. Includes an auto option that matches your terminal's light or dark background, light and dark variants, colorblind-accessible (daltonized) themes, ANSI themes that use your terminal's color palette, and any [custom themes](/docs/en/terminal-config#create-a-custom-theme) from ~/.claude/themes/ or plugins. Select New custom theme… to create one never mined ○
/tuiSet the terminal UI renderer and relaunch into it with your conversation intact. fullscreen enables the [flicker-free alt-screen renderer](/docs/en/fullscreen). With no argument, prints the active renderer never mined ○
/ultrareviewRun a deep, multi-agent code review in a cloud sandbox with [ultrareview](/docs/en/ultrareview). Pass a PR reference to review that pull request, or a branch name to change the comparison base. The preferred invocation is now /code-review ultra, and /ultrareview remains as an alias. Includes 3 free runs on Pro and Max, then requires [usage credits](https://support.claude.com/en/articles/12429409-extra-usage-for-paid-claude-plans) never mined ○
/update/tui and /update now refuse to restart when it would lose session state, naming the exact blocker. never mined ○ ◆
/upgradeOpen the upgrade page in your browser to switch to a higher plan tier. When the browser fails to open, the command shows a sign-in prompt without printing the URL never mined ○
/usageShow session cost, plan usage limits, and activity stats. On a Pro, Max, Team, or Enterprise plan, includes a [breakdown of what counts against your plan limits](/docs/en/costs#plan-usage-breakdown). /cost and /stats are aliases never mined ○
/usage-creditsConfigure usage credits, or request them from your admin, when you hit a limit. Opens your [usage-credits billing settings](/docs/en/costs#add-usage-credits-to-your-subscription) in the browser, except that Team and Enterprise members without billing access instead send a usage-credits request to their admin from the CLI, after confirming in a dialog that the request notifies their admins. When no browser can open the billing page, for example over SSH, the command prints the URL to visit instead; this requires Claude Code v2.1.205 or later, and earlier versions showed nothing in that case. Previously /extra-usage never mined ○
/v1/modelsGateway models with vendor prefixes like anthropic. mid-name now show up as selectable options. never mined ○ ◆
/verify[Skill](/docs/en/skills#bundled-skills). Confirm a code change does what it should by building your project's app, running it, and observing the result, rather than relying on tests or type checks. See [Run and verify your app](/docs/en/skills#run-and-verify-your-app) never mined ○
/versionThis is build 2.1.248, and the /version command exists but is hardwired off. never mined ○ ◆
/voiceToggle [voice dictation](/docs/en/voice-dictation), or enable it in a specific mode. Requires a Claude.ai account never mined ○
/watchesInterrupting artifact activity now says watches are paused rather than stopped, including in /watches. never mined ○ ◆
/web-setupConnect your GitHub account to [Claude Code on the web](/docs/en/web-quickstart#connect-from-your-terminal) using your local gh CLI credentials never mined ○
/whiteboardYou're on build 2.1.223, with mostly cosmetic internal tidying alongside it. never mined ○ ◆
/workflowsOpen the [workflow](/docs/en/workflows#watch-the-run) progress view to watch, pause, resume, or save running and completed workflows never mined ○
Nothing matches that.