{"@context":"https://schema.org","@type":"NewsArticle","generatedAt":"2026-08-07T02:00:35.291Z","headline":"Agent Plugins 1.0.0 发布：谷歌、亚马逊、微软等支持的统一智能体插件规范","description":"Agent Plugins 1.0.0 是一项由谷歌、亚马逊、微软等支持的中立目录规范，将 Agent Skills 和 MCP 服务器打包为单一可移植单元。通过标准化 plugin.json 清单和固定目录布局，开发者无需为不同 AI 编码智能体和 IDE 维护单独封装。谷歌已作为核心维护者加入，并在 Agents CLI 和 Data Agent Kit 中提供支持。","url":"https://www.aioga.com/news/cmshra4es0oycronk0wcvjv03/","mainEntityOfPage":"https://www.aioga.com/news/cmshra4es0oycronk0wcvjv03/","datePublished":"2026-08-06T16:53:12.298Z","dateModified":"2026-08-06T16:53:12.298Z","inLanguage":"zh-CN","publisher":{"@type":"NewsMediaOrganization","name":"Aioga","url":"https://www.aioga.com"},"citation":["https://developers.googleblog.com/agent-plugins-package-your-skills-tools-and-more","https://aihot.virxact.com/items/cmshra4es0oycronk0wcvjv03"],"canonicalUrl":"https://www.aioga.com/news/cmshra4es0oycronk0wcvjv03/","directAnswer":{"@type":"Answer","text":"Agent Plugins 1.0.0 发布，提出一种中立、可移植的智能体插件打包规范。该规范以 plugin.json 清单和固定目录布局统一封装 Agent Skills 与 MCP 服务器，谷歌已加入核心维护者并开始在自有产品中提供支持。","url":"https://www.aioga.com/news/cmshra4es0oycronk0wcvjv03/","dateCreated":"2026-08-06T16:53:12.298Z","author":{"@type":"Organization","@id":"https://www.aioga.com/authors/aioga-editorial/#editorial-team","name":"Aioga Editorial Team","url":"https://www.aioga.com/authors/aioga-editorial/"}},"evidence":[{"@type":"CreativeWork","name":"developers.googleblog.com source article","url":"https://developers.googleblog.com/agent-plugins-package-your-skills-tools-and-more","datePublished":"2026-08-06T16:53:12.298Z","provider":{"@type":"Organization","name":"developers.googleblog.com","url":"https://developers.googleblog.com/agent-plugins-package-your-skills-tools-and-more"}},{"@type":"CreativeWork","name":"AIHot archive record","url":"https://aihot.virxact.com/items/cmshra4es0oycronk0wcvjv03","datePublished":"2026-08-06T16:53:12.298Z","provider":{"@type":"Organization","name":"AIHot","url":"https://aihot.virxact.com/items/cmshra4es0oycronk0wcvjv03"}}],"aggregationSource":"Google Developers Blog（RSS）","originalPublisher":{"name":"developers.googleblog.com","url":"https://developers.googleblog.com/agent-plugins-package-your-skills-tools-and-more"},"geoDeepAnswer":null,"article":{"id":"cmshra4es0oycronk0wcvjv03","slug":"cmshra4es0oycronk0wcvjv03","url":"https://www.aioga.com/news/cmshra4es0oycronk0wcvjv03/","title":"Agent Plugins 1.0.0 发布：谷歌、亚马逊、微软等支持的统一智能体插件规范","title_en":"Agent Plugins package your skills， tools， and more","summary":"Agent Plugins 1.0.0 是一项由谷歌、亚马逊、微软等支持的中立目录规范，将 Agent Skills 和 MCP 服务器打包为单一可移植单元。通过标准化 plugin.json 清单和固定目录布局，开发者无需为不同 AI 编码智能体和 IDE 维护单独封装。谷歌已作为核心维护者加入，并在 Agents CLI 和 Data Agent Kit 中提供支持。","source":"Google Developers Blog（RSS）","sourceUrl":"https://developers.googleblog.com/agent-plugins-package-your-skills-tools-and-more","aiHotUrl":"https://aihot.virxact.com/items/cmshra4es0oycronk0wcvjv03","publishedAt":"2026-08-06T16:53:12.298Z","category":"产品更新","score":75,"selected":true,"articleBody":["Agent Plugins 1.0.0：https://agent-plugins.org/specification is an open, vendor-neutral specification for packaging Agent Skills and MCP servers into portable plugins. It was published by a TSC of Core Maintainers from Amazon, Cursor, Microsoft, OpenAI, and Vercel. Google is joining that group as a Core Maintainer, represented by Kevin Hou, and we're starting to build support into our own products.","You wrote a skill. You wrote a script or an MCP server to go with your skill. Together they do one useful thing well — they know how to query your reporting database and how to turn the results into the weekly summary your team actually reads.","Then you try to ship it to a second client.","The skill is fine. The MCP server is fine. But the wrapper around them is not: the directory layout is different, the manifest wants different top-level metadata, the MCP configuration uses a different shape and infers transports differently. So you fork the package, maintain two copies of components that were never different in the first place, and watch them drift.","The core problem isn't the components. It's the manifest.","Agent Skills：https://agent-plugins.org/ already gives agents reusable instructions and resources. MCP：https://modelcontextprotocol.io/docs/2026-07-28/getting-started/intro already connects agents to tools and services. Both are portable on their own. What has not been portable is the box you put them in — and that box is the thing every client had to invent for itself.","Plugin authors shouldn't have to choose between reaching every client and using what makes each client good. They should get both: one predictable structure for the parts that are genuinely the same, and room for each client to keep innovating on the parts that aren't.","This is why we're joining the Agent Plugins as core maintainers, and starting to integrate into our products.","A plugin is a directory. That's the whole idea, and the restraint is the point.","The manifest is two lines of substance:","Everything else is found at a fixed location. Skills live in skills/ , one subdirectory each, in the format the Agent Skills specification already defines. MCP servers are declared in mcp.json , with an explicit type on every entry. A client never has to guess a transport from the shape of a config object, it will work on stdio, Streamable HTTP, or legacy HTTP+SSE.","Notice what plugin.json cannot do. It cannot relocate components, and it cannot declare them inline. There is no discovery path to configure and no precedence order to learn. If skills/ isn't there, the client loads what is there and moves on. A mcp.json server that fails to start doesn't take the plugin's skills down with it — the client skips that entry, keeps loading, and reports the failure. Independent components fail independently.","That last reverse-domain directory is the escape hatch. com.example.client/ is an extension namespace owned entirely by one client, for hooks, agents, commands, or anything else that client wants to add. Clients that don't recognize it ignore it. The portable core stays small because the non-portable parts have somewhere legitimate to go.","Before you reach for a plugin, ask whether you need one. If you're shipping a single MCP server to a single client, mcp.json on its own is still the simpler answer. If you have a single skill, you don’t need a plugin. Agent Plugins earns its keep when you have components that belong together and need to travel together.","Agent Plugins v1 is a package format and nothing more. It defines no install mechanism, no distribution protocol, no permission model, no sandboxing requirements, no trust or provenance verification, and no user experience. Those are named openly in the project's future considerations：https://github.com/agentplugins/agent-plugins-spec/blob/main/FUTURE_CONSIDERATIONS.md, not quietly omitted.","This is the right call. Installation, policy, enterprise controls, and approval UX are quite different across clients like an IDE, a CLI, and a managed enterprise platform. Each agentic application has genuinely different obligations to their users.","Packaging is one job. Discovering and getting a plugin to a user is a different job, and it's worth being precise about which layer does what.","Each layer is independently useful and independently adoptable. You can publish a plugin with no catalog entry, catalog a resource that isn't a plugin, and run skills with no plugin at all. Adopting one never obligates you to the next.","Two Google products support the format as of today.","Agents CLI ：https://google.github.io/agents-cli/guide/getting-started/ packages Google's expert skills for agent building, evaluation, deployment, observability, and publishing, turning any AI coding agent — Antigravity, Gemini CLI, Claude Code, or Cursor — into an expert at agent building and agent ops. Those skills were already distributable. Now they're distributable in a format that isn't ours alone.","Data Agent Kit ：https://github.com/GoogleCloudPlatform/data-agent-kit provides a collection of plugins that bring the power of Google Data Cloud directly into your preferred AI coding agent or IDE. Designed for data engineers and developers, it allows agents to seamlessly manage data assets, run queries, and deploy data pipelines. By adopting the Agent Plugins standard, the Data Agent Kit ensures that its rich set of agentic skills and MCP servers—connecting to BigQuery, Spanner, Cloud SQL, and more—are portably available across any compatible client.","We expect to bring Agent Plugins support to more of our products that already work with Skills and MCP servers.","Packaging is unglamorous infrastructure, and unglamorous infrastructure is exactly the kind of thing that should be shared rather than reinvented five times. Agent Plugins is deliberately small in scope, does one thing well, and is open and interoperable; that's why we're backing it.","Scaling AI Agent Infrastructure with the MCP Stateless updates"],"articleImages":[{"sourceUrl":"https://storage.googleapis.com/gweb-developer-goog-blog-cms-assets/site/20260731-000318/images/g-dev.svg","alt":"Google for Developers","afterParagraph":0,"url":"/media/articles/cmshra4es0oycronk0wcvjv03/0a905f88f3aab252.jpg"},{"sourceUrl":"https://storage.googleapis.com/gweb-developer-goog-blog-assets/images/agent-plugins-figure-fork-and-drift.original.jpg","alt":"agent-plugins-figure-fork-and-drift","afterParagraph":3,"url":"/media/articles/cmshra4es0oycronk0wcvjv03/b31d3d95ee138209.jpg"},{"sourceUrl":"https://storage.googleapis.com/gweb-developer-goog-blog-assets/images/agent-plugins-figure-not-every-skill.original.jpg","alt":"agent-plugins-figure-not-every-skill","afterParagraph":13,"url":"/media/articles/cmshra4es0oycronk0wcvjv03/d81b15ea5efc29ec.jpg"},{"sourceUrl":"https://storage.googleapis.com/gweb-developer-goog-blog-assets/images/agent-plugins-figure-ecosystem-layers.original.jpg","alt":"agent-plugins-figure-ecosystem-layers","afterParagraph":17,"url":"/media/articles/cmshra4es0oycronk0wcvjv03/777ee1a47cddf1df.jpg"},{"sourceUrl":"https://storage.googleapis.com/gweb-developer-goog-blog-assets/images/Model_Routing_via_API_Gateway___He.2e16d0ba.fill-800x400.jpg","alt":"A unified API for AI model routing","afterParagraph":23,"url":"/media/articles/cmshra4es0oycronk0wcvjv03/91c1d9681dd29ede.jpg"}],"mediaStatus":"ok","articleBodyZh":["Agent Plugins 1.0.0：https://agent-plugins.org/specification 是一个开放的、供应商中立的规范，用于将代理技能和 MCP 服务器打包成可移植插件。它由来自 Amazon、Cursor、Microsoft、OpenAI 和 Vercel 的核心维护者技术委员会（TSC）发布。Google 将作为核心维护者加入该小组，由 Kevin Hou 代表，我们也开始将其支持集成到自己的产品中。","你编写了一个技能。你为你的技能编写了一个脚本或 MCP 服务器。它们一起做好一件有用的事——它们知道如何查询你的报告数据库，以及如何将结果转换为你的团队实际阅读的每周摘要。","然后你尝试把它交付给第二个客户。","技能是没问题的。MCP 服务器也没问题。但它们的包装却不行：目录布局不同，清单需要不同的顶层元数据，MCP 配置使用不同的结构并且对传输方式的推断不同。所以你分叉了这个包，维护两份原本从未不同的组件，并看着它们逐渐偏离。","核心问题不在于组件，而在于清单。","Agent Skills：https://agent-plugins.org/ 已经为代理提供了可重用的指令和资源。MCP：https://modelcontextprotocol.io/docs/2026-07-28/getting-started/intro 已经将代理连接到工具和服务。两者本身都是可移植的。不可移植的是你放置它们的盒子——而这个盒子是每个客户都必须自己发明的。","插件作者不应该在覆盖每个客户和使用让每个客户受益的方式之间做选择。他们应该同时得到两者：对于真正相同的部分有一个可预测的结构，并允许每个客户在不同的部分继续创新。","这就是为什么我们作为核心维护者加入 Agent Plugins，并开始将其整合到我们的产品中。","插件就是一个目录。这就是整个理念，而其限制正是重点。","清单有两行实质内容：","其他所有内容都位于固定位置。技能存放在 skills/ 目录中，每个子目录一个，使用代理技能规范已经定义的格式。MCP 服务器在 mcp.json 中声明，每个条目都有明确的类型。客户端从不需要根据配置对象的形状去猜测传输方式，它可以在 stdio、可流式 HTTP 或传统 HTTP+SSE 上运行。","注意 plugin.json 无法做的事情。它不能重新定位组件，也不能内联声明组件。没有可配置的发现路径，也没有需要了解的优先级顺序。如果 skills/ 不存在，客户端会加载现有内容并继续前进。无法启动的 mcp.json 服务器不会导致插件的技能也不可用——客户端会跳过该条目，继续加载，并报告失败。独立的组件独立失败。","最后那个反域名目录是逃生舱。com.example.client/ 是由单个客户端完全拥有的扩展命名空间，用于挂钩、代理、命令或该客户端想添加的任何其他内容。不识别的客户端会忽略它。可移植核心保持精简，因为不可移植的部分有合法的存放位置。","在你选择使用插件之前，先问自己是否真的需要。如果你只向单个客户端提供单个 MCP 服务器，单独使用 mcp.json 仍然是更简单的方案。如果你只有一个技能，你不需要插件。当你拥有属于同一组并需要一起迁移的组件时，Agent Plugins 才真正体现其价值。","Agent Plugins v1 仅是一种包格式，仅此而已。它不定义安装机制、不定义分发协议、不定义权限模型、不定义沙箱要求、不定义信任或来源验证，也不定义用户体验。这些在项目未来考虑中有明确命名：https://github.com/agentplugins/agent-plugins-spec/blob/main/FUTURE_CONSIDERATIONS.md，而不是悄悄省略。","这是正确的决定。安装、策略、企业控制和审批用户体验在不同客户端（如 IDE、CLI、托管企业平台）间差异很大。每个代理应用对其用户都有真正不同的责任。","打包是一项工作。发现插件并将其提供给用户是另一项工作，因此值得明确哪一层负责什么。","每一层都是独立有用且可以独立采用的。你可以发布一个没有目录条目的插件、对不是插件的资源进行编目，或者在完全没有插件的情况下运行技能。采用一层并不意味着你必须采用下一层。","截至目前，有两个谷歌产品支持该格式。","Agents CLI：https://google.github.io/agents-cli/guide/getting-started/ 打包了谷歌在代理构建、评估、部署、可观察性和发布方面的专家技能，将任何 AI 编码代理——Antigravity、Gemini CLI、Claude Code 或 Cursor——转变为代理构建和代理运维专家。这些技能已经可以分发。现在，它们可以以一种不仅仅是我们专用的格式进行分发。","Data Agent Kit：https://github.com/GoogleCloudPlatform/data-agent-kit 提供了一系列插件，将谷歌数据云的功能直接引入你偏好的 AI 编码代理或 IDE。该工具专为数据工程师和开发人员设计，使代理能够无缝管理数据资产、运行查询和部署数据管道。通过采纳 Agent Plugins 标准，Data Agent Kit 确保其丰富的代理技能集和 MCP 服务器——连接 BigQuery、Spanner、Cloud SQL 等——可以在任何兼容客户端上移植使用。","我们计划将 Agent Plugins 支持推广到更多已经与技能和 MCP 服务器配合使用的产品上。","打包是朴素的基础设施，而朴素的基础设施正是应该共享而不是重复发明五次的东西。Agent Plugins 的范围刻意保持小，专注于做好一件事，并且是开放且可互操作的；这就是我们支持它的原因。","用 MCP 无状态更新扩展 AI 代理基础设施"],"translationStatus":"translated","bodyOrigin":"source-page","editorial":{"summary":"Agent Plugins 1.0.0 发布，提出一种中立、可移植的智能体插件打包规范。该规范以 plugin.json 清单和固定目录布局统一封装 Agent Skills 与 MCP 服务器，谷歌已加入核心维护者并开始在自有产品中提供支持。","background":"材料称，Agent Skills 可提供可复用指令与资源，MCP 可连接工具和服务，但此前不同客户端各自设计插件外层包装，导致目录布局、元数据和 MCP 配置存在差异。新规范试图统一这些共同部分，同时保留客户端差异化空间。","viewpoint":"Aioga 判断，这项更新的重点不是新增某一种智能体能力，而是减少插件在不同客户端之间迁移时的封装重复。若规范获得更多实现者采用，开发者维护多套包装的负担可能下降，但实际效果仍取决于各客户端的支持范围与兼容程度。","implications":"值得关注的是，亚马逊、Cursor、微软、OpenAI、Vercel等相关参与方与谷歌共同出现在维护体系或支持背景中，显示该规范试图建立跨厂商协作基础。材料尚未说明采用规模、兼容边界或商业影响，不能据此判断其已成为行业统一标准。","nextStep":"Aioga建议后续观察规范的实现进展，尤其是不同智能体和 IDE 对 plugin.json、目录布局及 MCP 配置的具体支持情况。同时应关注规范版本演进、客户端保留的差异化能力，以及插件在真实项目中的迁移成本是否确实降低。","evidenceRefs":["title","summary","articleBody","source"],"status":"published","aiGenerated":true,"autoApproved":true,"generatedBy":"aioga-editorial:gpt-5.6-sol","reviewedBy":"aioga-editorial-review:gpt-5.6-sol","generatedAt":"2026-08-06T19:15:35.849Z","sourceHash":"55a1d16a2f3d3d71","review":{"approved":true,"groundedness":94,"clarity":91,"duplicationRisk":12,"blockingIssues":[],"notes":["“亚马逊、Cursor、微软、OpenAI、Vercel等相关参与方与谷歌共同出现在维护体系或支持背景中”略显笼统，可明确表述为：这些机构参与核心维护者体系，谷歌则已加入该体系。","“开始在自有产品中提供支持”与摘要一致；正文更谨慎地表述为“开始在自有产品中构建支持”，如需严格贴近原文可采用后者。"]},"validation":{"passed":true,"mode":"ai-auto","revisions":0,"checks":["schema","length","source-attribution","low-source-overlap","no-html","independent-ai-review"]}},"tags":["产品更新","Google Developers Blog（RSS）"],"translations":{"zh-CN":{"title":"Agent Plugins 1.0.0 发布：谷歌、亚马逊、微软等支持的统一智能体插件规范","summary":"Agent Plugins 1.0.0 是一项由谷歌、亚马逊、微软等支持的中立目录规范，将 Agent Skills 和 MCP 服务器打包为单一可移植单元。通过标准化 plugin.json 清单和固定目录布局，开发者无需为不同 AI 编码智能体和 IDE 维护单独封装。谷歌已作为核心维护者加入，并在 Agents CLI 和 Data Agent Kit 中提供支持。","category":"产品更新","source":"developers.googleblog.com","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Agent Plugins 1.0.0 发布：谷歌、亚马逊、微软等支持的统一智能体插件规范 - Aioga AI资讯","description":"Agent Plugins 1.0.0 是一项由谷歌、亚马逊、微软等支持的中立目录规范，将 Agent Skills 和 MCP 服务器打包为单一可移植单元。通过标准化 plugin.json 清单和固定目录布局，开发者无需为不同 AI 编码智能体和 IDE 维护单独封装。谷歌已作为核心维护者加入，并在 Agents CLI 和 Data Agent Kit...","url":"https://www.aioga.com/news/cmshra4es0oycronk0wcvjv03/"},"en":{"title":"Agent Plugins 1.0.0 Released: A Unified Agent Plugin Standard Supported by Google, Amazon, Microsoft, and Others","summary":"Agent Plugins 1.0.0 is a neutral catalog specification supported by Google, Amazon, Microsoft, and others, which packages Agent Skills and MCP servers into a single portable unit. By standardizing the plugin.json manifest and fixed directory layout, developers do not need to maintain separate packages for different AI coders and IDEs. Google has joined as a core maintainer and provides support in Agents CLI and Data Agent Kit.","category":"Products","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Agent Plugins 1.0.0 Released: A Unified Agent Plugin Standard Supported by Google, Amazon, Microsoft, and Others - Aioga AI News","description":"Agent Plugins 1.0.0 is a neutral catalog specification supported by Google, Amazon, Microsoft, and others, which packages Agent Skills and MCP servers into a single portable unit....","url":"https://www.aioga.com/en/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:05:43.617Z"},"ja":{"title":"Agent Plugins 1.0.0 発表：Google、Amazon、Microsoft などがサポートする統一エージェントプラグイン規格","summary":"Agent Plugins 1.0.0 は、Google、Amazon、Microsoft などが支援する中立的なディレクトリ仕様で、Agent Skills と MCP サーバーを単一のポータブルユニットとしてパッケージ化するものです。標準化された plugin.json マニフェストと固定ディレクトリ構造により、開発者は異なる AI コーディングエージェントや IDE 用に個別のパッケージを維持する必要がありません。Google はコアメンテナーとして参加しており、Agents CLI と Data Agent Kit でサポートを提供しています。","category":"製品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Agent Plugins 1.0.0 発表：Google、Amazon、Microsoft などがサポートする統一エージェントプラグイン規格 - Aioga AIニュース","description":"Agent Plugins 1.0.0 は、Google、Amazon、Microsoft などが支援する中立的なディレクトリ仕様で、Agent Skills と MCP サーバーを単一のポータブルユニットとしてパッケージ化するものです。標準化された plugin.json マニフェストと固定ディレクトリ構造により、開発者は異なる AI コーディングエージェ...","url":"https://www.aioga.com/ja/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:05:55.801Z"},"ko":{"title":"Agent Plugins 1.0.0 출시: 구글, 아마존, 마이크로소프트 등 지원하는 통합 에이전트 플러그인 규격","summary":"Agent Plugins 1.0.0는 구글, 아마존, 마이크로소프트 등에서 지원하는 중립적인 디렉토리 규격으로, Agent Skills와 MCP 서버를 단일 이동 가능한 단위로 패키징합니다. 표준화된 plugin.json 매니페스트와 고정 디렉토리 구조를 통해 개발자는 다양한 AI용으로 에이전트와 IDE를 별도로 패키징할 필요가 없습니다. 구글은 핵심 유지보수자로 참여했으며, Agents CLI와 Data Agent Kit에서 지원을 제공합니다.","category":"제품 업데이트","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Agent Plugins 1.0.0 출시: 구글, 아마존, 마이크로소프트 등 지원하는 통합 에이전트 플러그인 규격 - Aioga AI 뉴스","description":"Agent Plugins 1.0.0는 구글, 아마존, 마이크로소프트 등에서 지원하는 중립적인 디렉토리 규격으로, Agent Skills와 MCP 서버를 단일 이동 가능한 단위로 패키징합니다. 표준화된 plugin.json 매니페스트와 고정 디렉토리 구조를 통해 개발자는 다양한 AI용으로 에이전트와 IDE를 별도로 패키징할...","url":"https://www.aioga.com/ko/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:06:50.253Z"},"es":{"title":"Agent Plugins 1.0.0 lanzado: especificación de plugins de agente unificada soportada por Google, Amazon, Microsoft, etc.","summary":"Agent Plugins 1.0.0 es una especificación de catálogo neutral respaldada por Google, Amazon, Microsoft, entre otros, que empaqueta las Habilidades del Agente y el servidor MCP en una única unidad portátil. Mediante la estandarización del manifiesto plugin.json y una estructura de directorios fija, los desarrolladores no necesitan mantener empaquetados separados para diferentes agentes de IA y entornos de desarrollo. Google se ha unido como mantenedor principal y proporciona soporte en Agents CLI y Data Agent Kit.","category":"Productos","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Agent Plugins 1.0.0 lanzado: especificación de plugins de agente unificada soportada por Google, Amazon, Microsoft, etc. - Aioga Noticias de IA","description":"Agent Plugins 1.0.0 es una especificación de catálogo neutral respaldada por Google, Amazon, Microsoft, entre otros, que empaqueta las Habilidades del Agente y el servidor MCP en u...","url":"https://www.aioga.com/es/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:06:44.062Z"},"fr":{"title":"Publication d'Agent Plugins 1.0.0 : une norme de plugin d'agent unifiée supportée par Google, Amazon, Microsoft, etc.","summary":"Agent Plugins 1.0.0 est une spécification de répertoire neutre soutenue par Google, Amazon, Microsoft, etc., qui regroupe les Agent Skills et les serveurs MCP en une seule unité portable. Grâce à la normalisation du manifeste plugin.json et à la structure de répertoire fixée, les développeurs n'ont pas besoin de maintenir des emballages distincts pour différents agents et IDE. Google a rejoint en tant que mainteneur principal et offre un support dans Agents CLI et Data Agent Kit.","category":"Produits","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Publication d'Agent Plugins 1.0.0 : une norme de plugin d'agent unifiée supportée par Google, Amazon, Microsoft, etc. - Aioga Actualités IA","description":"Agent Plugins 1.0.0 est une spécification de répertoire neutre soutenue par Google, Amazon, Microsoft, etc., qui regroupe les Agent Skills et les serveurs MCP en une seule unité po...","url":"https://www.aioga.com/fr/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:07:36.936Z"},"de":{"title":"Agent Plugins 1.0.0 veröffentlicht: Einheitliche Agenten-Plugin-Spezifikation, unterstützt von Google, Amazon, Microsoft und anderen","summary":"Agent Plugins 1.0.0 ist ein neutraler Katalogstandard, der von Google, Amazon, Microsoft und anderen unterstützt wird und Agent Skills sowie MCP-Server zu einer einzigen portablen Einheit bündelt. Durch die Standardisierung des plugin.json-Manifests und der festen Verzeichnisstruktur müssen Entwickler keine separaten Pakete für verschiedene KI-Codierung-Agenten und IDEs pflegen. Google ist als Kernwartungspartner beigetreten und bietet Unterstützung in Agents CLI und Data Agent Kit an.","category":"产品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Agent Plugins 1.0.0 veröffentlicht: Einheitliche Agenten-Plugin-Spezifikation, unterstützt von Google, Amazon, Microsoft und anderen - Aioga KI-News","description":"Agent Plugins 1.0.0 ist ein neutraler Katalogstandard, der von Google, Amazon, Microsoft und anderen unterstützt wird und Agent Skills sowie MCP-Server zu einer einzigen portablen...","url":"https://www.aioga.com/de/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:07:38.066Z"},"pt-BR":{"title":"Lançamento do Agent Plugins 1.0.0: Norma unificada de plugins de agentes suportada por Google, Amazon, Microsoft e outros","summary":"Agent Plugins 1.0.0 é uma especificação de catálogo neutra apoiada por Google, Amazon, Microsoft e outros, que empacota Agent Skills e servidores MCP em uma única unidade portátil. Por meio da padronização do manifesto plugin.json e da estrutura de diretórios fixa, os desenvolvedores não precisam manter empacotamentos separados para diferentes IA, agentes e IDEs. O Google ingressou como mantenedor principal e oferece suporte no Agents CLI e no Data Agent Kit.","category":"产品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Lançamento do Agent Plugins 1.0.0: Norma unificada de plugins de agentes suportada por Google, Amazon, Microsoft e outros - Aioga Notícias de IA","description":"Agent Plugins 1.0.0 é uma especificação de catálogo neutra apoiada por Google, Amazon, Microsoft e outros, que empacota Agent Skills e servidores MCP em uma única unidade portátil....","url":"https://www.aioga.com/pt-BR/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:08:25.215Z"},"ru":{"title":"Выпуск Agent Plugins 1.0.0: единый стандарт плагинов для агентов, поддерживаемый Google, Amazon, Microsoft и другими","summary":"Agent Plugins 1.0.0 — это нейтральный каталог стандартов, поддерживаемый такими компаниями, как Google, Amazon и Microsoft, который объединяет навыки агента и сервер MCP в единый переносимый модуль. Благодаря стандартизации манифеста plugin.json и фиксированной структуре каталогов разработчики не нуждаются в создании отдельных пакетов для разных ИИ-агентов и IDE. Google присоединилась в качестве основного поддерживающего участника и предоставляет поддержку через Agents CLI и Data Agent Kit.","category":"产品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Выпуск Agent Plugins 1.0.0: единый стандарт плагинов для агентов, поддерживаемый Google, Amazon, Microsoft и другими - Aioga Новости ИИ","description":"Agent Plugins 1.0.0 — это нейтральный каталог стандартов, поддерживаемый такими компаниями, как Google, Amazon и Microsoft, который объединяет навыки агента и сервер MCP в единый п...","url":"https://www.aioga.com/ru/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:08:29.595Z"},"ar":{"title":"إصدار Agent Plugins 1.0.0: معيار برنامج المساعد الذكي الموحد المدعوم من جوجل وأمازون ومايكروسوفت","summary":"Agent Plugins 1.0.0 هو معيار دليل محايد تدعمه شركات مثل جوجل وأمازون ومايكروسوفت، يدمج مهارات الوكيل وخادم MCP في وحدة قابلة للنقل بشكل واحد. من خلال توحيد ملف plugin.json وتنظيم الدليل الثابت، لا يحتاج المطورون إلى إنشاء حزم منفصلة لكل AI وIDE. وقد انضمت جوجل كصيانة رئيسية وقدمت الدعم في Agents CLI وData Agent Kit.","category":"产品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"إصدار Agent Plugins 1.0.0: معيار برنامج المساعد الذكي الموحد المدعوم من جوجل وأمازون ومايكروسوفت - Aioga أخبار الذكاء الاصطناعي","description":"Agent Plugins 1.0.0 هو معيار دليل محايد تدعمه شركات مثل جوجل وأمازون ومايكروسوفت، يدمج مهارات الوكيل وخادم MCP في وحدة قابلة للنقل بشكل واحد. من خلال توحيد ملف plugin.json وتنظيم ا...","url":"https://www.aioga.com/ar/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:09:20.308Z"},"hi":{"title":"एजेंट प्लगइन्स 1.0.0 जारी: गूगल, अमेज़न, माइक्रोसॉफ्ट आदि द्वारा समर्थित एकीकृत एजेंट प्लगइन मानक","summary":"Agent Plugins 1.0.0 एक तटस्थ निर्देशिका विनिर्देश है, जिसे Google, Amazon, Microsoft आदि द्वारा समर्थित किया गया है, जो Agent Skills और MCP सर्वरों को एक एकल पोर्टेबल इकाई में पैकेज करता है। मानकीकृत plugin.json मेनिफेस्ट और निश्चित निर्देशिका लेआउट के माध्यम से, डेवलपर्स को विभिन्न AI कोडिंग एजेंट और IDE के लिए अलग पैकेजिंग बनाए रखने की आवश्यकता नहीं होती है। Google ने मुख्य मेंटेनर के रूप में शामिल होकर, Agents CLI और Data Agent Kit में समर्थन प्रदान किया है।","category":"产品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"एजेंट प्लगइन्स 1.0.0 जारी: गूगल, अमेज़न, माइक्रोसॉफ्ट आदि द्वारा समर्थित एकीकृत एजेंट प्लगइन मानक - Aioga AI समाचार","description":"Agent Plugins 1.0.0 एक तटस्थ निर्देशिका विनिर्देश है, जिसे Google, Amazon, Microsoft आदि द्वारा समर्थित किया गया है, जो Agent Skills और MCP सर्वरों को एक एकल पोर्टेबल इकाई में पैके...","url":"https://www.aioga.com/hi/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:09:23.038Z"},"it":{"title":"Agent Plugins 1.0.0 rilasciato: norme unificate dei plugin per agenti supportate da Google, Amazon, Microsoft e altri","summary":"Agent Plugins 1.0.0 è una specifica di catalogo neutrale supportata da Google, Amazon, Microsoft e altri, che confeziona Agent Skills e server MCP in un'unica unità portatile. Tramite la standardizzazione del manifesto plugin.json e della disposizione delle directory fissa, gli sviluppatori non hanno bisogno di mantenere pacchetti separati per diversi agenti AI e IDE. Google si è unita come manutentore principale e fornisce supporto in Agents CLI e Data Agent Kit.","category":"产品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Agent Plugins 1.0.0 rilasciato: norme unificate dei plugin per agenti supportate da Google, Amazon, Microsoft e altri - Aioga Notizie IA","description":"Agent Plugins 1.0.0 è una specifica di catalogo neutrale supportata da Google, Amazon, Microsoft e altri, che confeziona Agent Skills e server MCP in un'unica unità portatile. Tram...","url":"https://www.aioga.com/it/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:10:12.018Z"},"nl":{"title":"Agent Plugins 1.0.0 uitgebracht: een uniforme agent-plug-innorm ondersteund door Google, Amazon, Microsoft en andere","summary":"Agent Plugins 1.0.0 is een neutrale catalogusnorm ondersteund door Google, Amazon, Microsoft en anderen, die Agent Skills en MCP-servers verpakt tot een enkele draagbare eenheid. Door het standaardiseren van de plugin.json-manifesten en vaste directorystructuren hoeven ontwikkelaars geen afzonderlijke verpakkingen te onderhouden voor verschillende AI-agenten en IDE's. Google is toegetreden als kernonderhouder en biedt ondersteuning in Agents CLI en Data Agent Kit.","category":"产品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Agent Plugins 1.0.0 uitgebracht: een uniforme agent-plug-innorm ondersteund door Google, Amazon, Microsoft en andere - Aioga AI-nieuws","description":"Agent Plugins 1.0.0 is een neutrale catalogusnorm ondersteund door Google, Amazon, Microsoft en anderen, die Agent Skills en MCP-servers verpakt tot een enkele draagbare eenheid. D...","url":"https://www.aioga.com/nl/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:10:06.939Z"},"tr":{"title":"Agent Eklentileri 1.0.0 Yayınlandı: Google, Amazon, Microsoft vb. tarafından desteklenen birleşik ajan eklenti standardı","summary":"Agent Plugins 1.0.0, Google, Amazon, Microsoft gibi şirketlerin desteklediği tarafsız bir katalog standardıdır ve Agent Yeteneklerini ile MCP sunucusunu tek bir taşınabilir birim halinde paketler. plugin.json manifestini standartlaştırarak ve sabit bir dizin düzeni kullanarak, geliştiricilerin farklı AI için ajanları ve IDE'yi ayrı ayrı paketlemesine gerek kalmaz. Google, çekirdek bakımcı olarak katılmış ve Agents CLI ile Data Agent Kit'te destek sağlamaktadır.","category":"产品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Agent Eklentileri 1.0.0 Yayınlandı: Google, Amazon, Microsoft vb. tarafından desteklenen birleşik ajan eklenti standardı - Aioga AI Haberleri","description":"Agent Plugins 1.0.0, Google, Amazon, Microsoft gibi şirketlerin desteklediği tarafsız bir katalog standardıdır ve Agent Yeteneklerini ile MCP sunucusunu tek bir taşınabilir birim h...","url":"https://www.aioga.com/tr/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:10:57.776Z"},"vi":{"title":"Agent Plugins 1.0.0 ra mắt: Tiêu chuẩn plugin cho đại lý thông minh được hỗ trợ bởi Google, Amazon, Microsoft và các bên khác","summary":"Agent Plugins 1.0.0 là một chuẩn thư mục trung lập được hỗ trợ bởi Google, Amazon, Microsoft, v.v., đóng gói Agent Skills và máy chủ MCP thành một đơn vị có thể di chuyển duy nhất. Thông qua việc chuẩn hóa tệp danh sách plugin.json và bố cục danh mục cố định, các nhà phát triển không cần duy trì gói riêng biệt cho các AI coding agent và IDE khác nhau. Google đã tham gia với tư cách là người duy trì cốt lõi và cung cấp hỗ trợ trong Agents CLI và Data Agent Kit.","category":"产品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Agent Plugins 1.0.0 ra mắt: Tiêu chuẩn plugin cho đại lý thông minh được hỗ trợ bởi Google, Amazon, Microsoft và các bên khác - Tin tức AI Aioga","description":"Agent Plugins 1.0.0 là một chuẩn thư mục trung lập được hỗ trợ bởi Google, Amazon, Microsoft, v.v., đóng gói Agent Skills và máy chủ MCP thành một đơn vị có thể di chuyển duy nhất....","url":"https://www.aioga.com/vi/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:11:00.218Z"},"id":{"title":"Agent Plugins 1.0.0 Dirilis: Spesifikasi Plugin Agen Cerdas yang Didukung oleh Google, Amazon, Microsoft, dan Lainnya","summary":"Agent Plugins 1.0.0 adalah spesifikasi direktori netral yang didukung oleh Google, Amazon, Microsoft, dan lainnya, yang mengemas Agent Skills dan server MCP menjadi satu unit portabel tunggal. Dengan menstandarisasi daftar plugin.json dan tata letak direktori yang tetap, pengembang tidak perlu memelihara paket terpisah untuk agen dan IDE yang berbeda terkait pengkodean AI. Google telah bergabung sebagai pemelihara inti, dan menyediakan dukungan dalam Agents CLI dan Data Agent Kit.","category":"产品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Agent Plugins 1.0.0 Dirilis: Spesifikasi Plugin Agen Cerdas yang Didukung oleh Google, Amazon, Microsoft, dan Lainnya - Berita AI Aioga","description":"Agent Plugins 1.0.0 adalah spesifikasi direktori netral yang didukung oleh Google, Amazon, Microsoft, dan lainnya, yang mengemas Agent Skills dan server MCP menjadi satu unit porta...","url":"https://www.aioga.com/id/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:11:47.709Z"},"th":{"title":"Agent Plugins 1.0.0 เปิดตัว: มาตรฐานปลั๊กอินเอเจนต์อัจฉริยะเดียวที่รองรับโดย Google, Amazon, Microsoft เป็นต้น","summary":"Agent Plugins 1.0.0 เป็นมาตรฐานไดเรกทอรีที่เป็นกลางซึ่งได้รับการสนับสนุนโดย Google, Amazon, Microsoft และอื่น ๆ โดยรวม Agent Skills และเซิร์ฟเวอร์ MCP เป็นหน่วยพกพาเดียว ผ่านการทำให้เป็นมาตรฐานของไฟล์ plugin.json และการจัดโครงสร้างไดเรกทอรีที่กำหนดไว้ ลพัฒนาซอฟต์แวร์ไม่จำเป็นต้องสร้างแพ็กเกจแยกสำหรับตัวแทน AI และ IDE ที่แตกต่างกัน Google ได้เข้าร่วมเป็นผู้ดูแลหลักและให้การสนับสนุนใน Agents CLI และ Data Agent Kit","category":"产品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Agent Plugins 1.0.0 เปิดตัว: มาตรฐานปลั๊กอินเอเจนต์อัจฉริยะเดียวที่รองรับโดย Google, Amazon, Microsoft เป็นต้น - ข่าว AI Aioga","description":"Agent Plugins 1.0.0 เป็นมาตรฐานไดเรกทอรีที่เป็นกลางซึ่งได้รับการสนับสนุนโดย Google, Amazon, Microsoft และอื่น ๆ โดยรวม Agent Skills และเซิร์ฟเวอร์ MCP เป็นหน่วยพกพาเดียว ผ่านการทำใ...","url":"https://www.aioga.com/th/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:11:51.055Z"},"pl":{"title":"Wydanie Agent Plugins 1.0.0: ujednolicona specyfikacja wtyczek dla agentów obsługiwana przez Google, Amazon, Microsoft i innych","summary":"Agent Plugins 1.0.0 to neutralna specyfikacja katalogu wspierana przez Google, Amazon, Microsoft i innych, która pakuje Agent Skills i serwer MCP w pojedynczą, przenośną jednostkę. Dzięki standaryzacji pliku manifestu plugin.json i ustalonej strukturze katalogów, deweloperzy nie muszą tworzyć osobnych pakietów dla różnych AI i IDE. Google dołączyło jako główny opiekun i zapewnia wsparcie w Agents CLI oraz Data Agent Kit.","category":"产品更新","source":"Google Developers Blog（RSS）","aggregationSource":"Google Developers Blog（RSS）","pageTitle":"Wydanie Agent Plugins 1.0.0: ujednolicona specyfikacja wtyczek dla agentów obsługiwana przez Google, Amazon, Microsoft i innych - Aioga Wiadomości AI","description":"Agent Plugins 1.0.0 to neutralna specyfikacja katalogu wspierana przez Google, Amazon, Microsoft i innych, która pakuje Agent Skills i serwer MCP w pojedynczą, przenośną jednostkę....","url":"https://www.aioga.com/pl/news/cmshra4es0oycronk0wcvjv03/","contentTranslated":true,"sourceHash":"6da005a874a78f00","translatedAt":"2026-08-06T17:12:44.621Z"}}}}