Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

google-adk-pythonGoogle ADK Python 搜索

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

353

周安装

15

GitHub Stars

公开资料未说明

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:google-adk-python(Google ADK Python 搜索)
来源仓库:https://github.com/vibery-studio/templates
仓库路径:skills/google-adk-python
安装命令:
npx skills add vibery-studio/templates --skill "google-adk-python"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add vibery-studio/templates --skill "google-adk-python"

简介

用于辅助 Python 项目开发、测试和依赖管理。

  • 适合阅读代码、定位测试问题或整理运行命令。google-adk-python 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需确认虚拟环境、依赖版本和测试入口。
  • 涉及脚本执行或外部 API 调用时应明确运行目录和输入输出范围。
  • 安装前请确认权限范围和维护状态,避免误改生产数据。

SKILL.md

name
google-adk-python
description
Build AI agents with Google's Agent Development Kit (ADK) Python - an open-source toolkit for building, evaluating, and deploying AI agents. Features LlmAgent, workflow agents (sequential, parallel, loop), tool integration, multi-agent systems, and deployment to Vertex AI or Cloud Run.
license
MIT

Google ADK Python

Open-source, code-first toolkit for building, evaluating, and deploying AI agents.

When to Use

  • Build AI agents with tool integration
  • Create multi-agent systems with hierarchical coordination
  • Implement workflow agents (sequential, parallel, loop)
  • Integrate with Google Search, Code Execution, or custom tools
  • Deploy to Vertex AI Agent Engine or Cloud Run
  • Implement human-in-the-loop approval flows

Installation

pip install google-adk

Agent Types

LlmAgent

LLM-powered agents with dynamic routing and adaptive behavior.

from google.adk.agents import LlmAgent
from google.adk.tools import google_search

agent = LlmAgent(
    name="search_assistant",
    model="gemini-2.5-flash",
    instruction="You are a helpful assistant that searches the web.",
    tools=[google_search]
)

SequentialAgent

Execute agents in defined order.

from google.adk.agents import SequentialAgent

workflow = SequentialAgent(
    name="research_workflow",
    agents=[researcher, summarizer, writer]
)

ParallelAgent

Run multiple agents concurrently.

from google.adk.agents import ParallelAgent

parallel = ParallelAgent(
    name="parallel_research",
    agents=[web_researcher, paper_researcher]
)

Multi-Agent System

# Specialized agents
researcher = LlmAgent(
    name="Researcher",
    model="gemini-2.5-flash",
    tools=[google_search]
)

writer = LlmAgent(
    name="Writer",
    model="gemini-2.5-flash",
)

# Coordinator
coordinator = LlmAgent(
    name="Coordinator",
    model="gemini-2.5-flash",
    instruction="Delegate tasks to researcher and writer.",
    sub_agents=[researcher, writer]
)

Custom Tools

from google.adk.tools import Tool

def calculate_sum(a: int, b: int) -> int:
    """Calculate the sum of two numbers."""
    return a + b

sum_tool = Tool.from_function(calculate_sum)

Model Support

  • gemini-2.5-flash (recommended)
  • gemini-2.5-pro
  • gemini-1.5-flash
  • gemini-1.5-pro

Best Practices

  1. Code-first for version control and testing
  2. Create specialized agents for specific domains
  3. Use workflow agents for predictable pipelines
  4. Implement confirmation flows for sensitive operations
  5. Test agents systematically

Resources

  • GitHub: https://github.com/google/adk-python
  • Docs: https://google.github.io/adk-docs/

Credits

Source: https://github.com/mrgoonie/claudekit-skills

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

windsurf

28.53%
按下载量换算35

OpenCode

21.03%
按下载量换算26

Codex

17.4%
按下载量换算22

Claude Code

11.83%
按下载量换算15

Antigravity

7.69%
按下载量换算10

Gemini CLI

2.98%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills