Files
nexus/wiki/sources/Google-5个Agent-Skill设计模式.md

46 lines
1.9 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "Google 5个Agent Skill设计模式"
type: source
tags: [agent, skill, design-pattern, google]
date: 2026-03-19
---
## Source File
- [[raw/Agent/Google-5个Agent-Skill设计模式-2026-03-19.md]]
## Summary
- 核心主题Google ADK发布的5种经过验证的Agent Skill设计模式
- 问题域如何构建可靠、可复用的Agent Skills
- 方法/机制ToolWrapper、Generator、Reviewer、Inversion、Pipeline五种架构模式
- 结论/价值:这些模式可组合使用,通过渐进式披露机制降低上下文消耗
## Key Claims
- ToolWrapper将库/框架规范打包为skill运行时动态加载
- Generator从模板生成结构化输出解决每次输出不一致问题
- Reviewer检查清单和检查逻辑分离标准可替换
- InversionAgent先问再做设置不可协商的门控条件
- Pipeline带硬性检查点的严格工作流
## Key Quotes
> "把工作流拆分开应用正确的结构模式才能构建出真正可靠的agent"
## Key Concepts
- [[AgentSkill设计模式]]Google发布的5种Skill设计模式
- [[ToolWrapper]]让Agent快速成为某领域专家的包装模式
- [[Generator]]:从模板生成结构化输出的模式
- [[Reviewer]]:检查清单和检查逻辑分离的模式
- [[Inversion]]Agent先问再做的工作流反转模式
- [[Pipeline]]:带硬性检查点的严格工作流模式
## Key Entities
- [[Google]]ADK和5种设计模式的发布者
- [[Anthropic]]Claude Skills的发布者参考对比
## Connections
- [[AgentSkill设计模式]] ← 包含 ← [[ToolWrapper]], [[Generator]], [[Reviewer]], [[Inversion]], [[Pipeline]]
- [[AgentSkill设计模式]] ← 发布 ← [[Google]]
- [[Anthropic]] ← 对比 ← [[Google]]同时参考Claude Skills
## Contradictions
- 与[[Claude Skills最值得研究的AI范式.md]]中Claude Skills的分类方法形成互补