Wink Pings

Google Releases Official AI Agent Skill Library, Surprisingly Using Format from Rival Anthropic

At the 2026 Google Cloud Next conference, Google launched an official skill library for AI Agents. Featuring 13 skills covering the entire Google Cloud product lineup, it can be installed with a single command, is compatible with mainstream AI coding tools including Cursor and Claude Code, and is permanently free. The most unexpected detail is that this skill library adopts the open-source format from direct competitor Anthropic, completely solving the common pain points of AI coding tools guessing cloud product usage incorrectly and outputting deprecated solutions.

Anyone who has written cloud-related code with AI coding tools has most likely encountered this situation: ask how to deploy Google Cloud Run or configure Firebase authentication, and the AI explains it convincingly, only for you to find out after following the steps that the method was deprecated a year ago, and you have to spend hours digging through documentation to fix it. Even non-technical users who ask AI to help set up a small Google Cloud tool often run into steps that just don't work.

At 2026 Google Cloud Next, Google launched an official solution to this problem. Put simply, it's like installing an official "product documentation patch" for AI, so it no longer has to cobble together usage instructions from scattered outdated documents on its own.

This skill library for AI Agents is neither a conventional developer documentation nor a chatbot. It is a set of pre-packaged official operation manuals that can be installed directly into an AI Agent, enabling it to accurately master the correct usage of all Google Cloud products.

Thirteen skills are currently available online, covering the following areas:

- Usage of Gemini series APIs on Agent platforms

- Basic operations of core cloud products including BigQuery, Cloud Run, Cloud SQL, Firebase, and AlloyDB

- Provisioning and management of Google Kubernetes Engine (GKE)

- End-to-end getting started guides and official standard authentication methods for Google Cloud

- Full-dimensional specifications for Google Cloud's Well-Architected Framework, covering security, reliability, cost optimization, performance, sustainability, and more

Installation only requires one command, and you can select specific skills to install on demand after running it:

```bash

npx skills add google/skills

```

Currently, this skill library is compatible with Claude Code, Cursor, Codex, Gemini CLI, and all AI Agents that support the corresponding format. It is released under the Apache 2.0 open-source license and is permanently free.

Notably, the standard format adopted by this skill library is not Google-developed—it is the open-source Agent Skills specification from Anthropic. The two companies are direct competitors in the large model and AI tool space, yet Google chose its rival's open standard as the official delivery layer for its entire product lineup. What's more, this format is natively compatible with all competing AI tools, including Anthropic's own Claude Code.

The result of practical testing is straightforward: for the same AI and the same prompt, the AI outputs a long-deprecated configuration method before installing the skills, and outputs a correct solution aligned with the latest best practices after installation. It's not that the AI's coding ability changed—it finally got access to accurate, up-to-date official product knowledge.

The open-source repository for this skill library is available at [https://github.com/google/skills](https://github.com/google/skills). It is still under active development, and the official team has opened channels for issue feedback and contributions:

1. You can search for or submit feedback in the Issues section of the repository if you encounter problems

2. You can submit bug reports for existing skills, or suggest adding new skills related to other Google technologies

Many developers mentioned in related discussions that in the past, most errors in cloud projects occurred during the setup and configuration stages, and this official skill library can save a lot of trial-and-error cost. Others also pointed out that the problem with AI coding tools has never been that they can't write code, but that they often output content based on outdated or even incorrect product knowledge, and this skill library fills exactly that gap.

No one can fully explain why Google chose a competitor's standard for this project, but at least for now, developers can get usable official skills for free, and all the time saved is real tangible benefit.

发布时间: 2026-05-22 22:35