Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

google-developer-knowledge-apiGoogle 开发者知识 API

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

214

周安装

9

GitHub Stars

2

下载量

75
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:google-developer-knowledge-api(Google 开发者知识 API)
来源仓库:https://github.com/jarmen423/skills
仓库路径:skills/google-developer-knowledge-api
安装命令:
npx skills add https://github.com/jarmen423/skills --skill google-developer-knowledge-api
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jarmen423/skills --skill google-developer-knowledge-api

简介

用于辅助 API 设计和接口文档整理。

  • 适合梳理 endpoint、生成 OpenAPI 草稿或检查字段命名。
  • 需要确认业务语义、鉴权方式和错误处理规则,避免凭空补字段。
  • 最好从现有代码或接口样例中提取事实,确保文档准确性。
  • google-developer-knowledge-api 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Google Developer Knowledge API

Direct REST API access to Google's public developer documentation without needing the MCP server.

Overview

The Developer Knowledge API provides machine-readable access to Google's developer docs. It offers:

  • SearchDocumentChunks: Find relevant page URIs and content snippets
  • GetDocument: Fetch full content of a single document
  • BatchGetDocuments: Fetch multiple documents at once

Authentication

IMPORTANT: Despite official documentation suggesting API keys work, the API actually requires OAuth2 authentication (access tokens or ADC).

Option 1: Application Default Credentials (Recommended)

  1. Install gcloud CLI if not already installed
  2. Run: gcloud auth application-default login
  3. Enable the API in your project:

- Open Developer Knowledge API page - Select your project and click Enable

Option 2: Service Account

  1. Create a service account in Google Cloud Console
  2. Download the JSON key file
  3. Set the environment variable: export GOOGLE_APPLICATION_CREDENTIALS="/path/to/service-account.json"

Option 3: Access Token

Get a token manually:

gcloud auth application-default print-access-token

API Reference

Base URL: https://developerknowledge.googleapis.com/v1alpha

All requests require an Authorization: Bearer <token> header.

Search for Document Chunks

GET /documents:searchDocumentChunks?query={query}

Parameters:

  • query (required): Search query string
  • pageSize (optional): Number of results per page
  • pageToken (optional): Token for pagination

Response includes:

  • documentChunks[]: Array of matching chunks

- parent: Document identifier (use for GetDocument) - content: Snippet of matching content - uri: Original documentation URL

Get Single Document

GET /{document_name}

Parameters:

  • document_name: The parent value from search results (e.g., documents/developers.google.com/...)

Response: Full Markdown content of the document

Batch Get Documents

POST /documents:batchGet

Body (JSON):

{
  "names": [
    "documents/developers.google.com/path/to/doc1",
    "documents/developers.google.com/path/to/doc2"
  ]
}

Retrieves up to 100 documents in a single call.

Python Client

See scripts/developer_knowledge_client.py for a ready-to-use Python client with automatic OAuth2 handling.

Installation Requirements

pip install google-auth google-auth-httplib2

Or use the gcloud CLI fallback (no extra dependencies).

Quick Usage

from developer_knowledge_client import DeveloperKnowledgeClient

# Uses Application Default Credentials automatically
client = DeveloperKnowledgeClient()

# Search for documentation
results = client.search("Cloud Storage buckets")
for chunk in results.get("documentChunks", []):
    print(f"URL: {chunk.get('uri')}")
    print(f"Content: {chunk.get('content')[:200]}...")

# Get full document
doc = client.get_document(chunk["parent"])
print(doc.get("content"))

Explicit Authentication

# Using service account
client = DeveloperKnowledgeClient(service_account_file="/path/to/sa.json")

# Using explicit access token
client = DeveloperKnowledgeClient(access_token="ya29.xxxx")

Convenience Method

# Search and fetch full documents in one call
docs = client.search_and_get("Firebase authentication", max_results=3)
for doc in docs:
    print(doc["content"])

cURL Examples

Get Access Token

export TOKEN=$(gcloud auth application-default print-access-token)

Search

curl -H "Authorization: Bearer $TOKEN" \
  "https://developerknowledge.googleapis.com/v1alpha/documents:searchDocumentChunks?query=BigQuery"

Get Document

curl -H "Authorization: Bearer $TOKEN" \
  "https://developerknowledge.googleapis.com/v1alpha/documents/developers.google.com/path/to/doc"

Covered Documentation

The API indexes these Google developer sites:

  • developer.android.com (Android)
  • firebase.google.com (Firebase)
  • docs.cloud.google.com (Google Cloud)
  • ai.google.dev (Gemini API / Google AI)
  • developers.google.com (Ads, Maps, YouTube, etc.)
  • developer.chrome.com (Chrome)
  • developers.home.google.com (Google Home)
  • www.tensorflow.org (TensorFlow)
  • web.dev (Web)
  • fuchsia.dev (Fuchsia)

Limitations

  • Authentication: Requires OAuth2 (API keys do NOT work despite documentation)
  • Markdown Quality: Generated from HTML, may have formatting issues
  • Content Scope: Only public documentation pages, no GitHub/OSS/blogs/YouTube
  • Data Freshness: Re-indexed within 24 hours of publication

When to Use This Instead of MCP

Use direct API calls when:

  • MCP authentication is failing or not configured
  • You need more control over request/response handling
  • You're integrating into a pipeline that doesn't support MCP
  • You want to use the API in a standalone script
  • You need to handle OAuth2 tokens explicitly

Official Documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.32%
按下载量换算27

Claude

30.3%
按下载量换算23

Cursor

17.06%
按下载量换算13

Gemini CLI

8.75%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills