コーディング用スラッシュコマンド早見表

最終更新: 2026-07-23/網羅リファレンスの公式ドキュメント最終確認: 2026-07-23
表示
ツール
種別
用途ツールコマンド
計画・設計Claude Code(Plan Mode) 公式(標準)
実装前に設計案を作って承認をもらってから着手するモード。3ファイル以上触る変更や仕様変更時に使う
計画・設計Claude Codeengineering:system-design 公式(プラグイン)
API設計・データモデリング・サービス境界など、システム設計そのものを相談したいときに使う
計画・設計Claude Codeengineering:architecture 公式(プラグイン)
技術選定の比較・設計判断を ADR(決定記録)としてまとめたいときに使う
計画・設計Cursor(Plan Mode) 公式(標準)
実装前に設計案を作って承認をもらってから着手するモード。3ファイル以上触る変更や仕様変更時に使う
計画・設計Cursorrecommended-options 独自
ライブラリ選定・実装方針など迷う場面で「選択肢+推奨度+理由」をセットで提示させたいときに使う
定義元の説明: 不明点や意思決定が必要なとき、利用可能なら AskQuestion で選択肢・推奨度(⭐5段階)・理由をセットで提示する。 ツールが使えない環境では Markdown リストにフォールバックする。 仕様検討、ライブラリ選定、実装方針の確認、曖昧な要求の明確化時に使用する。 推奨度付き選択肢、推奨度と理由付きで聞いて、などの依頼時にも適用する。
(cursor/skills/recommended-options/SKILL.md)
プロジェクト把握Claude Code/init 公式(標準)
初めて触るリポジトリでCLAUDE.mdを新規作成し、コード構成をまとめさせたいときに使う
プロジェクト把握Claude Code/spec-summary 独自
「今何を実装してるか教えて」というときに、前回更新以降の差分だけ読んでdocs/SPEC.mdを更新させる
定義元の説明: プロジェクトの現状の実装仕様を docs/SPEC.md にまとめる・更新する。全ファイル読み直しはせず前回更新以降の git 差分だけ読んで追記。「現状の実装仕様をまとめて」「今実装してる内容を教えて」「仕様書更新して」で起動。
(claude/skills/spec-summary/SKILL.md)
プロジェクト把握Cursorinit 独自
初めて触るリポジトリを分析してAGENTS.mdを生成・更新させたいときに使う
定義元の説明: コードベースをシニアソフトウェアアーキテクトとして分析し、実態に基づいて AGENTS.md を生成する。 プロジェクトルールの初期化、/init、AGENTS.md の作成・更新、エージェント指示のセットアップ時に使用する。
(cursor/skills/init/SKILL.md)
プロジェクト把握Cursoronboard 公式(プラグイン)
Cursorを使い始める最初の一歩として、好みを聞きながら最初のゴールへ導いてもらいたいときに使う
定義元の説明: Use /onboard for a focused Cursor onboarding flow that learns basic preferences, picks a first goal, and routes the user to the right next action.
(cursor/skills-cursor/onboard/SKILL.md)
中断・再開Claude Code/handoff 独自
作業を一旦中断するとき/翌日以降に続きから再開したいときに、完了・次にやること・懸念点を記録/参照する
定義元の説明: 作業の中断・再開の引き継ぎを docs/HANDOFF.md に記録・参照する(完了したこと/次にやること/気になっていることの3点)。「一旦中断」「ここまでで引き継ぎ書いて」(書き出し)、「続きから」「HANDOFF読んで再開」(再開)で起動。
(claude/skills/handoff/SKILL.md)
中断・再開Cursor 公式(標準)
対応コマンドなし
コードレビューClaude Code/code-review 公式(標準)
今の作業中の差分(working diff)をレビューしてほしいときに使う
コードレビューClaude Codeengineering:code-review 公式(プラグイン)
PRのURLやdiffを渡して、N+1・injection・エラー処理漏れなどをまとめてレビューしてほしいときに使う
コードレビューCursorreview 公式(プラグイン)
Bugbot(バグ検出)かSecurity Review、どちらでレビューするか選んで実行したいときに使う
定義元の説明: Review code changes with the Bugbot or Security Review subagent.
(cursor/skills-cursor/review/SKILL.md)
コードレビューCursorcoding-review 独自
プロジェクト全体をバグ・セキュリティ・保守性など多観点でレビューし、優先度付きの指摘+修正プロンプトをファイル出力させたいときに使う
定義元の説明: プロジェクト全体のコードをレビューし、バグ・セキュリティ・パフォーマンス・保守性・可読性・SEO・命名規則・エラーハンドリング・各言語/フレームワーク/ライブラリのベストプラクティス観点で問題点を抽出する。各問題は番号・対応優先度・問題箇所・問題点・修正対応案・AI修正用プロンプトの形式でMarkdownファイルに出力する。コードレビューを依頼されたとき、/coding-review 実行時、部下やメンバーのコードをチェックしたいときに使用する。
(cursor/skills/coding-review/SKILL.md)
コードレビューCursorfrontend-code-review 独自
フロントエンドのPR・コードを、HTML/CSS/TS/Reactの観点でレビューしてほしいときに使う(a11y/SEO/性能は専用スキルに任せる)
定義元の説明: Use this skill when the user asks to review frontend code or a pull request, or asks about problems in the code. Triggers include 「レビューして」「PRを見て」「コードチェック」「コードの問題を教えて」 「pull requestを確認して」. Produces priority-tagged feedback covering HTML semantics, CSS design, TypeScript/React patterns, security, and general code quality. Defers deep a11y / SEO / performance audits to the dedicated agents (`sa-a11y`, `sa-seo`, `sa-performance`).
(cursor/skills/frontend-code-review/SKILL.md)
コードレビューCursorself-review 独自
自分(AI)が作った成果物を、人に見せる前にAI自身で最大3回レビュー&改善させたいときに使う
定義元の説明: 生成物(コード・ドキュメント)に対し、レビューと改善を最大3回反復する。 /self-review 実行時、セルフレビュー反復、レビューと改善を3回、 実装後の品質向上、ドキュメントの仕上げ時に使用する。
(cursor/skills/self-review/SKILL.md)
コードレビューCursorreview-bugbot 公式(プラグイン)
Bugbotサブエージェントでバグ観点のレビューだけを実行したいときに使う
定義元の説明: Review code changes with Bugbot subagent.
(cursor/skills-cursor/review-bugbot/SKILL.md)
セキュリティレビューClaude Code/security-review 公式(標準)
今のブランチの保留中の変更に脆弱性がないか、マージ前にセキュリティ観点でチェックしたいときに使う
セキュリティレビューCursorreview-security 公式(プラグイン)
Security Reviewサブエージェントでセキュリティ観点だけのレビューを実行したいときに使う
定義元の説明: Review code changes with Security Review subagent.
(cursor/skills-cursor/review-security/SKILL.md)
簡素化・品質Claude Code/simplify 公式(標準)
バグ探しではなく、重複コードの整理・簡素化・効率化だけをやってほしいときに使う
簡素化・品質Claude Code/remove-console 独自
src配下に残ったconsole.*をコミット前に一括削除したいときに使う
定義元の説明: src/配下の全JSファイルからconsole.*を一括削除(sedで処理しトークン消費を最小化)
(claude/skills/remove-console/SKILL.md)
簡素化・品質Claude Code/config-audit 独自
「設定値が実装にちゃんと反映されてるか確認して」というときに、未参照キーやハードコード値を検査させる
定義元の説明: config.json 等の設定値と実装コードの整合を検査する(未参照キー・ハードコード値・アセット実在確認)。深刻度別にレポートし修正は提案のみ。「configと実装の整合をチェックして」「設定値が反映されてるか確認して」で起動。
(claude/skills/config-audit/SKILL.md)
簡素化・品質Cursorself-review 独自
実装後・ドキュメント仕上げ時に、人に見せる前のセルフレビュー&改善を数回回したいときに使う
定義元の説明: 生成物(コード・ドキュメント)に対し、レビューと改善を最大3回反復する。 /self-review 実行時、セルフレビュー反復、レビューと改善を3回、 実装後の品質向上、ドキュメントの仕上げ時に使用する。
(cursor/skills/self-review/SKILL.md)
デバッグClaude Codeengineering:debug 公式(プラグイン)
「本番では起きるがステージングでは起きない」など原因不明のバグを、再現→切り分け→診断→修正の手順で追いたいときに使う
デバッグClaude Code/device-debug 独自
iOS/Android/8th Wallなど実機固有の不具合(OS差・カメラ/トラッキング不安定等)の原因を仮説立てて調べたいときに使う
定義元の説明: iOS/Android/8th Wall 等の実機固有の不具合をトリアージする(OSバージョン差、AR/カメラ・トラッキング不安定等)。既知事例と照合しWeb検索で仕様変更を確認、原因仮説を推奨度付きで提示。「iOSでこのエラーが出る」「実機で〜がおかしい」「ARが不安定」で起動。
(claude/skills/device-debug/SKILL.md)
デバッグCursor(Debug Mode) 公式(標準)
再現できるが原因が分からないバグを、仮説→一時ログ埋め込み→再現→ログ分析→ピンポイント修正の流れで追いたいときに使う
テスト設計Claude Codeengineering:testing-strategy 公式(プラグイン)
「何をどうテストすべきか」というテスト戦略・カバレッジ方針から相談したいときに使う
テスト設計Cursor 公式(標準)
対応コマンドなし
フロント検証(性能・a11y・SEO等)Claude Code/web-perf 独自
ページが遅い・Lighthouseスコアが悪いときに、Core Web Vitalsを計測してボトルネックを特定したいときに使う
定義元の説明: Analyzes web performance using Chrome DevTools MCP. Measures Core Web Vitals (LCP, INP, CLS) and supplementary metrics (FCP, TBT, Speed Index), identifies render-blocking resources, network dependency chains, layout shifts, caching issues, and accessibility gaps. Use when asked to audit, profile, debug, or optimize page load performance, Lighthouse scores, or site speed. Biases towards retrieval from current documentation over pre-trained knowledge.
(claude/skills/web-perf/SKILL.md)
フロント検証(性能・a11y・SEO等)Cursorweb-perf 独自
ページが遅いときに、Chrome DevTools MCPでCore Web Vitalsを計測してボトルネックを特定したいときに使う
定義元の説明: Analyzes web performance using Chrome DevTools MCP. Measures Core Web Vitals (LCP, INP, CLS) and supplementary metrics (FCP, TBT, Speed Index), identifies render-blocking resources, network dependency chains, layout shifts, caching issues, and accessibility gaps. Use when asked to audit, profile, debug, or optimize page load performance, Lighthouse scores, or site speed. Biases towards retrieval from current documentation over pre-trained knowledge.
(cursor/skills/web-perf/SKILL.md)
フロント検証(性能・a11y・SEO等)Cursorperformance-audit 独自
「遅い」「バンドルサイズが大きい」ときに、Lighthouse CLIで計測し指標ごとの修正案をレポートしたいときに使う(ファイルは書き換えない)
定義元の説明: Use this skill when the user asks about web performance, Core Web Vitals, slow pages, bundle size, or rendering optimization. Triggers include 「パフォーマンス」「遅い」「最適化」「LCP」「CLS」「INP」「Lighthouse」 「Core Web Vitals」「バンドルサイズ」「再レンダリング」. Measures with Lighthouse CLI and reports targeted fix suggestions per metric (does not modify files unless the user explicitly asks).
(cursor/skills/performance-audit/SKILL.md)
フロント検証(性能・a11y・SEO等)Cursorresponsive-check 独自
スマホ/タブレットで崩れていないか、複数ブレークポイントをスクショ比較でチェックしたいときに使う
定義元の説明: Use this skill when the user asks to verify responsive design, check breakpoints, or compare layouts across devices. Triggers include 「レスポンシブ確認」「ブレークポイント」「スマホ表示」「タブレット崩れ」 「複数デバイスでスクショ」「Figma と比較」. Takes Playwright screenshots across defined breakpoints and flags overflow, tap target, and viewport issues.
(cursor/skills/responsive-check/SKILL.md)
フロント検証(性能・a11y・SEO等)Cursora11y-check 独自
アクセシビリティ(WCAG・コントラスト比・キーボード操作等)をaxe-coreで自動検査+手動改善したいときに使う
定義元の説明: Use this skill when the user asks to audit, check, or fix accessibility (a11y) issues. Triggers include「アクセシビリティ」「a11y」「スクリーンリーダー」「WCAG」 「aria」「コントラスト比」「キーボード操作」「tab 操作」. Runs automated detection via axe-core and guides manual remediation following WCAG 2.1 AA. Design-time rules (semantic HTML, ARIA, forms) live in `.cursor/rules/accessibility.mdc`.
(cursor/skills/a11y-check/SKILL.md)
フロント検証(性能・a11y・SEO等)Cursorimage-optimization 独自
画像をWebP/AVIF化したい、srcset・pictureタグをちゃんと書きたいときに使う
定義元の説明: Use this skill when the user asks to optimize images, generate responsive image markup, or convert formats. Triggers include「画像最適化」「WebP」 「AVIF」「srcset」「<picture>」「画像圧縮」「画像サイズを小さく」. Produces modern markup (<picture>, srcset, sizes, fetchpriority) and guides batch conversion with sharp or squoosh-cli.
(cursor/skills/image-optimization/SKILL.md)
フロント検証(性能・a11y・SEO等)Cursorseo-audit 独自
メタタグ・OGP・構造化データ・sitemapなどSEO周りを一式チェックしたいときに使う
定義元の説明: Use this skill when the user asks about SEO, meta tags, OGP, structured data, sitemaps, canonicals, or social sharing previews. Triggers include 「SEO」「メタタグ」「OGP」「構造化データ」「JSON-LD」「sitemap」「canonical」 「シェア画像」「検索結果」. Audits meta, OGP/Twitter Cards, schema.org JSON-LD, canonicals, sitemap.xml, and robots.txt following current Google guidance.
(cursor/skills/seo-audit/SKILL.md)
コンポーネント生成Claude Code 公式(標準)
対応コマンドなし
コンポーネント生成Cursorreact-component-generator 独自
Reactコンポーネント(.tsx)を新規に作りたいときに、デザイントークンやa11yを踏まえて生成させる(Vue/Astroには使わない)
定義元の説明: Use this skill when the user asks to generate, scaffold, or create a React UI component in TypeScript (.tsx). Triggers include 「React コンポーネントを作って」「UIパーツを実装して」「tsx ファイルを新規作成して」 「このデザインをコンポーネント化して」. DO NOT use for Vue (.vue) or Astro (.astro) components. Ensures design tokens, accessibility, and project conventions are applied automatically.
(cursor/skills/react-component-generator/SKILL.md)
コンポーネント生成Cursorastro-component-generator 独自
Astroコンポーネント(.astro)を新規に作りたいときに使う(JSゼロを基本に、必要な時だけisland化する)
定義元の説明: Use this skill when the user asks to generate, scaffold, or create an Astro component (.astro). Triggers include「Astro コンポーネントを作って」「.astro を作成」 「セクションをコンポーネント化」(Astro プロジェクトで). DO NOT use for React (.tsx) or Vue (.vue). Produces JS-zero static components by default, with island directives only when interactivity is required.
(cursor/skills/astro-component-generator/SKILL.md)
PR・コミット整形Claude Code/review 公式(標準)
GitHubのPRをURL指定でレビューしたいときに使う(作業中のdiffは/code-reviewを使う)
PR・コミット整形Claude Codeengineering:standup 公式(プラグイン)
直近のコミット/PR/チケットから、朝会向けの進捗報告を自動でまとめたいときに使う
PR・コミット整形Cursorsplit-to-prs 公式(プラグイン)
1つの大きな変更・ブランチをレビューしやすい複数の小さいPRに分割したいときに使う
定義元の説明: Split current work into small reviewable PRs. Use when the user asks to split a chat, set of changes, branch, or PR.
(cursor/skills-cursor/split-to-prs/SKILL.md)
PR・コミット整形Cursorpr-commit-style 独自
コミット・PRを作るときに、プロジェクト標準のConventional Commits形式で書きたいときに使う
定義元の説明: Use this skill when the user asks to commit changes or create a pull request. Triggers include「コミット」「commit」「PRを作って」「プルリクエスト」 「コミットメッセージ」「git commit」「変更をコミットして」. Generates Conventional Commits style messages and PR descriptions based on the project's standard template.
(cursor/skills/pr-commit-style/SKILL.md)
デプロイ前確認Claude Codeengineering:deploy-checklist 公式(プラグイン)
本番デプロイ前に、マイグレーション・feature flag・CI状況などをチェックリストで確認したいときに使う
デプロイ前確認Cursordeploy-checklist 独自
サイトの納品前・リリース前に、SEO/性能/a11y/リンク切れ/CMS特有の落とし穴まで一式チェックしたいときに使う
定義元の説明: Use this skill when the user asks about deployment, release, or final pre-delivery checks for a website. Triggers include「納品前チェック」 「リリース前」「公開前確認」「本番デプロイ」「ステージングから本番」 「リリースチェック」. Runs a comprehensive pre-deployment checklist covering SEO, performance, a11y, links, analytics, and WordPress/CMS gotchas.
(cursor/skills/deploy-checklist/SKILL.md)
ナレッジ記録Claude Code/kv-note 独自
作業の区切りで、失敗/修正/設計判断などをナレッジVaultへ自動記録させたいときに使う
定義元の説明: 直近の作業からナレッジ記録候補を判定し、自動でVaultへ記録して事後報告する(AGENTS.md §3.3)
(claude/commands/kv-note.md)
ナレッジ記録Claude Code/kv-distill 独自
ナレッジVaultが肥大化してきたときに、蒸留(archive)候補・MOC化候補を提案させたいときに使う
定義元の説明: Vaultの肥大化を点検し、蒸留(archive)候補とMOC化候補を提案する(AGENTS.md §4)
(claude/commands/kv-distill.md)
ナレッジ記録Claude Code/kv-style 独自
直近のコード差分から自分のコーディングの癖(HTML/CSS/JS/TS)を分析し、スタイルプロファイルに記録したいときに使う
定義元の説明: 直近のコード差分からHTML/CSS/SCSS・JS/TSの書き方の癖を分析し、確認の上でコーディングスタイルプロファイルノートに記録する
(claude/commands/kv-style.md)
ナレッジ記録Claude Code/daily-note 独自
「今日のログ作って」「昨日まとめて」というときに、Git履歴とAI要約入りのデイリーノートを作成/更新する
定義元の説明: ナレッジVaultのデイリーノートを作成・更新する。Git履歴の自動集計に加え、その日の差分からAI要約と関連ナレッジリンクを自動生成する。「デイリーノート作って」「今日のlog」「昨日まとめて」「この日まとめて」で起動。「直近1週間で漏れがないかチェックして」「先週分の要約漏れ埋めて」などは漏れチェックモードで起動。
(claude/skills/daily-note/SKILL.md)
ナレッジ記録Cursorkv-note 独自
作業の区切りで、失敗/修正/設計判断などをナレッジVaultへ自動記録させたいときに使う
定義元の説明: 直近の作業内容から、`~/knowledge-vault/AGENTS.md` §3.3 の記録フロー(自動記録+事後報告)を実行する。
(cursor/commands/kv-note.md)
ナレッジ記録Cursorkv-distill 独自
ナレッジVaultが肥大化してきたときに、蒸留(archive)候補・分割候補・MOC化候補を提案させたいときに使う
定義元の説明: `~/knowledge-vault/scripts/check-bloat.sh` を実行し、結果から次を提案する。
(cursor/commands/kv-distill.md)
ナレッジ記録Cursordaily-note 独自
「今日のログ作って」「昨日まとめて」というときに、Git履歴とAI要約入りのデイリーノートを作成/更新する
定義元の説明: ナレッジVault(~/knowledge-vault/)のデイリーノート(daily/YYYY-MM-DD.md)を作成・更新する。Git履歴の自動集計に加えて、AIがその日の差分を読んで「まとめ(AI要約)」と「関連ナレッジ」リンクを埋める。「デイリーノート作って」「今日のlog」「昨日まとめて」「この日まとめて」「〇〇日の作業まとめて」などで起動。「直近1週間で漏れがないかチェックして」「先週分の要約漏れ埋めて」などは漏れチェックモードで起動。
(cursor/skills/daily-note/SKILL.md)
ルール/スキル整備Claude Code/check-rule-sync 独自
ルールを編集した後に、ClaudeとCursorのルール差分がないか比較・同期したいときに使う
定義元の説明: Claude Code(.claude/rules/*.md)と Cursor(.cursor/rules/*.mdc)のルール差異をチェックし同期する。ルール編集後、または「.claude と .cursor のルールを比較/同期して」で起動。
(claude/skills/check-rule-sync/SKILL.md)
ルール/スキル整備Claude Codeskill-creator 公式(プラグイン)
新しいスキルを一から作りたい、既存スキルの説明文や構成を改善したいときに使う
ルール/スキル整備Claude Codeupdate-config 公式(標準)
権限設定・hook・環境変数などsettings.jsonまわりを変更したいときに使う
ルール/スキル整備Cursorcreate-rule 公式(プラグイン)
コーディング規約やプロジェクト固有の指示を、.cursor/rules/のルールとして新規作成したいときに使う
定義元の説明: Create Cursor rules for persistent AI guidance. Use when you want to create a rule, add coding standards, set up project conventions, configure file-specific patterns, create RULE.md files, or asks about .cursor/rules/ or AGENTS.md.
(cursor/skills-cursor/create-rule/SKILL.md)
ルール/スキル整備Cursorcreate-skill 公式(プラグイン)
新しいCursorスキル(SKILL.md)を一から作りたいときに使う
定義元の説明: Create Cursor Agent Skills. Use when authoring a new skill or asking about SKILL.md structure.
(cursor/skills-cursor/create-skill/SKILL.md)
ルール/スキル整備Cursorcreate-hook 公式(プラグイン)
エージェントの動作イベントに合わせてhooks.jsonやフックスクリプトを作りたいときに使う
定義元の説明: Create Cursor hooks. Use when you want to create a hook, write hooks.json, add hook scripts, or automate behavior around agent events.
(cursor/skills-cursor/create-hook/SKILL.md)
ルール/スキル整備Cursorcreate-subagent 公式(プラグイン)
レビュー専用・デバッグ専用など、用途特化のカスタムサブエージェントを新しく作りたいときに使う
定義元の説明: Create custom subagents for specialized AI tasks. Use when you want to create a new type of subagent, set up task-specific agents, configure code reviewers, debuggers, or domain-specific assistants with custom prompts.
(cursor/skills-cursor/create-subagent/SKILL.md)
ルール/スキル整備Cursorupdate-cursor-settings 公式(プラグイン)
テーマ・フォントサイズ・保存時フォーマットなど、エディタのsettings.jsonを変更したいときに使う
定義元の説明: Modify Cursor/VSCode user settings in settings.json. Use when you want to change editor settings, preferences, configuration, themes, font size, tab size, format on save, auto save, keybindings, or any settings.json values.
(cursor/skills-cursor/update-cursor-settings/SKILL.md)
ルール/スキル整備Cursorupdate-cli-config 公式(プラグイン)
Cursor CLIの承認モード・サンドボックス・vimモードなどcli-config.jsonを変更したいときに使う
定義元の説明: View and modify Cursor CLI configuration settings in ~/.cursor/cli-config.json. Use when the user wants to change CLI settings, configure permissions, switch approval mode, enable vim mode, toggle display options, configure sandbox, or manage any CLI preferences.
(cursor/skills-cursor/update-cli-config/SKILL.md)
ルール/スキル整備Cursorstatusline 公式(プラグイン)
CLIのステータスラインをカスタマイズ(セッション情報表示など)したいときに使う
定義元の説明: Configure a custom status line in the CLI. Use when the user mentions status line, statusline, statusLine, CLI status bar, prompt footer customization, or wants to add session context above the prompt.
(cursor/skills-cursor/statusline/SKILL.md)
自動化・反復Claude Code/loop 公式(標準)
同じプロンプト/コマンドを一定間隔で繰り返し実行させたいときに使う(間隔を省略すると自分でペース調整する)
自動化・反復Claude Code/schedule 公式(標準)
「毎朝」「1時間後に」など、定期実行するクラウドエージェント(routine)を作りたいときに使う
自動化・反復Cursorloop 公式(プラグイン)
同じプロンプト/スキルを一定間隔(または可変間隔)で繰り返し実行させたいときに使う
定義元の説明: Run a prompt or skill in this session on a recurring or variable interval (e.g. /loop 5m /foo).
(cursor/skills-cursor/loop/SKILL.md)
自動化・反復Cursorbabysit 公式(プラグイン)
PRをマージ可能な状態に保ちたいとき(コメント対応・コンフリクト解消・CI修正をループで面倒見てもらう)に使う
定義元の説明: Keep a PR merge-ready by triaging comments, resolving clear conflicts, and fixing CI in a loop.
(cursor/skills-cursor/babysit/SKILL.md)
自動化・反復Cursorautomate 公式(プラグイン)
Cursor Automations(自動化フロー)を新しく作りたいときに使う
定義元の説明: Use this skill to create Cursor Automations.
(cursor/skills-cursor/automate/SKILL.md)
Web コンテンツ取得Claude Code/defuddle 独自
ブログ記事やドキュメントページのURLを渡されたときに、ナビ等のノイズを除いた本文だけをMarkdownで取得したいときに使う(.mdのURLには使わない)
定義元の説明: Extract clean markdown content from web pages using Defuddle CLI, removing clutter and navigation to save tokens. Use instead of WebFetch when the user provides a URL to read or analyze, for online documentation, articles, blog posts, or any standard web page. Do NOT use for URLs ending in .md — those are already markdown, use WebFetch directly.
(claude/skills/defuddle/SKILL.md)
Web コンテンツ取得Cursordefuddle 独自
ブログ記事やドキュメントページのURLを渡されたときに、ナビ等のノイズを除いた本文だけをMarkdownで取得したいときに使う(.mdのURLには使わない)
定義元の説明: Extract clean markdown content from web pages using Defuddle CLI, removing clutter and navigation to save tokens. Use instead of WebFetch when the user provides a URL to read or analyze, for online documentation, articles, blog posts, or any standard web page. Do NOT use for URLs ending in .md — those are already markdown, use WebFetch directly.
(cursor/skills/defuddle/SKILL.md)
ビルトインコマンドClaude Code/agents 公式(標準)
サブエージェント(カスタムAIエージェント)の設定を管理したいときに使う
ビルトインコマンドClaude Code/background 公式(標準)
今のセッションをバックグラウンドエージェントとして切り離して実行したいときに使う
ビルトインコマンドClaude Code/tasks 公式(標準)
バックグラウンド作業・サブエージェントの進捗一覧を確認したいときに使う
ビルトインコマンドClaude Code/branch 公式(標準)
今の会話から分岐して、別の方向性を試したいときに使う
ビルトインコマンドClaude Code/fork 公式(標準)
今の会話をバックグラウンドセッションとして複製し、並行して試したいときに使う
ビルトインコマンドClaude Code/compact 公式(標準)
コンテキストが埋まってきたときに、会話を要約して空きを作りたいときに使う
ビルトインコマンドClaude Code/context 公式(標準)
今のコンテキスト使用量を色分けグリッドで可視化して確認したいときに使う
ビルトインコマンドClaude Code/diff 公式(標準)
今のコミットしていない変更を対話的な差分ビューアで見たいときに使う
ビルトインコマンドClaude Code/rewind 公式(標準)
コードと会話を、指定したチェックポイントまで巻き戻したいときに使う
ビルトインコマンドClaude Code/resume 公式(標準)
以前の会話に戻って続きから作業したいときに使う
ビルトインコマンドClaude Code/mcp 公式(標準)
MCPサーバーの接続管理(再接続・有効化・無効化)をしたいときに使う
ビルトインコマンドClaude Code/memory 公式(標準)
CLAUDE.mdなどのメモリファイルを編集・自動メモリを管理したいときに使う
ビルトインコマンドClaude Code/hooks 公式(標準)
ツールイベントに紐づくhook設定を確認したいときに使う
ビルトインコマンドClaude Code/permissions 公式(標準)
コマンド実行の承認ルール(許可/拒否)を設定したいときに使う
ビルトインコマンドClaude Code/model 公式(標準)
使用するAIモデルを切り替え、デフォルトとして保存したいときに使う
ビルトインコマンドClaude Code/ide 公式(標準)
IDE連携の管理・状態確認をしたいときに使う
ビルトインコマンドClaude Code/config 公式(標準)
テーマ・モデルなどの設定を画面から変更したいときに使う
ビルトインコマンドClaude Code/goal 公式(標準)
「この条件を満たすまで作業を続けて」というゴールを設定したいときに使う
ビルトインコマンドClaude Code/cd 公式(標準)
セッションの作業ディレクトリを切り替えたいときに使う
ビルトインコマンドClaude Code/add-dir 公式(標準)
セッション中にアクセスできる作業ディレクトリを追加したいときに使う
バンドルスキルClaude Code/debug 公式(標準)
デバッグログを有効にして、実行時の問題を調査したいときに使う
バンドルスキルClaude Code/verify 公式(標準)
コミットする前に、変更が実際に正しく動くか検証させたいときに使う
バンドルスキルClaude Code/batch 公式(標準)
コードベース全体にまたがる大規模な変更を、worktreeを使って並列に進めたいときに使う
バンドルスキルClaude Code/subtask 公式(標準)
サブタスクをサブエージェントに任せて、結果だけ報告してもらいたいときに使う
バンドルスキルClaude Code/deep-research 公式(標準)
1つの問いについて複数のWeb検索・情報源を横断調査し、出典付きレポートにまとめたいときに使う
バンドルスキルClaude Code/dataviz 公式(標準)
グラフ・ダッシュボードなどデータ可視化のデザイン方針を相談したいときに使う
バンドルスキルClaude Code/autofix-pr 公式(標準)
PRのCI失敗を監視し続けて、失敗するたびに自動で修正をpushさせたいときに使う
バンドルスキルClaude Code/fewer-permission-prompts 公式(標準)
よく出る権限確認をまとめて分析し、許可リストを自動追加して確認回数を減らしたいときに使う
バンドルスキルClaude Code/claude-api 公式(標準)
Claude API(Anthropic SDK)の仕様を参照したい・移行作業をしたいときに使う
バンドルスキルClaude Code/insights 公式(標準)
自分のClaude Code利用状況を分析したレポート(詰まりやすい箇所など)が見たいときに使う
公式プラグイン(engineering / anthropic-skills 等)Claude Codeengineering:documentation 公式(プラグイン)
README・runbook・API仕様書などの技術文書を書きたいときに使う
公式プラグイン(engineering / anthropic-skills 等)Claude Codeengineering:incident-response 公式(プラグイン)
本番障害が起きたときに、トリアージ→報告→ポストモーテム作成までを進めたいときに使う
公式プラグイン(engineering / anthropic-skills 等)Claude Codeengineering:tech-debt 公式(プラグイン)
技術的負債を洗い出して優先度をつけ、リファクタ計画を立てたいときに使う
公式プラグイン(engineering / anthropic-skills 等)Claude Codeskill-creator 公式(プラグイン)
(用途整備に既掲載)新しいスキルを作りたい・既存スキルを改善したいときに使う
ビルトインコマンド(CLI)Cursor/plan 公式(標準)
構造化した計画を立ててから実装したいときに、Planモードに入る/計画用プロンプトを送るときに使う
ビルトインコマンド(CLI)Cursor/ask 公式(標準)
コードを変更せず、質問だけしたいとき(読み取り専用モード)に使う
ビルトインコマンド(CLI)Cursor/debug 公式(標準)
Debugモードに入って、デバッグ用のプロンプトを送りたいときに使う
ビルトインコマンド(CLI)Cursor/model 公式(標準)
使用するAIモデルを切り替えたいときに使う
ビルトインコマンド(CLI)Cursor/rewind 公式(標準)
以前のメッセージ時点まで会話を巻き戻したいときに使う
ビルトインコマンド(CLI)Cursor/resume 公式(標準)
過去の会話を開いて続きから作業したいときに使う
ビルトインコマンド(CLI)Cursor/fork 公式(標準)
今の会話から分岐した新しいセッションを作りたいときに使う
ビルトインコマンド(CLI)Cursor/summarize 公式(標準)
会話履歴を要約して、コンテキストを圧縮したいときに使う
ビルトインコマンド(CLI)Cursor/mcp 公式(標準)
MCPサーバーの管理・利用可能なツールの確認をしたいときに使う
ビルトインコマンド(CLI)Cursor/plugin 公式(標準)
プラグイン・プラグインマーケットプレイスを管理したいときに使う
ビルトインコマンド(CLI)Cursor/sandbox 公式(標準)
サンドボックス・ネットワークアクセスの設定を変更したいときに使う
ビルトインコマンド(CLI)Cursor/run-everything 公式(標準)
コマンドを自動実行するかどうかをトグルしたい・今の状態を確認したいときに使う
ビルトインコマンド(CLI)Cursor/config 公式(標準)
CLIの設定を対話的に変更したいときに使う
ビルトインコマンド(CLI)Cursor/shell 公式(標準)
Shellモードに入って、コマンドを直接実行したいときに使う
公式スキル(skills-cursor)Cursorcanvas 公式(プラグイン)
分析結果やダッシュボードなど、チャットの横に独立したライブUIを表示したいときに使う
定義元の説明: A Cursor Canvas is a live React app that the user can open beside the chat. You MUST use a canvas when the agent produces a standalone analytical artifact — quantitative analyses, billing investigations, security audits, architecture reviews, data-heavy content, timelines, charts, tables, interactive explorations, repeatable tools, or any response that benefits from visual layout. Especially prefer a canvas when presenting results from MCP tools (Datadog, Databricks, Linear, Sentry, Slack, etc.) where the data is the deliverable — render it in a rich canvas rather than dumping it into a markdown table or code block. If you catch yourself about to write a markdown table, stop and use a canvas instead. You MUST also read this skill whenever you create, edit, or debug any .canvas.tsx file.
(cursor/skills-cursor/canvas/SKILL.md)
公式スキル(skills-cursor)Cursorsdk 公式(プラグイン)
Cursor SDK(TypeScript/Python)を使ってCI/CDやスクリプトからCursorエージェントを動かしたいときに使う
定義元の説明: Guide users building apps, scripts, CI pipelines, or automations on top of the Cursor SDK - TypeScript (`@cursor/sdk`) or Python (`cursor-sdk` / `cursor_sdk`). Use when the user mentions integrating, installing, or writing code against the Cursor SDK; says `Agent.create`, `Agent.prompt`, `Agent.resume`, `agent.send`, `run.stream`, `run.messages`, `CursorAgentError`, `@cursor/sdk`, `cursor-sdk`, or `cursor_sdk`; asks to run Cursor agents programmatically from a script, CI/CD pipeline, GitHub Action, backend service, or other code outside the Cursor IDE; wants to pick between local and cloud runtime, configure MCP servers for an SDK agent, or handle streaming, cancellation, or errors; or is wiring Cursor into an automation, bot, or REST `/v1/agents` migration. Use eagerly rather than answering from memory; the SDK surface evolves and this skill is the source of truth for the external packages.
(cursor/skills-cursor/sdk/SKILL.md)
公式スキル(skills-cursor)Cursorshell 公式(プラグイン)
/shell の後に続けたテキストをそのままシェルコマンドとして実行したいときに使う
定義元の説明: Runs the rest of a /shell request as a literal shell command. Use only when the user explicitly invokes /shell and wants the following text executed directly in the terminal.
(cursor/skills-cursor/shell/SKILL.md)
公式スキル(skills-cursor)Cursormigrate-to-skills 公式(プラグイン)
既存の .cursor/rules や .cursor/commands をAgent Skills形式に変換したいときに使う
定義元の説明: Convert 'Applied intelligently' Cursor rules (.cursor/rules/*.mdc) and slash commands (.cursor/commands/*.md) to Agent Skills format (.cursor/skills/). Use when you want to migrate rules or commands to skills, convert .mdc rules to SKILL.md format, or consolidate commands into the skills directory.
(cursor/skills-cursor/migrate-to-skills/SKILL.md)
公式スキル(skills-cursor)Cursorreview 公式(プラグイン)
(用途対応表に既掲載)Bugbot/Security Reviewを選んでレビューしたいときに使う
定義元の説明: Review code changes with the Bugbot or Security Review subagent.
(cursor/skills-cursor/review/SKILL.md)
公式スキル(skills-cursor)Cursorreview-bugbot 公式(プラグイン)
(用途対応表に既掲載)Bugbotでバグ観点のレビューをしたいときに使う
定義元の説明: Review code changes with Bugbot subagent.
(cursor/skills-cursor/review-bugbot/SKILL.md)
公式スキル(skills-cursor)Cursorreview-security 公式(プラグイン)
(用途対応表に既掲載)セキュリティ観点のレビューをしたいときに使う
定義元の説明: Review code changes with Security Review subagent.
(cursor/skills-cursor/review-security/SKILL.md)
公式スキル(skills-cursor)Cursorsplit-to-prs 公式(プラグイン)
(用途対応表に既掲載)変更を複数の小さいPRに分割したいときに使う
定義元の説明: Split current work into small reviewable PRs. Use when the user asks to split a chat, set of changes, branch, or PR.
(cursor/skills-cursor/split-to-prs/SKILL.md)
公式スキル(skills-cursor)Cursorloop 公式(プラグイン)
(用途対応表に既掲載)プロンプト/スキルを一定間隔で繰り返し実行したいときに使う
定義元の説明: Run a prompt or skill in this session on a recurring or variable interval (e.g. /loop 5m /foo).
(cursor/skills-cursor/loop/SKILL.md)
公式スキル(skills-cursor)Cursorbabysit 公式(プラグイン)
(用途対応表に既掲載)PRをマージ可能な状態に保ちたいときに使う
定義元の説明: Keep a PR merge-ready by triaging comments, resolving clear conflicts, and fixing CI in a loop.
(cursor/skills-cursor/babysit/SKILL.md)
公式スキル(skills-cursor)Cursorautomate 公式(プラグイン)
(用途対応表に既掲載)Cursor Automationsを新しく作りたいときに使う
定義元の説明: Use this skill to create Cursor Automations.
(cursor/skills-cursor/automate/SKILL.md)
公式スキル(skills-cursor)Cursoronboard 公式(プラグイン)
(用途対応表に既掲載)Cursorを使い始める最初の一歩を進めたいときに使う
定義元の説明: Use /onboard for a focused Cursor onboarding flow that learns basic preferences, picks a first goal, and routes the user to the right next action.
(cursor/skills-cursor/onboard/SKILL.md)
公式スキル(skills-cursor)Cursorcreate-rule 公式(プラグイン)
(用途対応表に既掲載).cursor/rules/にルールを新規作成したいときに使う
定義元の説明: Create Cursor rules for persistent AI guidance. Use when you want to create a rule, add coding standards, set up project conventions, configure file-specific patterns, create RULE.md files, or asks about .cursor/rules/ or AGENTS.md.
(cursor/skills-cursor/create-rule/SKILL.md)
公式スキル(skills-cursor)Cursorcreate-skill 公式(プラグイン)
(用途対応表に既掲載)新しいCursorスキルを作りたいときに使う
定義元の説明: Create Cursor Agent Skills. Use when authoring a new skill or asking about SKILL.md structure.
(cursor/skills-cursor/create-skill/SKILL.md)
公式スキル(skills-cursor)Cursorcreate-hook 公式(プラグイン)
(用途対応表に既掲載)hooks.jsonやフックスクリプトを作りたいときに使う
定義元の説明: Create Cursor hooks. Use when you want to create a hook, write hooks.json, add hook scripts, or automate behavior around agent events.
(cursor/skills-cursor/create-hook/SKILL.md)
公式スキル(skills-cursor)Cursorcreate-subagent 公式(プラグイン)
(用途対応表に既掲載)用途特化のカスタムサブエージェントを作りたいときに使う
定義元の説明: Create custom subagents for specialized AI tasks. Use when you want to create a new type of subagent, set up task-specific agents, configure code reviewers, debuggers, or domain-specific assistants with custom prompts.
(cursor/skills-cursor/create-subagent/SKILL.md)
公式スキル(skills-cursor)Cursorupdate-cursor-settings 公式(プラグイン)
(用途対応表に既掲載)エディタのsettings.jsonを変更したいときに使う
定義元の説明: Modify Cursor/VSCode user settings in settings.json. Use when you want to change editor settings, preferences, configuration, themes, font size, tab size, format on save, auto save, keybindings, or any settings.json values.
(cursor/skills-cursor/update-cursor-settings/SKILL.md)
公式スキル(skills-cursor)Cursorupdate-cli-config 公式(プラグイン)
(用途対応表に既掲載)CLIのcli-config.jsonを変更したいときに使う
定義元の説明: View and modify Cursor CLI configuration settings in ~/.cursor/cli-config.json. Use when the user wants to change CLI settings, configure permissions, switch approval mode, enable vim mode, toggle display options, configure sandbox, or manage any CLI preferences.
(cursor/skills-cursor/update-cli-config/SKILL.md)
公式スキル(skills-cursor)Cursorstatusline 公式(プラグイン)
(用途対応表に既掲載)CLIのステータスラインをカスタマイズしたいときに使う
定義元の説明: Configure a custom status line in the CLI. Use when the user mentions status line, statusline, statusLine, CLI status bar, prompt footer customization, or wants to add session context above the prompt.
(cursor/skills-cursor/statusline/SKILL.md)
該当するコマンドがありません