Claude 桌面版竟然是实时的。

vscode copilot 的配置文件提示
[{
'resource': '/d:/.vscode/User/globalStorage/github.copilot-chat/ask-agent/Ask.agent.md',
'owner': 'prompts-diagnostics-provider',
'severity': 4,
'message': '未知工具 'github/issue_read'。',
'startLineNumber': 7,
'startColumn': 51,
'endLineNumber': 7,
'endColumn': 70
},{
'resource': '/d:/.vscode/User/globalStorage/github.copilot-chat/ask-agent/Ask.agent.md',
'owner': 'prompts-diagnostics-provider',
'severity': 4,
'message': '未知工具 'github.vscode-pull-request-github/issue_fetch'。',
'startLineNumber': 7,
'startColumn': 72,
'endLineNumber': 7,
'endColumn': 119
},{
'resource': '/d:/.vscode/User/globalStorage/github.copilot-chat/ask-agent/Ask.agent.md',
'owner': 'prompts-diagnostics-provider',
'severity': 4,
'message': '未知工具 'github.vscode-pull-request-github/activePullRequest'。',
'startLineNumber': 7,
'startColumn': 121,
'endLineNumber': 7,
'endColumn': 174
}]
删除文件也会重建,是否报告给VSCODE官方,这是BUG?
Show more
22:58
这不是 Bug,是正常的警告,原因是:
问题根源
这些工具需要安装对应扩展才能识别:
未知工具 需要的扩展
github/issue_read GitHub 相关扩展
github.vscode-pull-request-github/issue_fetch GitHub Pull Requests 扩展
github.vscode-pull-request-github/activePullRequest GitHub Pull Requests 扩展
Ask.agent.md 是 Copilot 预置的 agent 配置,引用了这些工具,但如果你没装 GitHub Pull Requests and Issues 扩展,VSCode 就找不到这些工具,报"未知工具"警告。
解决方法
方法一(推荐): 安装缺失扩展
在扩展市场搜索安装:
GitHub Pull Requests
扩展 ID:github.vscode-pull-request-github
方法二: 忽略这个警告
severity 4 是警告级别,不影响 Copilot 正常使用,不用处理。
要不要报告?
不需要,这是已知的设计行为,Copilot 团队预置了依赖可选扩展的 agent,没装扩展就会有这个警告。不是 Bug。
剩一个
'github/issue_read'
未找到对应的扩展
23:00
这个工具 github/issue_read 来自 Copilot 内置工具,不是第三方扩展提供的。
Searched the web
Searched the web
这确实是 Bug,而且是刚发生的。
结论
VSCode 1.113 版本(2026-03-24 发布)引入了这个问题
Namu Wiki
,github/issue_read 被引用在所有三个内置 agent 文件中,但没有任何已安装扩展注册这个工具
Namu Wiki
。

