Cline v3.86.2 リリース — VS Code 1.122以降のファイル検索バグを修正 Cline Releases v3.86.2
- Cline v3.86.2 がリリースされ、VS Code 1.122以降で発生していた @ ファイルメンション機能とワークスペースファイル検索の不具合が修正された。
- 新しいバンドル済み ripgrep バイナリのレイアウト変更への対応が主な内容だ。
English summary
- Fixed Fix @ file mentions and workspace file search on VS Code 1.122+ by resolving the new bundled @vscode/ripgrep-universal per-platform binary layout before falling back to legacy ripgrep paths.
- Ful
Cline は2026年6月1日、バージョン v3.86.2 をリリースした。今回の更新は機能追加ではなく、VS Code のバージョンアップに起因するバグ修正に特化したパッチリリースである。
問題の核心は、VS Code 1.122 以降で導入された @vscode/ripgrep-universal パッケージのバイナリレイアウト変更にある。ripgrep は高速なファイル検索ツールであり、VS Code をはじめ多くの開発ツールが内部的に利用している。従来は特定のパスにバイナリが配置されていたが、VS Code 1.122 からはプラットフォームごとに異なるディレクトリ構造へと変更された。この変更に Cline 側が追従できていなかったため、@ メンションによるファイル参照機能やワークスペース内のファイル検索が正常に動作しなくなっていた。
v3.86.2 の修正では、まず新しいバンドル済みバイナリのパスを解決し、それが見つからない場合にレガシーな ripgrep パスへフォールバックする方式を採用している。この二段階のパス解決ロジックにより、VS Code の新旧バージョン双方での互換性が確保された形だ。
Cline v3.86.2 がリリースされ、VS Code 1.122以降で発生していた @ ファイルメンション機能とワークスペースファイル検索の不具合が修正された。
ripgrep は Rust で書かれたオープンソースの行指向検索ツールで、従来の grep や ag(The Silver Searcher)と比較して非常に高速な検索性能を誇る。VS Code は長らく ripgrep をファイル検索のバックエンドとして採用しており、ripgrep-universal はクロスプラットフォーム対応を容易にするためのラッパーパッケージである。VS Code のような大規模なエコシステムでは、依存パッケージの内部構造変更が下流ツールに連鎖的な影響を与えることは珍しくなく、今回の事例もその典型といえる。
Cline は AI コーディングアシスタントとして VS Code 拡張機能の形で提供されており、ファイル参照機能はユーザーが特定のソースファイルを文脈として AI に渡す際に頻繁に使用される重要な機能だ。この機能が壊れた状態では実用性が大きく損なわれるため、迅速なパッチ対応は妥当な判断と見られる。VS Code の更新サイクルが速まるなか、拡張機能開発者にとって内部 API や依存バイナリの変更への追従は継続的な課題となっている可能性がある。
Cline released version v3.86.2 on June 1, 2026, a focused patch addressing a regression that broke @ file mentions and workspace file search for users running VS Code 1.122 or later.
The root cause lies in a change to the internal binary layout introduced by the @vscode/ripgrep-universal package in VS Code 1.122. ripgrep, the fast Rust-based line-oriented search tool, has long served as VS Code's file search backend. The ripgrep-universal wrapper simplifies cross-platform distribution by bundling platform-specific binaries, but VS Code 1.122 reorganized where those binaries live on disk. Cline's path resolution logic was still targeting the old locations, causing lookups to fail silently and breaking file mention functionality for affected users.
The fix introduces a two-step resolution strategy: Cline first attempts to locate the binary according to the new per-platform directory structure introduced in 1.122, then falls back to the legacy ripgrep paths if the new location is not found. This approach restores compatibility across both older and newer VS Code installations without requiring users to take any action.
The @ file mention feature is a core part of Cline's workflow, allowing users to inject specific source files as context for the AI assistant. When this breaks, the practical utility of the tool drops considerably, making a fast patch release the right call. It's also a reminder of the recurring challenge extension authors face: VS Code moves quickly, and changes to bundled dependencies or internal binary layouts can cascade into downstream breakage with little warning.
Fixed Fix @ file mentions and workspace file search on VS Code 1.122+ by resolving the new bundled @vscode/ripgrep-universal per-platform binary layout before falling back to legacy ripgrep paths.
ripgrep itself remains one of the most respected tools in the developer tooling ecosystem. Written in Rust by Andrew Gallant, it outperforms traditional grep and alternatives like The Silver Searcher on most real-world search tasks, which is why it has become the de facto choice for editors and IDEs. The ripgrep-universal packaging layer was designed to ease distribution across Windows, macOS, and Linux, but the tradeoff is that any structural reorganization of that package can silently break tools that assume a fixed binary path.
For Cline users on VS Code 1.122 or later who encountered broken file search or @ mention errors, updating to v3.86.2 should resolve the issue immediately. The patch is narrow in scope and carries minimal risk of introducing new regressions.
本ページの本文・要約は AI による自動生成です。正確性は元記事 (github.com) をご確認ください。