GitHub Copilot in Visual Studio Code v1.110 - 2月リリース
本文の状態
日本語全文を表示中
詳細モードで約4分の本文を読めます。
同じ出来事の情報源
6媒体で確認
GitHub Blog · GitHub Changelog · AI Business · Simon Willison Blog · The Verge AI · The Register AI/ML
各社の報じ方を比較 ↓Visual Studio Codeの2026年2月リリースは、エージェントが長時間・複雑なタスクを実用的に実行できるようにし、実行制御・拡張機能・コンテキスト保持を強化した。
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
タイトル: GitHub Copilot in Visual Studio Code v1.110 – 2月リリース
Visual Studio Code の 2026年2月リリースでは、エージェントをより長時間実行される複雑なタスクに実用的に利用できるようになりました。これにより、実行方法の制御が強化され、機能を拡張する新しい方法、コンテキストを保持するよりスマートなセッション管理が提供されます。
エージェントをプログラミングする
フックによる自動化: エージェントのライフサイクルイベントの重要な時点でコードを実行し、ポリシーの適用、自動リント、コマンド実行前のブロックなどを行えます。
会話をフォーク: 任意のチェックポイントから分岐し、開始地点を失うことなく別のアプローチを探ることができます。
チャットからの自動承認: チャット入力で直接 /autoApprove または /yolo を使用してグローバルな自動承認を切り替え、ターミナルサンドボックス化と組み合わせることで、エージェントを境界内で実行させられます。
チャットからのキューイングと制御: エージェントの作業中にフォローアップメッセージを送信し、完了を待たずにそのアプローチを方向転換できます。
エージェントを拡張する
エージェントプラグイン: 拡張機能ビューから、スキル、ツール、フック、MCPサーバーを事前にパッケージ化したバンドルをインストールできます。これは現在 /experimental 機能として利用可能です。
スラッシュコマンドとしてのスキル: チャットからエージェントスキルをトリガーできます。これには拡張機能によって提供されるスキルも含まれます。
エージェントブラウザーツール: エージェントに統合ブラウザーを操作させ、ナビゲート、クリック、スクリーンショット、変更の検証を行わせられます。これは現在 /experimental 機能として利用可能です。
チャットからのカスタマイズ作成: /create-* コマンドを使った会話から直接、再利用可能なプロンプト、スキル、エージェント、フックを生成できます。
さらに、Copilot CLI が VS Code にネイティブサポート(差分タブ、信頼済みフォルダー同期、コードスニペットの右クリック送信など)付きで組み込まれるようになりました。
エージェントに適切なコンテキストを与える
エージェントメモリの共有: エージェントは Copilot コーディングエージェント、Copilot CLI、コードレビュー間で知識を共有・保存するため、コンテキストが時間とともに蓄積されていきます。
プランメモリ: プランは対話ターン間および圧縮後も保持されるため、エージェントは作業を最初からやり直すのではなく、既存の作業を基に進められます。
組み込みの Explore サブエージェント: 高速で並列化されたコードベース調査を軽量モデルに委任し、Plan エージェントが特定のファイルやコードパスを参照できるようにします。
コンテキスト圧縮: コンテキストウィンドウがいっぱいになると、Copilot は自動的に会話履歴を圧縮します。現在は /compact で手動で圧縮をトリガーし、保持する内容を指定できます(例: /compact forget about all variants, except the rust version)。
大規模出力の処理: 大規模なツール出力はコンテキストに詰め込まずディスクに書き込まれるため、圧縮中に重要な詳細が失われることはありません。
また、ロングディスタンス次編集候補により、ファイル内のどこでも編集を予測できるようになりました。
関連する VS Code 生産性アップデート
ターミナルでの高精細画像表示のための Kitty グラフィックスプロトコル。
検索、セクション、リッチなホバー詳細を備えた再設計されたモデルピッカー。
スクリーンリーダー、キーボードナビゲーション、通知シグナル向けのチャットアクセシビリティ改善。
AI生成コードを含むコミットのための AI 共著者帰属。
ハッピーコーディング!
GitHub Community のディスカッションに参加してください。
この投稿「GitHub Copilot in Visual Studio Code v1.110 – 2月リリース」は The GitHub Blog で最初に公開されました。
原文を表示
The Visual Studio Code February 2026 release makes agents practical for longer-running and more complex tasks. This gives you more control over how they run, new ways to extend what they can do, and smarter session management that keeps context intact.
Program your agents
Automate with hooks: Run your code at key agent lifecycle events to enforce policies, auto-lint, or block commands before they execute.
Fork a conversation: Branch from any checkpoint to explore an alternative path without losing your starting point.
Auto-approve from chat: Toggle global auto approval with /autoApprove or /yolo directly in the chat input and pair it with terminal sandboxing to let agents run within boundaries.
Queue and steer from chat: Send follow-up messages while the agent is working to redirect its approach without waiting for it to finish.
Extend your agents
Agent plugins: Install prepackaged bundles of skills, tools, hooks, and MCP servers from the Extensions view. This is currently available as an /experimental feature.
Use skills as slash commands: Trigger agent skills from chat, including ones contributed by your extensions.
Agentic browser tools: Let agents drive the integrated browser to navigate, click, screenshot, and verify their own changes. This is currently available as an /experimental feature.
Create customizations from chat: Generate reusable prompts, skills, agents, and hooks directly from a conversation with /create-* commands.
In addition, Copilot CLI is now included in VS Code with native support including diff tabs, trusted folder sync, and right-click to send code snippets.
Give agents the right context
Share agent memory: Agents share and store knowledge across the Copilot coding agent, Copilot CLI, and code review so context builds up over time.
Plan memory: Plans persist across turns and through compaction, so the agent builds on existing work instead of starting over.
Built-in Explore subagent: Delegates fast, parallelized codebase research to lightweight models so the Plan agent references specific files and code paths.
Context compaction: Copilot automatically compacts conversation history when the context window fills up. You can now trigger compaction manually with /compact, and guide what to keep (e.g., /compact forget about all variants, except the rust version).
Handle large outputs: Large tool output is written to disk instead of stuffed into context, so important details aren’t lost during compaction.
Also, long-distance next edit suggestions predict edits anywhere in your file.
Related VS Code productivity updates
Kitty graphics protocol for high-fidelity images in the terminal.
Redesigned model picker with search, sections, and rich hover details.
Chat accessibility improvements for screen readers, keyboard navigation, and notification signals.
AI coauthor attribution for commits with AI-generated code.
Happy coding!
Join the discussion within GitHub Community.
The post GitHub Copilot in Visual Studio Code v1.110 – February release appeared first on The GitHub Blog.
同じ出来事を6媒体で確認
同じ出来事を扱う別媒体の記事です。見出しと公開時刻を比較できます。
関連記事
News to Guide
ニュースの次に確認する
発表内容を、現在の料金や仕様と照らし合わせられる関連ガイドです。
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み