连接器指南阅读约 1 分钟7 个 MCP 工具7 种语言

GitHub Copilot 按需技能:通过 MCP 获取任意 Agent Skill

让 VS Code 中的 GitHub Copilot 获取所有公开 Agent Skill:它的 agent 通过 AnythingMCP 找到合适的 SKILL.md 并执行。无需管理技能文件夹。

HC作者:HelpCode 团队更新于 1 分钟阅读 在 GitHub 开源

无需信用卡 · 7 天试用 · 提供自托管方案

github copilot · Agent Skills Finder
Find a skill for writing release notes, check its licence, and use it on the commits below.
AI
正在调用skills_searchskills_repo_infoskills_get
Found a release-notes skill (MIT licence, pinned to its latest commit). Following it, I grouped your 14 commits into Features, Fixes and Breaking changes and wrote one line per user-visible change.
skills_playbookskills_searchskills_repo_infoskills_latest_commitskills_get+ 更多
  • 7 天免费试用
    无需信用卡
  • 符合 GDPR,SOC 2 就绪
    数据驻留欧盟,审计日志
  • 在 GitHub 开源
    开源 · AGPL-3.0
  • 支持 ChatGPT、Claude、Gemini
    任何兼容 MCP 的客户端

4 分钟配置后即可使用的真实提示词。

安装连接器后,把这些提示词粘贴到 GitHub Copilot。每条提示词下方列出的工具会由智能体自动调用。

“Find a skill for writing release notes and use it on the commits since the last tag.”
skills_searchskills_get
“Look for a security-focused code-review skill and review this diff with it.”
skills_searchskills_repo_infoskills_get
“Search for a README-writing skill and write a README for this repository.”
skills_searchskills_list_filesskills_read_file
“Save the postmortem skill we just used as a workspace skill for the team.”
skills_latest_commitskills_save_to_workspace

跳过安装。2 分钟内即可运行。

在 cloud.anythingmcp.com 开始免费试用,一键添加 Agent Skills Finder,然后将你的 AI 客户端(Claude、ChatGPT、Copilot 或 Cursor)指向生成的 MCP 端点。无需 Docker,无需 git clone,无需任何工程经验。

开始免费试用

摘要

让 VS Code 中的 GitHub Copilot 获取所有公开 Agent Skill:它的 agent 通过 AnythingMCP 找到合适的 SKILL.md 并执行。无需管理技能文件夹。

试试这样问

Agent Skills Finder 的示例提示

点击任意提示即可复制,然后粘贴到 Claude、ChatGPT、Cursor、Gemini、Copilot 或 OpenClaw 中,在该连接器上运行。

Agent Skills Finder · 通过 MCP 实时
分享
Opus 4.7

Claude 是 AI,可能会出错。请核对回答。

无需安装即可使用 GitHub Copilot 技能

简短答案: 在 VS Code 的 mcp.json 里添加 AnythingMCP,安装 Agent Skills Finder,然后用 Copilot 的 agent 模式请求任务。Copilot 会搜索公开技能索引,从 GitHub 读取最佳的 SKILL.md 并执行。

Copilot 可以加载你添加到仓库或个人资料里的 Agent Skills,这很适合团队自定义。但对于成千上万的公开技能,把文件夹复制到每个仓库并不现实。有了 Agent Skills Finder,Copilot 只会在需要时拉取对应技能。

设置方法

步骤 1:在 AnythingMCP 上安装 Agent Skills Finder

  1. 在 AnythingMCP Cloud 创建一个工作区(7 天免费),或使用你自建的 AnythingMCP。
  2. 打开连接器,找到 Agent Skills Finder 并点击安装。它无需凭据。在新的 Cloud 工作区欢迎页的入门包里也有它。
  3. 对于需要 API 密钥的客户端(除了 claude.ai 和 ChatGPT 以外),在MCP 服务器 → 你的服务器 → API keys下创建一个密钥。

步骤 2:在 VS Code 添加 AnythingMCP

把服务器添加到你项目的 .vscode/mcp.json,或添加到你的用户配置(命令面板里选择 MCP: Open User Configuration)。密钥只会被询问一次,由 VS Code 保存,不会写入文件:

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anythingmcp-key",
      "description": "AnythingMCP MCP API key",
      "password": true
    }
  ],
  "servers": {
    "anythingmcp": {
      "type": "http",
      "url": "https://cloud.anythingmcp.com/mcp",
      "headers": { "X-API-Key": "${input:anythingmcp-key}" }
    }
  }
}

你也可以在命令面板里运行 MCP: Add Server 并选择 HTTP 选项。然后在 Copilot Chat 里切换到 Agent 模式:Agent Skills Finder 工具会出现在工具选择器里。

步骤 3:请求一个任务

开启新对话,描述你的需求,比如“找一个写发布说明的技能,并用它处理这些提交”。agent 会自动调用 Agent Skills Finder 工具。

你请求时会发生什么

比如你让 GitHub Copilot 为这个仓库写一个 GitHub Actions workflow。Copilot 首先调用 skills_playbook,然后用几个关键词调用 skills_search,再用 skills_repo_info 检查最佳候选的许可证和活跃度,用 skills_latest_commit 固定版本,最后用 skills_get 读取说明。然后它会按照技能描述完成任务,并告诉你用的是哪个技能,附上链接和许可证。全程无需安装,任务完成后也不会保留任何内容。

在 GitHub Copilot 里可以尝试的提示词

  • “找一个写 GitHub Actions workflow 的技能,并添加每次 pull request 都运行测试的 CI。”
  • “搜索一个能写 pull request 描述的技能,并为我的更改起草一份。”
  • “找一个分拣 issue 的技能,并给我接下来列出的 open issue 打标签。”
  • “找一个写 SECURITY.md 的技能,并为这个仓库创建一个。”

你还需要知道

  • 技能是第三方文本:GitHub Copilot 会按它的方法完成你的任务,但不会改变 agent 的归属,也不会跳过你的确认。
  • 连接器只读取文件,从不运行脚本。每天可免费搜索 50 次,或用免费 SkillsMP 密钥提升到 500 次。
  • 想为团队保留某个技能,可以让 GitHub Copilot 把它保存为 AnythingMCP 的工作区技能;管理员审核通过一次后,所有客户端都能用。

关于按需技能与已安装技能的对比,以及所有详细限制:Agent Skills on demand。

FAQ

它能在 agent 模式外用吗?
工具只会在 Copilot 的 agent 模式下被调用。在 ask 或 edit 模式下,Copilot 不会调用 MCP 工具。

API 密钥会存到仓库里吗?
不会。有了 inputs 配置,VS Code 只会询问一次密钥并保存在外部,mcp.json 文件可以安全提交。

仓库里的技能还会加载吗?
会。你添加到仓库或个人资料的技能会和连接器一起继续生效。

它能在 JetBrains IDE 里用吗?
JetBrains IDE 里的 Copilot 也能用 MCP 服务器;在其 MCP 设置里添加同样的 URL 和 X-API-Key 头即可。

你的其他 agent 也能用这些技能

这份指南对你有帮助吗?

你的 Agent Skills Finder 智能体只差一次点击。

安装连接器,粘贴密钥,向 GitHub Copilot 提问。免费试用 7 天,无需信用卡。

相关指南