{"generatedAt":"2026-06-05T00:04:04.008Z","source":"https://code.claude.com/docs/en/commands.md","lang":"ja","intro":"Claude Code の全コマンドを、カテゴリ別に検索・閲覧できる非公式リファレンスです。","total":96,"untranslated":[],"stale":[],"categories":[{"name":"セットアップと設定","count":13},{"name":"モデルと推論","count":6},{"name":"コンテキストと会話","count":8},{"name":"セッションと移動","count":9},{"name":"並列・バックグラウンド処理","count":8},{"name":"コードレビューと品質","count":8},{"name":"Git と GitHub","count":4},{"name":"スキル・プラグイン・MCP","count":7},{"name":"権限とセキュリティ","count":4},{"name":"アカウントとプラン","count":12},{"name":"UI と表示","count":9},{"name":"診断とヘルプ","count":7},{"name":"その他","count":1}],"commands":[{"name":"/add-dir","slug":"add-dir","args":"<path>","type":"built-in","status":null,"aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"現在のセッションでファイルアクセスできる作業ディレクトリを追加します。追加したディレクトリ内の <code>.claude/</code> 設定の大半は読み込まれません。後から <code>--continue</code> や <code>--resume</code> で、追加したディレクトリからセッションを再開できます。","descriptionText":"現在のセッションでファイルアクセスできる作業ディレクトリを追加します。追加したディレクトリ内の .claude/ 設定の大半は読み込まれません。後から --continue や --resume で、追加したディレクトリからセッションを再開できます。","enText":"Add a working directory for file access during the current session. Most .claude/ configuration is not discovered from the added directory. You can later resume the session from the added directory with --continue or --resume"},{"name":"/agents","slug":"agents","args":"","type":"built-in","status":null,"aliases":[],"category":"並列・バックグラウンド処理","translated":true,"descriptionHtml":"サブエージェントの構成を管理します。","descriptionText":"サブエージェントの構成を管理します。","enText":"Manage agent configurations"},{"name":"/autofix-pr","slug":"autofix-pr","args":"[prompt]","type":"built-in","status":null,"aliases":[],"category":"Git と GitHub","translated":true,"descriptionHtml":"現在のブランチのPRを監視し、CIが失敗したりレビューコメントが付いたときに修正をpushする「Claude Code on the web」セッションを起動します。チェックアウト中のブランチから <code>gh pr view</code> でオープン中のPRを検出します。別のPRを監視するには、先にそのブランチをチェックアウトしてください。既定ではすべてのCI失敗とレビューコメントを修正するよう指示されますが、プロンプトを渡すと別の指示にできます（例: <code>/autofix-pr only fix lint and type errors</code>）。<code>gh</code> CLIと「Claude Code on the web」へのアクセスが必要です。","descriptionText":"現在のブランチのPRを監視し、CIが失敗したりレビューコメントが付いたときに修正をpushする「Claude Code on the web」セッションを起動します。チェックアウト中のブランチから gh pr view でオープン中のPRを検出します。別のPRを監視するには、先にそのブランチをチェックアウトしてください。既定ではすべてのCI失敗とレビューコメントを修正するよう指示されますが、プロンプトを渡すと別の指示にできます（例: /autofix-pr only fix lint and type errors）。gh CLIと「Claude Code on the web」へのアクセスが必要です。","enText":"Spawn a Claude Code on the web 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 remote 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"},{"name":"/background","slug":"background","args":"[prompt]","type":"built-in","status":null,"aliases":[],"category":"並列・バックグラウンド処理","translated":true,"descriptionHtml":"現在のセッションをバックグラウンドエージェントとして切り離し、ターミナルを解放します。プロンプトを渡すと、切り離す前にもう一つ指示を送れます。<code>claude agents</code> でセッションを監視できます。別名: <code>/bg</code>","descriptionText":"現在のセッションをバックグラウンドエージェントとして切り離し、ターミナルを解放します。プロンプトを渡すと、切り離す前にもう一つ指示を送れます。claude agents でセッションを監視できます。別名: /bg","enText":"Detach the current session to run as a background agent and free this terminal. Pass a prompt to send one more instruction before detaching. Monitor the session with claude agents. Alias: /bg"},{"name":"/batch","slug":"batch","args":"<instruction>","type":"skill","status":null,"aliases":[],"category":"並列・バックグラウンド処理","translated":true,"descriptionHtml":"コードベース全体にまたがる大規模な変更を並列で進めます。コードベースを調査し、作業を5〜30個の独立したユニットに分解して計画を提示します。承認後、ユニットごとに1つのバックグラウンドサブエージェントを独立した git worktree 上で起動します。各サブエージェントはユニットを実装し、テストを実行し、プルリクエストを作成します。gitリポジトリが必要です。例: <code>/batch migrate src/ from Solid to React</code>","descriptionText":"コードベース全体にまたがる大規模な変更を並列で進めます。コードベースを調査し、作業を5〜30個の独立したユニットに分解して計画を提示します。承認後、ユニットごとに1つのバックグラウンドサブエージェントを独立した git worktree 上で起動します。各サブエージェントはユニットを実装し、テストを実行し、プルリクエストを作成します。gitリポジトリが必要です。例: /batch migrate src/ from Solid to React","enText":"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 per unit in an isolated git worktree. Each subagent implements its unit, runs tests, and opens a pull request. Requires a git repository. Example: /batch migrate src/ from Solid to React"},{"name":"/branch","slug":"branch","args":"[name]","type":"built-in","status":null,"aliases":[],"category":"セッションと移動","translated":true,"descriptionHtml":"現在の会話をこの時点で分岐し、いまの会話を失わずに別の方向を試せます。分岐先に切り替わり、元の会話も保持されるので <code>/resume</code> で戻れます。自分でコピーに切り替えるのではなく、サブタスクをバックグラウンドのサブエージェントに任せたい場合は <code>/fork</code> を使います。","descriptionText":"現在の会話をこの時点で分岐し、いまの会話を失わずに別の方向を試せます。分岐先に切り替わり、元の会話も保持されるので /resume で戻れます。自分でコピーに切り替えるのではなく、サブタスクをバックグラウンドのサブエージェントに任せたい場合は /fork を使います。","enText":"Create a branch of the current conversation at this point, so you can try a different direction without losing the conversation as it stands. Switches you into the branch and preserves the original, which you can return to with /resume. To hand a side task to a background subagent instead of switching into a copy yourself, use /fork"},{"name":"/btw","slug":"btw","args":"<question>","type":"built-in","status":null,"aliases":[],"category":"コンテキストと会話","translated":true,"descriptionHtml":"会話に追加せずに、ちょっとした横道の質問をします。","descriptionText":"会話に追加せずに、ちょっとした横道の質問をします。","enText":"Ask a quick side question without adding to the conversation"},{"name":"/chrome","slug":"chrome","args":"","type":"built-in","status":null,"aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"Claude in Chrome の設定を行います。","descriptionText":"Claude in Chrome の設定を行います。","enText":"Configure Claude in Chrome settings"},{"name":"/claude-api","slug":"claude-api","args":"[migrate|managed-agents-onboard]","type":"skill","status":null,"aliases":[],"category":"スキル・プラグイン・MCP","translated":true,"descriptionHtml":"プロジェクトの言語（Python、TypeScript、Java、Go、Ruby、C#、PHP、cURL）向けのClaude APIリファレンスと、Managed Agentsのリファレンスを読み込みます。ツール使用、ストリーミング、バッチ、構造化出力、よくある落とし穴などをカバーします。コードが <code>anthropic</code> または <code>@anthropic-ai/sdk</code> をインポートすると自動的にも有効化されます。<code>/claude-api migrate</code> を実行すると既存のClaude APIコードを新しいモデルへ移行します（対象ファイルとモデルを尋ね、モデルID・thinking設定・バージョン間で変わったパラメータを更新）。<code>/claude-api managed-agents-onboard</code> では対話形式で新しいManaged Agentをゼロから作成できます。","descriptionText":"プロジェクトの言語（Python、TypeScript、Java、Go、Ruby、C#、PHP、cURL）向けのClaude APIリファレンスと、Managed Agentsのリファレンスを読み込みます。ツール使用、ストリーミング、バッチ、構造化出力、よくある落とし穴などをカバーします。コードが anthropic または @anthropic-ai/sdk をインポートすると自動的にも有効化されます。/claude-api migrate を実行すると既存のClaude APIコードを新しいモデルへ移行します（対象ファイルとモデルを尋ね、モデルID・thinking設定・バージョン間で変わったパラメータを更新）。/claude-api managed-agents-onboard では対話形式で新しいManaged Agentをゼロから作成できます。","enText":"Load Claude API reference material for your project's language (Python, TypeScript, Java, Go, Ruby, C#, PHP, or cURL) and Managed Agents reference. Covers tool use, streaming, batches, structured outputs, and common pitfalls. Also activates automatically when your code imports anthropic or @anthropic-ai/sdk. Run /claude-api migrate to upgrade existing Claude API code to a newer model: Claude asks which files to scan and which model to target, then updates model IDs, thinking configuration, and other parameters that changed between versions. Run /claude-api managed-agents-onboard for an interactive walkthrough that creates a new Managed Agent from scratch"},{"name":"/clear","slug":"clear","args":"[name]","type":"built-in","status":null,"aliases":["/reset","/new"],"category":"コンテキストと会話","translated":true,"descriptionHtml":"コンテキストを空にして新しい会話を開始します。直前の会話は <code>/resume</code> から引き続き利用できます。名前を渡すと <code>/resume</code> のピッカーで直前の会話にラベルを付けられます。同じ会話を続けながらコンテキストを空けたい場合は <code>/compact</code> を使ってください。別名: <code>/reset</code>, <code>/new</code>","descriptionText":"コンテキストを空にして新しい会話を開始します。直前の会話は /resume から引き続き利用できます。名前を渡すと /resume のピッカーで直前の会話にラベルを付けられます。同じ会話を続けながらコンテキストを空けたい場合は /compact を使ってください。別名: /reset, /new","enText":"Start a new conversation with empty context. The previous conversation stays available in /resume. Pass a name to label the previous conversation in the /resume picker. To free up context while continuing the same conversation, use /compact instead. Aliases: /reset, /new"},{"name":"/code-review","slug":"code-review","args":"[low|medium|high|xhigh|max|ultra] [--fix] [--comment] [target]","type":"skill","status":"v2.1.154+","aliases":[],"category":"コードレビューと品質","translated":true,"descriptionHtml":"現在の差分を、正しさのバグと、再利用・簡素化・効率化の観点でレビューします。<code>--fix</code> で修正を作業ツリーに適用、<code>--comment</code> でGitHub PRのインラインコメントとして投稿、<code>ultra</code> で深いクラウドレビューを実行します。v2.1.154以降、<code>/simplify</code> はバグ探索を行わないクリーンアップ専用レビューを別途実行します。効力レベルや対象指定の詳細は公式ドキュメントを参照してください。","descriptionText":"現在の差分を、正しさのバグと、再利用・簡素化・効率化の観点でレビューします。--fix で修正を作業ツリーに適用、--comment でGitHub PRのインラインコメントとして投稿、ultra で深いクラウドレビューを実行します。v2.1.154以降、/simplify はバグ探索を行わないクリーンアップ専用レビューを別途実行します。効力レベルや対象指定の詳細は公式ドキュメントを参照してください。","enText":"Review the current diff for correctness bugs and for reuse, simplification, and efficiency cleanups. Pass --fix to apply findings to your working tree, --comment to post them as inline GitHub PR comments, or ultra to run a deep cloud review. From v2.1.154, /simplify runs a separate cleanup-only review that applies fixes without hunting for bugs. See Review a diff locally for effort levels and targeting"},{"name":"/color","slug":"color","args":"[color|default]","type":"built-in","status":null,"aliases":[],"category":"UI と表示","translated":true,"descriptionHtml":"現在のセッションのプロンプトバーの色を設定します。利用できる色: <code>red</code>, <code>blue</code>, <code>green</code>, <code>yellow</code>, <code>purple</code>, <code>orange</code>, <code>pink</code>, <code>cyan</code>。<code>default</code> でリセット、引数なしでランダムに選択します。リモートコントロール接続時は、色が claude.ai/code と同期します。","descriptionText":"現在のセッションのプロンプトバーの色を設定します。利用できる色: red, blue, green, yellow, purple, orange, pink, cyan。default でリセット、引数なしでランダムに選択します。リモートコントロール接続時は、色が claude.ai/code と同期します。","enText":"Set 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 is connected, the color syncs to claude.ai/code"},{"name":"/compact","slug":"compact","args":"[instructions]","type":"built-in","status":null,"aliases":[],"category":"コンテキストと会話","translated":true,"descriptionHtml":"これまでの会話を要約してコンテキストを空けます。要約の焦点を指示として渡すこともできます。ルール・スキル・メモリファイルが要約でどう扱われるかは公式ドキュメントを参照してください。","descriptionText":"これまでの会話を要約してコンテキストを空けます。要約の焦点を指示として渡すこともできます。ルール・スキル・メモリファイルが要約でどう扱われるかは公式ドキュメントを参照してください。","enText":"Free up context by summarizing the conversation so far. Optionally pass focus instructions for the summary. See how compaction handles rules, skills, and memory files"},{"name":"/config","slug":"config","args":"","type":"built-in","status":null,"aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"テーマ、モデル、出力スタイルなどの設定を調整する設定画面を開きます。別名: <code>/settings</code>","descriptionText":"テーマ、モデル、出力スタイルなどの設定を調整する設定画面を開きます。別名: /settings","enText":"Open the Settings interface to adjust theme, model, output style, and other preferences. Alias: /settings"},{"name":"/context","slug":"context","args":"[all]","type":"built-in","status":null,"aliases":[],"category":"コンテキストと会話","translated":true,"descriptionHtml":"現在のコンテキスト使用量を色付きグリッドで可視化します。コンテキストを多く消費するツール、メモリの肥大化、容量警告などの最適化提案を表示します。フルスクリーンモードでは項目ごとの内訳は折りたたまれます。<code>all</code> を渡すと展開します。","descriptionText":"現在のコンテキスト使用量を色付きグリッドで可視化します。コンテキストを多く消費するツール、メモリの肥大化、容量警告などの最適化提案を表示します。フルスクリーンモードでは項目ごとの内訳は折りたたまれます。all を渡すと展開します。","enText":"Visualize current context usage as a colored grid. Shows optimization suggestions for context-heavy tools, memory bloat, and capacity warnings. In fullscreen mode the per-item breakdown is collapsed to keep the grid visible. Pass all to expand it"},{"name":"/copy","slug":"copy","args":"[N]","type":"built-in","status":null,"aliases":[],"category":"コンテキストと会話","translated":true,"descriptionHtml":"直前のアシスタント応答をクリップボードにコピーします。数値 <code>N</code> を渡すとN番目に新しい応答をコピーします（<code>/copy 2</code> は最後から2番目）。コードブロックがある場合は、個別のブロックや応答全体を選べる対話ピッカーを表示します。ピッカーで <code>w</code> を押すと、クリップボードではなくファイルに書き出せます（SSH越しに便利）。","descriptionText":"直前のアシスタント応答をクリップボードにコピーします。数値 N を渡すとN番目に新しい応答をコピーします（/copy 2 は最後から2番目）。コードブロックがある場合は、個別のブロックや応答全体を選べる対話ピッカーを表示します。ピッカーで w を押すと、クリップボードではなくファイルに書き出せます（SSH越しに便利）。","enText":"Copy the last assistant response to clipboard. Pass a number N to copy the Nth-latest response: /copy 2 copies the second-to-last. When code blocks are present, shows an interactive picker to select individual blocks or the full response. Press w in the picker to write the selection to a file instead of the clipboard, which is useful over SSH"},{"name":"/cost","slug":"cost","args":"","type":"built-in","status":null,"aliases":[],"category":"アカウントとプラン","translated":true,"descriptionHtml":"<code>/usage</code> の別名です。","descriptionText":"/usage の別名です。","enText":"Alias for /usage"},{"name":"/debug","slug":"debug","args":"[description]","type":"skill","status":null,"aliases":[],"category":"診断とヘルプ","translated":true,"descriptionHtml":"現在のセッションでデバッグログを有効にし、セッションのデバッグログを読んで問題を調査します。デバッグログは <code>claude --debug</code> で起動しない限り既定でオフのため、途中で <code>/debug</code> を実行するとその時点からログ取得を開始します。問題を説明すると分析の焦点を絞れます。","descriptionText":"現在のセッションでデバッグログを有効にし、セッションのデバッグログを読んで問題を調査します。デバッグログは claude --debug で起動しない限り既定でオフのため、途中で /debug を実行するとその時点からログ取得を開始します。問題を説明すると分析の焦点を絞れます。","enText":"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"},{"name":"/deep-research","slug":"deep-research","args":"<question>","type":"workflow","status":null,"aliases":[],"category":"並列・バックグラウンド処理","translated":true,"descriptionHtml":"ある問いについてWeb検索を広げ、情報源を取得・相互確認して、出典付きのレポートにまとめます。","descriptionText":"ある問いについてWeb検索を広げ、情報源を取得・相互確認して、出典付きのレポートにまとめます。","enText":"Fan out web searches on a question, fetch and cross-check sources, and synthesize a cited report"},{"name":"/desktop","slug":"desktop","args":"","type":"built-in","status":null,"aliases":[],"category":"セッションと移動","translated":true,"descriptionHtml":"現在のセッションをClaude Code デスクトップアプリで継続します。macOSまたはWindowsと、Claudeのサブスクリプションが必要です。別名: <code>/app</code>","descriptionText":"現在のセッションをClaude Code デスクトップアプリで継続します。macOSまたはWindowsと、Claudeのサブスクリプションが必要です。別名: /app","enText":"Continue the current session in the Claude Code Desktop app. Requires macOS or Windows and a Claude subscription. Alias: /app"},{"name":"/diff","slug":"diff","args":"","type":"built-in","status":null,"aliases":[],"category":"コードレビューと品質","translated":true,"descriptionHtml":"未コミットの変更とターンごとの差分を表示する対話的な差分ビューアを開きます。左右キーで現在のgit差分と各Claudeターンを切り替え、上下キーでファイルを閲覧します。","descriptionText":"未コミットの変更とターンごとの差分を表示する対話的な差分ビューアを開きます。左右キーで現在のgit差分と各Claudeターンを切り替え、上下キーでファイルを閲覧します。","enText":"Open 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"},{"name":"/doctor","slug":"doctor","args":"","type":"built-in","status":null,"aliases":[],"category":"診断とヘルプ","translated":true,"descriptionHtml":"Claude Codeのインストールと設定を診断・検証します。結果はステータスアイコンで表示されます。<code>f</code> を押すと、報告された問題をClaudeに修正させられます。","descriptionText":"Claude Codeのインストールと設定を診断・検証します。結果はステータスアイコンで表示されます。f を押すと、報告された問題をClaudeに修正させられます。","enText":"Diagnose and verify your Claude Code installation and settings. Results show with status icons. Press f to have Claude fix any reported issues"},{"name":"/effort","slug":"effort","args":"[level|auto]","type":"built-in","status":null,"aliases":[],"category":"モデルと推論","translated":true,"descriptionHtml":"モデルの効力（reasoning）レベルを設定します。<code>low</code>, <code>medium</code>, <code>high</code>, <code>xhigh</code>, <code>max</code>, <code>ultracode</code> を受け付けます。利用可能なレベルはモデルによります。<code>max</code> と <code>ultracode</code> はセッション限定です。<code>ultracode</code> は <code>xhigh</code> の推論と自動ワークフロー編成を組み合わせたClaude Codeの設定です。<code>auto</code> でモデル既定に戻します。引数なしで対話スライダーが開き、左右キーでレベルを選び <code>Enter</code> で適用します。現在の応答の完了を待たずに即時反映されます。","descriptionText":"モデルの効力（reasoning）レベルを設定します。low, medium, high, xhigh, max, ultracode を受け付けます。利用可能なレベルはモデルによります。max と ultracode はセッション限定です。ultracode は xhigh の推論と自動ワークフロー編成を組み合わせたClaude Codeの設定です。auto でモデル既定に戻します。引数なしで対話スライダーが開き、左右キーでレベルを選び Enter で適用します。現在の応答の完了を待たずに即時反映されます。","enText":"Set the model effort level. Accepts low, medium, high, xhigh, max, or ultracode; available levels depend on the model, and max and ultracode are session-only. ultracode is a Claude Code setting that combines xhigh reasoning with automatic workflow orchestration. auto resets to the model default. Without an argument, opens an interactive slider; use left and right arrows to pick a level and Enter to apply. Takes effect immediately without waiting for the current response to finish"},{"name":"/exit","slug":"exit","args":"","type":"built-in","status":null,"aliases":[],"category":"セッションと移動","translated":true,"descriptionHtml":"CLIを終了します。アタッチ中のバックグラウンドセッションでは切り離され、セッションは動き続けます。別名: <code>/quit</code>","descriptionText":"CLIを終了します。アタッチ中のバックグラウンドセッションでは切り離され、セッションは動き続けます。別名: /quit","enText":"Exit the CLI. In an attached background session, this detaches and the session keeps running. Alias: /quit"},{"name":"/export","slug":"export","args":"[filename]","type":"built-in","status":null,"aliases":[],"category":"コンテキストと会話","translated":true,"descriptionHtml":"現在の会話をプレーンテキストとしてエクスポートします。ファイル名を指定するとそのファイルに直接書き出し、指定しない場合はクリップボードへのコピーかファイル保存を選ぶダイアログを開きます。","descriptionText":"現在の会話をプレーンテキストとしてエクスポートします。ファイル名を指定するとそのファイルに直接書き出し、指定しない場合はクリップボードへのコピーかファイル保存を選ぶダイアログを開きます。","enText":"Export the current conversation as plain text. With a filename, writes directly to that file. Without, opens a dialog to copy to clipboard or save to a file"},{"name":"/fast","slug":"fast","args":"[on|off]","type":"built-in","status":null,"aliases":[],"category":"モデルと推論","translated":true,"descriptionHtml":"高速モードのオン/オフを切り替えます。","descriptionText":"高速モードのオン/オフを切り替えます。","enText":"Toggle fast mode on or off"},{"name":"/feedback","slug":"feedback","args":"[report]","type":"built-in","status":null,"aliases":["/bug","/share"],"category":"診断とヘルプ","translated":true,"descriptionHtml":"フィードバックの送信、バグ報告、会話の共有を行います。別名: <code>/bug</code>, <code>/share</code>","descriptionText":"フィードバックの送信、バグ報告、会話の共有を行います。別名: /bug, /share","enText":"Submit feedback, report a bug, or share your conversation. Aliases: /bug, /share"},{"name":"/fewer-permission-prompts","slug":"fewer-permission-prompts","args":"","type":"skill","status":null,"aliases":[],"category":"権限とセキュリティ","translated":true,"descriptionHtml":"トランスクリプトを走査して、読み取り専用のBashやMCPツール呼び出しでよく使うものを見つけ、優先順位付けした許可リストをプロジェクトの <code>.claude/settings.json</code> に追加し、権限プロンプトを減らします。","descriptionText":"トランスクリプトを走査して、読み取り専用のBashやMCPツール呼び出しでよく使うものを見つけ、優先順位付けした許可リストをプロジェクトの .claude/settings.json に追加し、権限プロンプトを減らします。","enText":"Scan your transcripts for common read-only Bash and MCP tool calls, then add a prioritized allowlist to project .claude/settings.json to reduce permission prompts"},{"name":"/focus","slug":"focus","args":"","type":"built-in","status":null,"aliases":[],"category":"UI と表示","translated":true,"descriptionHtml":"フォーカス表示を切り替えます。直近のプロンプト、編集差分の統計を含む1行のツール呼び出し要約、最終応答だけを表示します。選択はセッションをまたいで保持されます。設定の <code>viewMode</code> で上書きできます。フルスクリーン表示でのみ利用可能です。","descriptionText":"フォーカス表示を切り替えます。直近のプロンプト、編集差分の統計を含む1行のツール呼び出し要約、最終応答だけを表示します。選択はセッションをまたいで保持されます。設定の viewMode で上書きできます。フルスクリーン表示でのみ利用可能です。","enText":"Toggle the focus view, which shows only your last prompt, a one-line tool-call summary with edit diffstats, and the final response. The selection persists across sessions; set viewMode in settings to override it. Only available in fullscreen rendering"},{"name":"/fork","slug":"fork","args":"<directive>","type":"built-in","status":"v2.1.161+","aliases":[],"category":"その他","translated":true,"descriptionHtml":"フォークしたサブエージェントを起動します。会話全体を引き継いだバックグラウンドのサブエージェントが、あなたが作業を続ける間に指示を実行します。完了すると、その結果がこの会話に返されます。自分で会話のコピーに切り替えたい場合は <code>/branch</code> を使います。v2.1.161 より前では、<code>/fork</code> は <code>/branch</code> の別名です。","descriptionText":"フォークしたサブエージェントを起動します。会話全体を引き継いだバックグラウンドのサブエージェントが、あなたが作業を続ける間に指示を実行します。完了すると、その結果がこの会話に返されます。自分で会話のコピーに切り替えたい場合は /branch を使います。v2.1.161 より前では、/fork は /branch の別名です。","enText":"Spawn a forked subagent: a background subagent that inherits the full conversation and works on the directive while you keep going. Its result returns to your conversation when it finishes. To switch into a copy of the conversation yourself, use /branch. Before v2.1.161, /fork is an alias for /branch"},{"name":"/goal","slug":"goal","args":"[condition|clear]","type":"built-in","status":null,"aliases":[],"category":"モデルと推論","translated":true,"descriptionHtml":"ゴールを設定します。条件が満たされるまでClaudeはターンをまたいで作業を続けます。引数なしで現在または直近に達成したゴールを表示します。<code>clear</code>, <code>stop</code>, <code>off</code>, <code>reset</code>, <code>none</code>, <code>cancel</code> で有効なゴールを早めに解除します。","descriptionText":"ゴールを設定します。条件が満たされるまでClaudeはターンをまたいで作業を続けます。引数なしで現在または直近に達成したゴールを表示します。clear, stop, off, reset, none, cancel で有効なゴールを早めに解除します。","enText":"Set a goal: Claude keeps working across turns until the condition is met. With no argument, shows the current or most recently achieved goal. clear, stop, off, reset, none, or cancel removes an active goal early"},{"name":"/heapdump","slug":"heapdump","args":"","type":"built-in","status":null,"aliases":[],"category":"診断とヘルプ","translated":true,"descriptionHtml":"高メモリ使用の診断用に、JavaScriptのヒープスナップショットとメモリ内訳を <code>~/Desktop</code>（DesktopフォルダのないLinuxではホームディレクトリ）に書き出します。トラブルシューティングを参照してください。","descriptionText":"高メモリ使用の診断用に、JavaScriptのヒープスナップショットとメモリ内訳を ~/Desktop（DesktopフォルダのないLinuxではホームディレクトリ）に書き出します。トラブルシューティングを参照してください。","enText":"Write 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. See troubleshooting"},{"name":"/help","slug":"help","args":"","type":"built-in","status":null,"aliases":[],"category":"診断とヘルプ","translated":true,"descriptionHtml":"ヘルプと利用可能なコマンドを表示します。","descriptionText":"ヘルプと利用可能なコマンドを表示します。","enText":"Show help and available commands"},{"name":"/hooks","slug":"hooks","args":"","type":"built-in","status":null,"aliases":[],"category":"スキル・プラグイン・MCP","translated":true,"descriptionHtml":"ツールイベントに対するフック設定を表示します。","descriptionText":"ツールイベントに対するフック設定を表示します。","enText":"View hook configurations for tool events"},{"name":"/ide","slug":"ide","args":"","type":"built-in","status":null,"aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"IDE連携を管理し、状態を表示します。","descriptionText":"IDE連携を管理し、状態を表示します。","enText":"Manage IDE integrations and show status"},{"name":"/init","slug":"init","args":"","type":"built-in","status":null,"aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"<code>CLAUDE.md</code> ガイドでプロジェクトを初期化します。<code>CLAUDE_CODE_NEW_INIT=1</code> を設定すると、スキル・フック・個人用メモリファイルも案内する対話フローになります。","descriptionText":"CLAUDE.md ガイドでプロジェクトを初期化します。CLAUDE_CODE_NEW_INIT=1 を設定すると、スキル・フック・個人用メモリファイルも案内する対話フローになります。","enText":"Initialize 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"},{"name":"/insights","slug":"insights","args":"","type":"built-in","status":null,"aliases":[],"category":"アカウントとプラン","translated":true,"descriptionHtml":"プロジェクト領域、対話パターン、摩擦点などを分析するClaude Codeセッションのレポートを生成します。","descriptionText":"プロジェクト領域、対話パターン、摩擦点などを分析するClaude Codeセッションのレポートを生成します。","enText":"Generate a report analyzing your Claude Code sessions, including project areas, interaction patterns, and friction points"},{"name":"/install-github-app","slug":"install-github-app","args":"","type":"built-in","status":null,"aliases":[],"category":"Git と GitHub","translated":true,"descriptionHtml":"リポジトリ向けにClaude GitHub Actionsアプリをセットアップします。リポジトリの選択と連携設定を案内します。","descriptionText":"リポジトリ向けにClaude GitHub Actionsアプリをセットアップします。リポジトリの選択と連携設定を案内します。","enText":"Set up the Claude GitHub Actions app for a repository. Walks you through selecting a repo and configuring the integration"},{"name":"/install-slack-app","slug":"install-slack-app","args":"","type":"built-in","status":null,"aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"Claude Slackアプリをインストールします。ブラウザを開いてOAuthフローを完了します。","descriptionText":"Claude Slackアプリをインストールします。ブラウザを開いてOAuthフローを完了します。","enText":"Install the Claude Slack app. Opens a browser to complete the OAuth flow"},{"name":"/keybindings","slug":"keybindings","args":"","type":"built-in","status":null,"aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"キーバインド設定ファイルを開く、または作成します。","descriptionText":"キーバインド設定ファイルを開く、または作成します。","enText":"Open or create your keybindings configuration file"},{"name":"/login","slug":"login","args":"","type":"built-in","status":null,"aliases":[],"category":"アカウントとプラン","translated":true,"descriptionHtml":"Anthropicアカウントにサインインします。","descriptionText":"Anthropicアカウントにサインインします。","enText":"Sign in to your Anthropic account"},{"name":"/logout","slug":"logout","args":"","type":"built-in","status":null,"aliases":[],"category":"アカウントとプラン","translated":true,"descriptionHtml":"Anthropicアカウントからサインアウトします。","descriptionText":"Anthropicアカウントからサインアウトします。","enText":"Sign out from your Anthropic account"},{"name":"/loop","slug":"loop","args":"[interval] [prompt]","type":"skill","status":null,"aliases":[],"category":"並列・バックグラウンド処理","translated":true,"descriptionHtml":"セッションを開いたまま、プロンプトを繰り返し実行します。インターバルを省くとClaudeが反復のペースを自分で調整します。プロンプトを省くと、利用可能な場合はClaudeが自律的なメンテナンスチェックか <code>.claude/loop.md</code> のプロンプトを実行します。例: <code>/loop 5m check if the deploy finished</code>。別名: <code>/proactive</code>","descriptionText":"セッションを開いたまま、プロンプトを繰り返し実行します。インターバルを省くとClaudeが反復のペースを自分で調整します。プロンプトを省くと、利用可能な場合はClaudeが自律的なメンテナンスチェックか .claude/loop.md のプロンプトを実行します。例: /loop 5m check if the deploy finished。別名: /proactive","enText":"Run a prompt repeatedly while the session stays open. Omit the interval and Claude self-paces between iterations. Omit the prompt and, where available, Claude runs an autonomous maintenance check or the prompt in .claude/loop.md. Example: /loop 5m check if the deploy finished. See Run prompts on a schedule. Alias: /proactive"},{"name":"/mcp","slug":"mcp","args":"","type":"built-in","status":null,"aliases":[],"category":"スキル・プラグイン・MCP","translated":true,"descriptionHtml":"MCPサーバー接続とOAuth認証を管理します。","descriptionText":"MCPサーバー接続とOAuth認証を管理します。","enText":"Manage MCP server connections and OAuth authentication"},{"name":"/memory","slug":"memory","args":"","type":"built-in","status":null,"aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"<code>CLAUDE.md</code> メモリファイルの編集、オートメモリの有効/無効化、オートメモリ項目の表示を行います。","descriptionText":"CLAUDE.md メモリファイルの編集、オートメモリの有効/無効化、オートメモリ項目の表示を行います。","enText":"Edit CLAUDE.md memory files, enable or disable auto-memory, and view auto-memory entries"},{"name":"/mobile","slug":"mobile","args":"","type":"built-in","status":null,"aliases":["/ios","/android"],"category":"セッションと移動","translated":true,"descriptionHtml":"ClaudeモバイルアプリをダウンロードするQRコードを表示します。別名: <code>/ios</code>, <code>/android</code>","descriptionText":"ClaudeモバイルアプリをダウンロードするQRコードを表示します。別名: /ios, /android","enText":"Show QR code to download the Claude mobile app. Aliases: /ios, /android"},{"name":"/model","slug":"model","args":"[model]","type":"built-in","status":null,"aliases":[],"category":"モデルと推論","translated":true,"descriptionHtml":"AIモデルを切り替え、新規セッションの既定として保存します。対応モデルでは左右キーで効力レベルを調整できます。引数なしでピッカーが開きます。行で <code>s</code> を押すと現在のセッションのみ切り替えます。会話に過去の出力がある場合、次の応答はキャッシュなしで全履歴を読み直すため、ピッカーは確認を求めます。確定すると、現在の応答の完了を待たずに反映されます。","descriptionText":"AIモデルを切り替え、新規セッションの既定として保存します。対応モデルでは左右キーで効力レベルを調整できます。引数なしでピッカーが開きます。行で s を押すと現在のセッションのみ切り替えます。会話に過去の出力がある場合、次の応答はキャッシュなしで全履歴を読み直すため、ピッカーは確認を求めます。確定すると、現在の応答の完了を待たずに反映されます。","enText":"Switch 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. With no argument, opens a picker; press s on a row to switch for the current session only. The picker asks for confirmation when the conversation has prior output, since the next response re-reads the full history without cached context. Once confirmed, the change applies without waiting for the current response to finish"},{"name":"/passes","slug":"passes","args":"","type":"built-in","status":null,"aliases":[],"category":"アカウントとプラン","translated":true,"descriptionHtml":"Claude Codeの無料1週間を友人に共有します。アカウントが対象の場合のみ表示されます。","descriptionText":"Claude Codeの無料1週間を友人に共有します。アカウントが対象の場合のみ表示されます。","enText":"Share a free week of Claude Code with friends. Only visible if your account is eligible"},{"name":"/permissions","slug":"permissions","args":"","type":"built-in","status":null,"aliases":[],"category":"権限とセキュリティ","translated":true,"descriptionHtml":"ツール権限のallow/ask/denyルールを管理します。スコープ別のルール表示、ルールの追加・削除、作業ディレクトリの管理、最近の自動モード拒否の確認ができる対話ダイアログを開きます。別名: <code>/allowed-tools</code>","descriptionText":"ツール権限のallow/ask/denyルールを管理します。スコープ別のルール表示、ルールの追加・削除、作業ディレクトリの管理、最近の自動モード拒否の確認ができる対話ダイアログを開きます。別名: /allowed-tools","enText":"Manage 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. Alias: /allowed-tools"},{"name":"/plan","slug":"plan","args":"[description]","type":"built-in","status":null,"aliases":[],"category":"モデルと推論","translated":true,"descriptionHtml":"プロンプトから直接プランモードに入ります。任意で説明を渡すと、プランモードに入りそのタスクで即座に開始します（例: <code>/plan fix the auth bug</code>）。","descriptionText":"プロンプトから直接プランモードに入ります。任意で説明を渡すと、プランモードに入りそのタスクで即座に開始します（例: /plan fix the auth bug）。","enText":"Enter 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"},{"name":"/plugin","slug":"plugin","args":"","type":"built-in","status":null,"aliases":[],"category":"スキル・プラグイン・MCP","translated":true,"descriptionHtml":"Claude Codeのプラグインを管理します。","descriptionText":"Claude Codeのプラグインを管理します。","enText":"Manage Claude Code plugins"},{"name":"/powerup","slug":"powerup","args":"","type":"built-in","status":null,"aliases":[],"category":"UI と表示","translated":true,"descriptionHtml":"アニメーション付きデモを使った短い対話レッスンで、Claude Codeの機能を学べます。","descriptionText":"アニメーション付きデモを使った短い対話レッスンで、Claude Codeの機能を学べます。","enText":"Discover Claude Code features through quick interactive lessons with animated demos"},{"name":"/pr-comments","slug":"pr-comments","args":"[PR]","type":"built-in","status":"v2.1.91 で削除","aliases":[],"category":"Git と GitHub","translated":true,"descriptionHtml":"v2.1.91で削除されました。代わりにClaudeに直接プルリクエストのコメントを見るよう依頼してください。以前のバージョンでは、GitHubプルリクエストのコメントを取得・表示し、現在のブランチのPRを自動検出するか、PRのURLか番号を渡せました。<code>gh</code> CLIが必要です。","descriptionText":"v2.1.91で削除されました。代わりにClaudeに直接プルリクエストのコメントを見るよう依頼してください。以前のバージョンでは、GitHubプルリクエストのコメントを取得・表示し、現在のブランチのPRを自動検出するか、PRのURLか番号を渡せました。gh CLIが必要です。","enText":"Removed in v2.1.91. Ask Claude directly to view pull request comments instead. On earlier versions, fetches and displays comments from a GitHub pull request; automatically detects the PR for the current branch, or pass a PR URL or number. Requires the gh CLI"},{"name":"/privacy-settings","slug":"privacy-settings","args":"","type":"built-in","status":null,"aliases":[],"category":"アカウントとプラン","translated":true,"descriptionHtml":"プライバシー設定を表示・更新します。ProおよびMaxプランの加入者のみ利用できます。","descriptionText":"プライバシー設定を表示・更新します。ProおよびMaxプランの加入者のみ利用できます。","enText":"View and update your privacy settings. Only available for Pro and Max plan subscribers"},{"name":"/radio","slug":"radio","args":"","type":"built-in","status":null,"aliases":[],"category":"UI と表示","translated":true,"descriptionHtml":"ブラウザでClaude FMのlo-fiラジオを開きます。ブラウザがない場合はストリームURLを表示します。Bedrock、Vertex、Foundryでは利用できません。","descriptionText":"ブラウザでClaude FMのlo-fiラジオを開きます。ブラウザがない場合はストリームURLを表示します。Bedrock、Vertex、Foundryでは利用できません。","enText":"Open Claude FM lo-fi radio in your browser. Prints the stream URL when no browser is available. Not available on Bedrock, Vertex, or Foundry"},{"name":"/recap","slug":"recap","args":"","type":"built-in","status":null,"aliases":[],"category":"コンテキストと会話","translated":true,"descriptionHtml":"現在のセッションの1行要約をその場で生成します。離席後に自動表示される要約についてはSession recapを参照してください。","descriptionText":"現在のセッションの1行要約をその場で生成します。離席後に自動表示される要約についてはSession recapを参照してください。","enText":"Generate a one-line summary of the current session on demand. See Session recap for the automatic recap that appears after you've been away"},{"name":"/release-notes","slug":"release-notes","args":"","type":"built-in","status":null,"aliases":[],"category":"診断とヘルプ","translated":true,"descriptionHtml":"対話的なバージョンピッカーで変更履歴を表示します。特定のバージョンを選んでリリースノートを見るか、全バージョン表示を選べます。","descriptionText":"対話的なバージョンピッカーで変更履歴を表示します。特定のバージョンを選んでリリースノートを見るか、全バージョン表示を選べます。","enText":"View the changelog in an interactive version picker. Select a specific version to see its release notes, or choose to show all versions"},{"name":"/reload-plugins","slug":"reload-plugins","args":"","type":"built-in","status":null,"aliases":[],"category":"スキル・プラグイン・MCP","translated":true,"descriptionHtml":"再起動せずに、保留中の変更を反映するためすべての有効なプラグインを再読み込みします。再読み込みしたコンポーネントの数を報告し、読み込みエラーがあれば知らせます。","descriptionText":"再起動せずに、保留中の変更を反映するためすべての有効なプラグインを再読み込みします。再読み込みしたコンポーネントの数を報告し、読み込みエラーがあれば知らせます。","enText":"Reload all active plugins to apply pending changes without restarting. Reports counts for each reloaded component and flags any load errors"},{"name":"/reload-skills","slug":"reload-skills","args":"","type":"built-in","status":"v2.1.152+","aliases":[],"category":"スキル・プラグイン・MCP","translated":true,"descriptionHtml":"スキルとコマンドのディレクトリを再スキャンし、セッション中にディスク上で追加・変更されたスキルを再起動せずに利用できるようにします。利用可能なスキル数と、追加・削除された数を報告します。v2.1.152 で追加されました。","descriptionText":"スキルとコマンドのディレクトリを再スキャンし、セッション中にディスク上で追加・変更されたスキルを再起動せずに利用できるようにします。利用可能なスキル数と、追加・削除された数を報告します。v2.1.152 で追加されました。","enText":"Re-scan skill and command directories so skills added or changed on disk during the session become available without restarting. Reports how many skills are available and how many were added or removed. Added in v2.1.152"},{"name":"/remote-control","slug":"remote-control","args":"","type":"built-in","status":null,"aliases":[],"category":"セッションと移動","translated":true,"descriptionHtml":"claude.ai からこのセッションをリモートコントロールできるようにします。別名: <code>/rc</code>","descriptionText":"claude.ai からこのセッションをリモートコントロールできるようにします。別名: /rc","enText":"Make this session available for remote control from claude.ai. Alias: /rc"},{"name":"/remote-env","slug":"remote-env","args":"","type":"built-in","status":null,"aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"<code>--remote</code> で開始するWebセッションの既定リモート環境を設定します。","descriptionText":"--remote で開始するWebセッションの既定リモート環境を設定します。","enText":"Configure the default remote environment for web sessions started with --remote"},{"name":"/rename","slug":"rename","args":"[name]","type":"built-in","status":null,"aliases":[],"category":"コンテキストと会話","translated":true,"descriptionHtml":"現在のセッション名を変更し、プロンプトバーに表示します。名前を指定しない場合は会話履歴から自動生成します。","descriptionText":"現在のセッション名を変更し、プロンプトバーに表示します。名前を指定しない場合は会話履歴から自動生成します。","enText":"Rename the current session and show the name on the prompt bar. Without a name, auto-generates one from conversation history"},{"name":"/resume","slug":"resume","args":"[session]","type":"built-in","status":null,"aliases":[],"category":"セッションと移動","translated":true,"descriptionHtml":"IDまたは名前で会話を再開するか、セッションピッカーを開きます。v2.1.144以降、バックグラウンドセッションはピッカーで <code>bg</code> 印付きで表示されます。別名: <code>/continue</code>","descriptionText":"IDまたは名前で会話を再開するか、セッションピッカーを開きます。v2.1.144以降、バックグラウンドセッションはピッカーで bg 印付きで表示されます。別名: /continue","enText":"Resume a conversation by ID or name, or open the session picker. As of v2.1.144, background sessions appear in the picker marked with bg. Alias: /continue"},{"name":"/review","slug":"review","args":"[PR]","type":"built-in","status":null,"aliases":[],"category":"コードレビューと品質","translated":true,"descriptionHtml":"現在のセッションでプルリクエストをローカルにレビューします。より深いクラウドレビューは <code>/code-review ultra</code> を参照してください。","descriptionText":"現在のセッションでプルリクエストをローカルにレビューします。より深いクラウドレビューは /code-review ultra を参照してください。","enText":"Review a pull request locally in your current session. For a deeper cloud-based review, see /code-review ultra"},{"name":"/rewind","slug":"rewind","args":"","type":"built-in","status":null,"aliases":["/checkpoint","/undo"],"category":"セッションと移動","translated":true,"descriptionHtml":"会話やコードを以前の時点に巻き戻すか、選んだメッセージから要約します。チェックポイントを参照してください。別名: <code>/checkpoint</code>, <code>/undo</code>","descriptionText":"会話やコードを以前の時点に巻き戻すか、選んだメッセージから要約します。チェックポイントを参照してください。別名: /checkpoint, /undo","enText":"Rewind the conversation and/or code to a previous point, or summarize from a selected message. See checkpointing. Aliases: /checkpoint, /undo"},{"name":"/run","slug":"run","args":"","type":"skill","status":"v2.1.145+","aliases":[],"category":"コードレビューと品質","translated":true,"descriptionHtml":"テストだけに頼らず、プロジェクトのアプリを実際に起動・操作して変更が動いていることを確認します。「Run and verify your app」を参照してください。Claude Code v2.1.145以降が必要です。","descriptionText":"テストだけに頼らず、プロジェクトのアプリを実際に起動・操作して変更が動いていることを確認します。「Run and verify your app」を参照してください。Claude Code v2.1.145以降が必要です。","enText":"Launch and drive your project's app to see a change working in the running app, not just in tests. See Run and verify your app. Requires Claude Code v2.1.145 or later"},{"name":"/run-skill-generator","slug":"run-skill-generator","args":"","type":"skill","status":"v2.1.145+","aliases":[],"category":"コードレビューと品質","translated":true,"descriptionHtml":"<code>/run</code> と <code>/verify</code> に、クリーンな環境からプロジェクトのアプリをビルド・起動・操作する方法を、プロジェクト固有のスキルとして書いて教えます。Claude Code v2.1.145以降が必要です。","descriptionText":"/run と /verify に、クリーンな環境からプロジェクトのアプリをビルド・起動・操作する方法を、プロジェクト固有のスキルとして書いて教えます。Claude Code v2.1.145以降が必要です。","enText":"Teach /run and /verify how to build, launch, and drive your project's app from a clean environment by writing a per-project skill. Requires Claude Code v2.1.145 or later"},{"name":"/sandbox","slug":"sandbox","args":"","type":"built-in","status":null,"aliases":[],"category":"権限とセキュリティ","translated":true,"descriptionHtml":"サンドボックスモードを切り替えます。対応プラットフォームでのみ利用できます。","descriptionText":"サンドボックスモードを切り替えます。対応プラットフォームでのみ利用できます。","enText":"Toggle sandbox mode. Available on supported platforms only"},{"name":"/schedule","slug":"schedule","args":"[description]","type":"built-in","status":null,"aliases":[],"category":"並列・バックグラウンド処理","translated":true,"descriptionHtml":"Anthropic管理のクラウド基盤上で実行されるルーティンを作成・更新・一覧・実行します。Claudeが対話形式でセットアップを案内します。別名: <code>/routines</code>","descriptionText":"Anthropic管理のクラウド基盤上で実行されるルーティンを作成・更新・一覧・実行します。Claudeが対話形式でセットアップを案内します。別名: /routines","enText":"Create, update, list, or run routines, which execute on Anthropic-managed cloud infrastructure. Claude walks you through the setup conversationally. Alias: /routines"},{"name":"/scroll-speed","slug":"scroll-speed","args":"","type":"built-in","status":null,"aliases":[],"category":"UI と表示","translated":true,"descriptionHtml":"マウスホイールのスクロール速度を対話的に調整します。ダイアログを開いたままスクロールして変更をプレビューできる定規付きです。フルスクリーン表示のみ、JetBrains IDEのターミナルでは利用できません。","descriptionText":"マウスホイールのスクロール速度を対話的に調整します。ダイアログを開いたままスクロールして変更をプレビューできる定規付きです。フルスクリーン表示のみ、JetBrains IDEのターミナルでは利用できません。","enText":"Adjust mouse wheel scroll speed interactively, with a ruler you can scroll while the dialog is open to preview the change. Available in fullscreen rendering only and not in the JetBrains IDE terminal"},{"name":"/security-review","slug":"security-review","args":"","type":"built-in","status":null,"aliases":[],"category":"権限とセキュリティ","translated":true,"descriptionHtml":"現在のブランチの保留中の変更をセキュリティ脆弱性の観点で分析します。git差分をレビューし、インジェクション、認証の問題、データ露出などのリスクを特定します。","descriptionText":"現在のブランチの保留中の変更をセキュリティ脆弱性の観点で分析します。git差分をレビューし、インジェクション、認証の問題、データ露出などのリスクを特定します。","enText":"Analyze pending changes on the current branch for security vulnerabilities. Reviews the git diff and identifies risks like injection, auth issues, and data exposure"},{"name":"/setup-bedrock","slug":"setup-bedrock","args":"","type":"built-in","status":null,"aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"Amazon Bedrockの認証、リージョン、モデルのピン留めを対話ウィザードで設定します。<code>CLAUDE_CODE_USE_BEDROCK=1</code> が設定されている場合のみ表示されます。初回のBedrockユーザーはログイン画面からもこのウィザードにアクセスできます。","descriptionText":"Amazon Bedrockの認証、リージョン、モデルのピン留めを対話ウィザードで設定します。CLAUDE_CODE_USE_BEDROCK=1 が設定されている場合のみ表示されます。初回のBedrockユーザーはログイン画面からもこのウィザードにアクセスできます。","enText":"Configure Amazon Bedrock authentication, region, and model pins through an interactive wizard. Only visible when CLAUDE_CODE_USE_BEDROCK=1 is set. First-time Bedrock users can also access this wizard from the login screen"},{"name":"/setup-vertex","slug":"setup-vertex","args":"","type":"built-in","status":null,"aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"Google Vertex AIの認証、プロジェクト、リージョン、モデルのピン留めを対話ウィザードで設定します。<code>CLAUDE_CODE_USE_VERTEX=1</code> が設定されている場合のみ表示されます。初回のVertex AIユーザーはログイン画面からもこのウィザードにアクセスできます。","descriptionText":"Google Vertex AIの認証、プロジェクト、リージョン、モデルのピン留めを対話ウィザードで設定します。CLAUDE_CODE_USE_VERTEX=1 が設定されている場合のみ表示されます。初回のVertex AIユーザーはログイン画面からもこのウィザードにアクセスできます。","enText":"Configure Google Vertex AI authentication, project, region, and model pins through an interactive wizard. Only visible when CLAUDE_CODE_USE_VERTEX=1 is set. First-time Vertex AI users can also access this wizard from the login screen"},{"name":"/simplify","slug":"simplify","args":"[target]","type":"skill","status":"v2.1.154+","aliases":[],"category":"コードレビューと品質","translated":true,"descriptionHtml":"変更されたコードをクリーンアップの観点でレビューし、修正を適用します。4つのレビューエージェントが並列で動き、既存ヘルパーの再利用、簡素化、効率、抽象度の適切さをカバーします。v2.1.154以降、このレビューは正しさのバグを探しません。バグ探索には <code>/code-review</code> を使ってください。それ以前のバージョンでは <code>/simplify</code> は <code>/code-review --fix</code> と同等です。パスやPR参照を渡すと特定の対象をレビューできます。","descriptionText":"変更されたコードをクリーンアップの観点でレビューし、修正を適用します。4つのレビューエージェントが並列で動き、既存ヘルパーの再利用、簡素化、効率、抽象度の適切さをカバーします。v2.1.154以降、このレビューは正しさのバグを探しません。バグ探索には /code-review を使ってください。それ以前のバージョンでは /simplify は /code-review --fix と同等です。パスやPR参照を渡すと特定の対象をレビューできます。","enText":"Review the changed code for cleanup opportunities and apply the fixes. Four review agents run in parallel, covering reuse of existing helpers, simplification, efficiency, and whether the change sits at the right level of abstraction. From v2.1.154, the review does not 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"},{"name":"/skills","slug":"skills","args":"","type":"built-in","status":null,"aliases":[],"category":"スキル・プラグイン・MCP","translated":true,"descriptionHtml":"利用可能なスキルを一覧表示します。<code>t</code> でトークン数順に並べ替え、<code>Space</code> でスキルをClaudeや <code>/</code> メニューから隠し、<code>Enter</code> で保存します。","descriptionText":"利用可能なスキルを一覧表示します。t でトークン数順に並べ替え、Space でスキルをClaudeや / メニューから隠し、Enter で保存します。","enText":"List available skills. Press t to sort by token count. Press Space to hide a skill from Claude or the / menu, then Enter to save"},{"name":"/stats","slug":"stats","args":"","type":"built-in","status":null,"aliases":[],"category":"アカウントとプラン","translated":true,"descriptionHtml":"<code>/usage</code> の別名です。Statsタブで開きます。","descriptionText":"/usage の別名です。Statsタブで開きます。","enText":"Alias for /usage. Opens on the Stats tab"},{"name":"/status","slug":"status","args":"","type":"built-in","status":null,"aliases":[],"category":"診断とヘルプ","translated":true,"descriptionHtml":"バージョン、モデル、アカウント、接続状況を表示する設定画面（Statusタブ）を開きます。Claudeの応答中でも、現在の応答の完了を待たずに動作します。","descriptionText":"バージョン、モデル、アカウント、接続状況を表示する設定画面（Statusタブ）を開きます。Claudeの応答中でも、現在の応答の完了を待たずに動作します。","enText":"Open the Settings interface (Status tab) showing version, model, account, and connectivity. Works while Claude is responding, without waiting for the current response to finish"},{"name":"/statusline","slug":"statusline","args":"","type":"built-in","status":null,"aliases":[],"category":"UI と表示","translated":true,"descriptionHtml":"Claude Codeのステータスラインを設定します。望むものを説明するか、引数なしで実行するとシェルのプロンプトから自動設定します。","descriptionText":"Claude Codeのステータスラインを設定します。望むものを説明するか、引数なしで実行するとシェルのプロンプトから自動設定します。","enText":"Configure Claude Code's status line. Describe what you want, or run without arguments to auto-configure from your shell prompt"},{"name":"/stickers","slug":"stickers","args":"","type":"built-in","status":null,"aliases":[],"category":"アカウントとプラン","translated":true,"descriptionHtml":"Claude Codeのステッカーを注文します。","descriptionText":"Claude Codeのステッカーを注文します。","enText":"Order Claude Code stickers"},{"name":"/stop","slug":"stop","args":"","type":"built-in","status":null,"aliases":[],"category":"セッションと移動","translated":true,"descriptionHtml":"現在のバックグラウンドセッションを停止します。バックグラウンドセッションにアタッチ中のみ利用可能で、トランスクリプトとworktreeは保持されます。停止せずに切り離すには <code>/exit</code> か <code>←</code> を使ってください。","descriptionText":"現在のバックグラウンドセッションを停止します。バックグラウンドセッションにアタッチ中のみ利用可能で、トランスクリプトとworktreeは保持されます。停止せずに切り離すには /exit か ← を使ってください。","enText":"Stop the current background session. Only available while attached to a background session; the transcript and any worktree are kept. To detach without stopping, use /exit or press ←"},{"name":"/tasks","slug":"tasks","args":"","type":"built-in","status":null,"aliases":["/bashes"],"category":"並列・バックグラウンド処理","translated":true,"descriptionHtml":"バックグラウンドタスクを一覧・管理します。<code>/bashes</code> としても利用できます。","descriptionText":"バックグラウンドタスクを一覧・管理します。/bashes としても利用できます。","enText":"List and manage background tasks. Also available as /bashes"},{"name":"/team-onboarding","slug":"team-onboarding","args":"","type":"built-in","status":null,"aliases":[],"category":"アカウントとプラン","translated":true,"descriptionHtml":"Claude Codeの利用履歴からチームのオンボーディングガイドを生成します。Claudeが過去30日のセッション・コマンド・MCPサーバー利用を分析し、チームメイトが最初のメッセージとして貼り付けてすぐ始められるmarkdownガイドを作成します。Pro・Max・Team・Enterpriseプランのclaude.ai加入者には、Claude Codeで直接開ける共有リンクも返します。","descriptionText":"Claude Codeの利用履歴からチームのオンボーディングガイドを生成します。Claudeが過去30日のセッション・コマンド・MCPサーバー利用を分析し、チームメイトが最初のメッセージとして貼り付けてすぐ始められるmarkdownガイドを作成します。Pro・Max・Team・Enterpriseプランのclaude.ai加入者には、Claude Codeで直接開ける共有リンクも返します。","enText":"Generate a team onboarding guide from your Claude Code usage history. Claude analyzes your sessions, commands, and MCP server usage from the past 30 days and produces a markdown guide a teammate can paste as a first message to get set up quickly. For claude.ai subscribers on Pro, Max, Team, and Enterprise plans, also returns a share link teammates can open directly in Claude Code"},{"name":"/teleport","slug":"teleport","args":"","type":"built-in","status":null,"aliases":["/tp"],"category":"セッションと移動","translated":true,"descriptionHtml":"「Claude Code on the web」のセッションをこのターミナルに引き込みます。ピッカーを開き、ブランチと会話を取得します。<code>/tp</code> としても利用できます。claude.aiのサブスクリプションが必要です。","descriptionText":"「Claude Code on the web」のセッションをこのターミナルに引き込みます。ピッカーを開き、ブランチと会話を取得します。/tp としても利用できます。claude.aiのサブスクリプションが必要です。","enText":"Pull a Claude Code on the web session into this terminal: opens a picker, then fetches the branch and conversation. Also available as /tp. Requires a claude.ai subscription"},{"name":"/terminal-setup","slug":"terminal-setup","args":"","type":"built-in","status":null,"aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"Shift+Enterなどのショートカット用にターミナルのキーバインドを設定します。VS Code、Cursor、Devin Desktop、Alacritty、Zedなど、必要なターミナルでのみ表示されます。","descriptionText":"Shift+Enterなどのショートカット用にターミナルのキーバインドを設定します。VS Code、Cursor、Devin Desktop、Alacritty、Zedなど、必要なターミナルでのみ表示されます。","enText":"Configure terminal keybindings for Shift+Enter and other shortcuts. Only visible in terminals that need it, like VS Code, Cursor, Devin Desktop, Alacritty, or Zed"},{"name":"/theme","slug":"theme","args":"","type":"built-in","status":null,"aliases":[],"category":"UI と表示","translated":true,"descriptionHtml":"カラーテーマを変更します。ターミナルの明暗背景に合わせる <code>auto</code>、ライト/ダークの各種、色覚補助（daltonized）テーマ、ターミナルのパレットを使うANSIテーマ、<code>~/.claude/themes/</code> やプラグインのカスタムテーマを含みます。「New custom theme…」を選ぶと新規作成できます。","descriptionText":"カラーテーマを変更します。ターミナルの明暗背景に合わせる auto、ライト/ダークの各種、色覚補助（daltonized）テーマ、ターミナルのパレットを使うANSIテーマ、~/.claude/themes/ やプラグインのカスタムテーマを含みます。「New custom theme…」を選ぶと新規作成できます。","enText":"Change 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 from ~/.claude/themes/ or plugins. Select New custom theme… to create one"},{"name":"/tui","slug":"tui","args":"[default|fullscreen]","type":"built-in","status":null,"aliases":[],"category":"UI と表示","translated":true,"descriptionHtml":"ターミナルUIのレンダラーを設定し、会話を保ったままそのUIで再起動します。<code>fullscreen</code> はちらつきのないalt-screenレンダラーを有効にします。引数なしで現在のレンダラーを表示します。","descriptionText":"ターミナルUIのレンダラーを設定し、会話を保ったままそのUIで再起動します。fullscreen はちらつきのないalt-screenレンダラーを有効にします。引数なしで現在のレンダラーを表示します。","enText":"Set the terminal UI renderer and relaunch into it with your conversation intact. fullscreen enables the flicker-free alt-screen renderer. With no argument, prints the active renderer"},{"name":"/ultraplan","slug":"ultraplan","args":"<prompt>","type":"built-in","status":null,"aliases":[],"category":"モデルと推論","translated":true,"descriptionHtml":"ultraplanセッションでプランを作成し、ブラウザでレビューしてから、リモートで実行するかターミナルに送り返します。","descriptionText":"ultraplanセッションでプランを作成し、ブラウザでレビューしてから、リモートで実行するかターミナルに送り返します。","enText":"Draft a plan in an ultraplan session, review it in your browser, then execute remotely or send it back to your terminal"},{"name":"/ultrareview","slug":"ultrareview","args":"[PR]","type":"built-in","status":null,"aliases":[],"category":"コードレビューと品質","translated":true,"descriptionHtml":"クラウドサンドボックスで深いマルチエージェントのコードレビューを実行します（ultrareview）。推奨の起動方法は <code>/code-review ultra</code> になり、<code>/ultrareview</code> は別名として残ります。ProとMaxで3回まで無料、その後は利用クレジットが必要です。","descriptionText":"クラウドサンドボックスで深いマルチエージェントのコードレビューを実行します（ultrareview）。推奨の起動方法は /code-review ultra になり、/ultrareview は別名として残ります。ProとMaxで3回まで無料、その後は利用クレジットが必要です。","enText":"Run a deep, multi-agent code review in a cloud sandbox with ultrareview. 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"},{"name":"/upgrade","slug":"upgrade","args":"","type":"built-in","status":null,"aliases":[],"category":"アカウントとプラン","translated":true,"descriptionHtml":"上位プランに切り替えるためのアップグレードページを開きます。","descriptionText":"上位プランに切り替えるためのアップグレードページを開きます。","enText":"Open the upgrade page to switch to a higher plan tier"},{"name":"/usage","slug":"usage","args":"","type":"built-in","status":null,"aliases":[],"category":"アカウントとプラン","translated":true,"descriptionHtml":"セッションのコスト、プランの利用上限、活動統計を表示します。Pro・Max・Team・Enterpriseプランでは、スキル・サブエージェント・プラグイン・MCPサーバー別の内訳も含みます。詳細はコスト管理ガイドを参照してください。<code>/cost</code> と <code>/stats</code> は別名です。","descriptionText":"セッションのコスト、プランの利用上限、活動統計を表示します。Pro・Max・Team・Enterpriseプランでは、スキル・サブエージェント・プラグイン・MCPサーバー別の内訳も含みます。詳細はコスト管理ガイドを参照してください。/cost と /stats は別名です。","enText":"Show session cost, plan usage limits, and activity stats. On a Pro, Max, Team, or Enterprise plan, includes a breakdown of usage by skill, subagent, plugin, and MCP server. See the cost tracking guide for details. /cost and /stats are aliases"},{"name":"/usage-credits","slug":"usage-credits","args":"","type":"built-in","status":null,"aliases":[],"category":"アカウントとプラン","translated":true,"descriptionHtml":"上限に達しても作業を続けられるよう利用クレジットを設定します。以前は <code>/extra-usage</code> でした。","descriptionText":"上限に達しても作業を続けられるよう利用クレジットを設定します。以前は /extra-usage でした。","enText":"Configure usage credits to keep working when you hit a limit. Previously /extra-usage"},{"name":"/verify","slug":"verify","args":"","type":"skill","status":"v2.1.145+","aliases":[],"category":"コードレビューと品質","translated":true,"descriptionHtml":"テストや型チェックに頼らず、プロジェクトのアプリをビルド・起動して結果を観察し、コード変更が意図どおり動くことを確認します。「Run and verify your app」を参照してください。Claude Code v2.1.145以降が必要です。","descriptionText":"テストや型チェックに頼らず、プロジェクトのアプリをビルド・起動して結果を観察し、コード変更が意図どおり動くことを確認します。「Run and verify your app」を参照してください。Claude Code v2.1.145以降が必要です。","enText":"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. Requires Claude Code v2.1.145 or later"},{"name":"/vim","slug":"vim","args":"","type":"built-in","status":"v2.1.92 で削除","aliases":[],"category":"セットアップと設定","translated":true,"descriptionHtml":"v2.1.92で削除されました。VimモードとNormalモードを切り替えるには <code>/config</code> → Editor mode を使ってください。","descriptionText":"v2.1.92で削除されました。VimモードとNormalモードを切り替えるには /config → Editor mode を使ってください。","enText":"Removed in v2.1.92. To toggle between Vim and Normal editing modes, use /config → Editor mode"},{"name":"/voice","slug":"voice","args":"[hold|tap|off]","type":"built-in","status":null,"aliases":[],"category":"UI と表示","translated":true,"descriptionHtml":"音声入力（ディクテーション）を切り替える、または特定のモードで有効にします。Claude.aiアカウントが必要です。","descriptionText":"音声入力（ディクテーション）を切り替える、または特定のモードで有効にします。Claude.aiアカウントが必要です。","enText":"Toggle voice dictation, or enable it in a specific mode. Requires a Claude.ai account"},{"name":"/web-setup","slug":"web-setup","args":"","type":"built-in","status":null,"aliases":[],"category":"Git と GitHub","translated":true,"descriptionHtml":"ローカルの <code>gh</code> CLI認証情報を使って、GitHubアカウントを「Claude Code on the web」に接続します。GitHubが未接続の場合、<code>/schedule</code> が自動的にこれを促します。","descriptionText":"ローカルの gh CLI認証情報を使って、GitHubアカウントを「Claude Code on the web」に接続します。GitHubが未接続の場合、/schedule が自動的にこれを促します。","enText":"Connect your GitHub account to Claude Code on the web using your local gh CLI credentials. /schedule prompts for this automatically if GitHub isn't connected"},{"name":"/workflows","slug":"workflows","args":"","type":"built-in","status":null,"aliases":[],"category":"並列・バックグラウンド処理","translated":true,"descriptionHtml":"ワークフローの進捗ビューを開き、実行中・完了したワークフローの監視・一時停止・再開・保存を行います。","descriptionText":"ワークフローの進捗ビューを開き、実行中・完了したワークフローの監視・一時停止・再開・保存を行います。","enText":"Open the workflow progress view to watch, pause, resume, or save running and completed workflows"}]}