xAI、Grok Build プラグインマーケットプレースを MongoDB や Vercel などと共にローンチ
本文の状態
日本語全文を表示中
詳細モードで約8分の本文を読めます。
同じ出来事の情報源
この情報源を基点に整理
MarkTechPost
xAI は自社ターミナル型コーディングエージェント「Grok Build」の拡張機能管理プラットフォーム「プラグインマーケットプレース」を正式に公開した。MongoDB や Vercel などの主要ツール連携プラグインが初期ラインナップとして提供される。
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
本日、xAI は Grok Build プラグインマーケットプレースをリリースしました。これは同社のターミナルコーディングエージェントである Grok Build 向けのビルトインカタログです。プラグインは、スキル、スラッシュコマンド、エージェント、フック、MCP サーバー、LSP(Language Server Protocol)を一つのパッケージに統合したものです。これらのパッケージは、ターミナルから離れることなく閲覧、インストール、更新が可能です。
プラグインマーケットプレース
Grok Build はソフトウェアエンジニアリング作業のための xAI のコーディングエージェントおよび CLI です。このマーケットプレースは、その上に発見と配布のレイヤーを追加するものです。これまでは開発者が各統合を手動で一つずつ接続していましたが、現在は単一のコマンドで完全なバンドルをエージェントに引き込むことができます。カタログは GitHub 上のオープンリポジトリ xai-org/plugin-marketplace に存在します。このリポジトリはインデックスであり、Grok Build がプラグインを取得できるよう、プラグインソースへの参照先となっています。
プラグインの中身
プラグインとは、6 つのコンポーネントタイプの任意の組み合わせをバンドルしたディレクトリです。各タイプは特定のファイルまたはフォルダに対応しています。以下の表にそれらを列挙します。
コンポーネント | 場所 | 目的
スキル | skills/SKILL.md | 機能
コマンド | commands/ | スラッシュコマンド
エージェント | agents/ | サブエージェント定義
フック | hooks/hooks.json | ライフサイクルフック
MCP サーバー | .mcp.json | MCP サーバー設定
LSP サーバー | .lsp.json | 言語サーバー設定
オプションの plugin.json マニフェストにより、メタデータの追加やコンポーネントパスの上書きが可能です。これにより、1 つのインストールでエージェントを複数の方法で同時に拡張できます。
インストールの仕組み
Grok Build 内で /marketplace と入力してカタログを閲覧します。選択したプラグインをインストールするには i を押してください。また、シェルから直接コマンドを実行することも可能です:
コピーコード コピー済み ブラウザを変更してください
grok プラグインマーケットプレイス一覧
grok plugin install --trust
インストールコマンドには --trust フラグが付属しています。これは重要です。プラグインはシステム上でコードを実行し、データにアクセスできるためです。
プラグインの起動とユースケース
マーケットプレイスは、スタック全体から選ばれた 6 つのパートナーによるプラグインで始まります。それぞれが具体的なワークフローを対象としています。
MongoDB — データの探索、コレクションの管理、クエリの最適化。
Vercel — デプロイメントの管理、ビルドステータスの確認、ドメインの設定。
Sentry — スタックトレースの分析と、本番環境でのエラーのデバッグ。
Chrome DevTools — 実行中のブラウザの制御、パフォーマンストレーシングの記録、ネットワークリクエストの検査。
Cloudflare — Workers や Durable Objects などに関するスキルセット。
Superpowers — 人気のあるエージェント駆動型ワークフロー。
例:データサイエンティストが MongoDB のクエリが遅いことに直面します。MongoDB プラグインをインストールし、エージェントに最適化を依頼します。例:フロントエンドエンジニアは、レンダリング失敗時にネットワークリクエストを検査するために Chrome DevTools をインストールします。例:オンコールエンジニアは、本番環境からのスタックトレースをトリアージするために Sentry をインストールします。
セキュリティモデル:SHA ピンニング
すべてのリモートプラグインは、完全な 40 文字の英小文字コミット SHA を固定します。Grok Build はクローン後に git rev-parse HEAD == sha を再検証します。固定されていない場合、フォースプッシュやリポジトリの侵害によって新しいコードが静かに配信される可能性があります。この固定により、インストール時にその経路を塞ぎます。また、リポジトリは xAI が維持管理するファーストパーティプラグインとサードパーティ製のものを区別しています。xAI は、サードパーティ製プラグインの作成・制御・検証を行わないと明言しており、これらは現状のまま(AS-IS)配信され、インストールは自己責任で行う必要があります。
独自のプラグインを公開する
カタログは貢献を受け付けています。プラグインを追加するには、.grok-plugin/marketplace.json を編集してプルリクエストを開いてください。リモートエントリの例は以下の通りです:
{
"name": "my-plugin",
"description": "What the plugin does.",
"category": "development",
"source": {
"source": "url",
"url": "https://github.com/my-org/my-plugin.git",
"sha": "0000000000000000000000000000000000000000"
},
"homepage": "https://github.com/my-org/my-plugin",
"keywords": ["my-plugin"]
}生成された plugin-index.json ファイルには各プラグインのコンポーネントが記録されます。このファイルを手動で編集する必要はありません。python3 scripts/generate-plugin-index.py を実行して再生成してください。CI(継続的インテグレーション)では、--check オプションを指定して同じスクリプトを実行し、古くなったファイルがある場合は失敗します。
比較
バンドリングのアイデアは、Claude Code などの他のエージェントツールにも見られるものです。以下の表は、マーケットプレイスを生 MCP(Model Context Protocol)設定と比較したものです。
| 機能 | Grok Build マーケットプレイス | 生 MCP インテグレーション |
|---|---|---|
| スキル、コマンド、エージェント、フック、MCP、LSP をバンドル | はい | いいえ(MCP サーバーのみ) |
ターミナル内での閲覧とインストールはい、/marketplace を経由して手動設定編集
コミット SHA 検証はい、インストール時に強制適用ビルトインではない
公開 PR ベースのカタログいいえ該当せず
更新メカニズムgrok プラグイン更新フロー手動
注:本表は文書化された設計を示すものであり、実機ベンチマークの結果ではありません。
強みとトレードオフ
強み
1 つのインストールでスキル、スラッシュコマンド、エージェント、フック、MCP、LSP サポートが追加されます。
SHA ピンニングにより、実行可能コードに対する具体的なサプライチェーンガードが提供されます。
オープンカタログにより、プラグインへの貢献のハードルが下がります。
トレードオフ
Grok Build へのアクセスは依然として有料の SuperGrok および X Premium Plus のティアに制限されています。
カタログはローンチ時に小さく、6 つのプラグインのみです。
xAI はピンを検証しますが、プラグインの動作までは検証しないため、信頼は依然としてユーザー自身に委ねられます。
Grok Build プラグインマーケットプレイスは現在ベータ版です。
ターミナルから MongoDB、Vercel、Sentry、Cloudflare、Chrome DevTools プラグインを使用して構築できます。
詳細はこちら https://t.co/ShPeozXSxA pic.twitter.com/pOFttEuwdF
— xAI (@xai) 2026 年 6 月 11 日
主要なポイント
xAI は 2026 年 6 月 11 日、ターミナルに組み込まれた Grok Build プラグインマーケットプレイスを立ち上げました。
1 つのプラグインでスキル、スラッシュコマンド、エージェント、フック、MCP サーバー、LSP が 1 つのインストールにバンドルされます。
ローンチカタログには MongoDB、Vercel、Sentry、Chrome DevTools、Cloudflare、Superpowers の 6 つのプラグインが含まれています。
すべてのリモートプラグインは 40 文字のコミット SHA をピン留めしており、Grok Build はクローン後にこれを再検証します。
カタログはプルリクエストを通じて公開されていますが、xAI はサードパーティ製プラグインを検証しません。
本記事「xAI が MongoDB、Vercel、Sentry、Chrome DevTools、Cloudflare、Superpowers プラグインを発売時に Grok ビルドプラグインマーケットプレースとして提供」は、MarkTechPost で最初に掲載されました。
原文を表示
Today, xAI shipped the Grok Build Plugin Marketplace. It is a built-in catalog of plugins for Grok Build, the company’s terminal coding agent. A plugin bundles skills, slash commands, agents, hooks, MCP servers, and LSPs into one package. You browse, install, and update these packages without leaving the terminal.
Plugin Marketplace
Grok Build is xAI’s coding agent and CLI for software engineering work. The marketplace adds a discovery and distribution layer on top. Before this, developers wired up each integration one at a time. Now a single command pulls a complete bundle into the agent. The catalog lives in the open repo xai-org/plugin-marketplace on GitHub. That repo is an index. It points at plugin sources so Grok Build can fetch them.
Inside a Plugin
A plugin is a directory bundling any combination of six component types. Each type maps to a specific file or folder. The table below lists them.
ComponentLocationPurpose
Skillsskills/SKILL.md capabilities
Commandscommands/Slash commands
Agentsagents/Subagent definitions
Hookshooks/hooks.jsonLifecycle hooks
MCP servers.mcp.jsonMCP server configs
LSP servers.lsp.jsonLanguage server configs
An optional plugin.json manifest adds metadata or overrides component paths. So one install can extend the agent in several ways at once.
How Installation Works
Inside Grok Build, type /marketplace to browse the catalog. Press i to install a selected plugin. You can also run commands directly from the shell:
Copy CodeCopiedUse a different Browser
grok plugin marketplace list
grok plugin install <name> --trust
The install command carries a --trust flag. That matters because plugins can execute code and access data on your system.
Launch Plugins and Use Cases
The marketplace opens with six plugins from partners across the stack. Each targets a concrete workflow.
MongoDB — explore data, manage collections, and optimize queries.
Vercel — manage deployments, check build status, and configure domains.
Sentry — analyze stack traces and debug production errors.
Chrome DevTools — control a live browser, record performance traces, and inspect network requests.
Cloudflare — skills for Workers, Durable Objects, and more.
Superpowers — popular agent-driven workflows.
Example: a data scientist hits a slow MongoDB query. They install the MongoDB plugin, then ask the agent to optimize it. Example: a frontend engineer installs Chrome DevTools to inspect network requests during a failing render. Example: an on-call engineer installs Sentry to triage a stack trace from production.
The Security Model: SHA Pinning
Every remote plugin pins a full 40-character lowercase commit SHA. Grok Build re-verifies git rev-parse HEAD == sha after cloning. Without a pin, a force-push or repo compromise could ship new code silently. The pin closes that path at install time. The repo also separates first-party plugins, maintained by xAI, from third-party ones. xAI states it does not author, control, or verify third-party plugins. They ship AS-IS, and you install at your own risk.
Publishing Your Own Plugin
The catalog is open to contributions. To add a plugin, edit .grok-plugin/marketplace.json and open a pull request. A remote entry looks like this:
Copy CodeCopiedUse a different Browser
{
"name": "my-plugin",
"description": "What the plugin does.",
"category": "development",
"source": {
"source": "url",
"url": "https://github.com/my-org/my-plugin.git",
"sha": "0000000000000000000000000000000000000000"
},
"homepage": "https://github.com/my-org/my-plugin",
"keywords": ["my-plugin"]
}
A generated plugin-index.json records each plugin’s components. You never hand-edit that file. Regenerate it with python3 scripts/generate-plugin-index.py. CI runs the same script with --check and fails on stale files.
How It Compares
The bundling idea echoes other agent tooling, such as Claude Code. The table maps the marketplace against a raw MCP setup.
CapabilityGrok Build MarketplaceRaw MCP integration
Bundles skills, commands, agents, hooks, MCP, LSPYesNo, MCP servers only
In-terminal browse and installYes, via /marketplaceManual config edits
Commit-SHA pin verificationYes, enforced at installNot built in
Open PR-based public catalogYesNot applicable
Update mechanismgrok plugin update flowManual
Note: the table reflects documented design, not a hands-on benchmark.
Strengths and Trade-offs
Strengths
One install adds skills, commands, agents, hooks, MCP, and LSP support.
SHA pinning gives a concrete supply-chain guard for executable code.
The open catalog lowers the bar to contribute a plugin.
Trade-offs
Grok Build access still sits behind paid SuperGrok and X Premium Plus tiers.
The catalog is small at launch, with six plugins.
xAI verifies the pin, not plugin behavior, so trust still falls on you.
The Grok Build Plugin Marketplace is now in beta.
Build with MongoDB, Vercel, Sentry, Cloudflare, and Chrome DevTools plugins from your terminal.
Read more https://t.co/ShPeozXSxA pic.twitter.com/pOFttEuwdF
— xAI (@xai) June 11, 2026
Key Takeaways
xAI launched the Grok Build Plugin Marketplace on June 11, 2026, built into the terminal.
One plugin bundles skills, slash commands, agents, hooks, MCP servers, and LSPs into a single install.
Launch catalog ships six plugins: MongoDB, Vercel, Sentry, Chrome DevTools, Cloudflare, and Superpowers.
Every remote plugin pins a 40-character commit SHA, which Grok Build re-verifies after cloning.
The catalog is open via pull request, but xAI does not verify third-party plugins.
Check out the Technical details and GitHub Page. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.
Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us
The post xAI Ships Grok Build Plugin Marketplace With MongoDB, Vercel, Sentry, Chrome DevTools, Cloudflare, and Superpowers Plugins at Launch appeared first on MarkTechPost.
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み