Files
nexus/wiki/sources/Google-5-Agent-Skill-design-patterns-2026-03-19.md

46 lines
2.1 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.
---
id: google-5-agent-skill-design-patterns-2026-03-19
title: "Google 5个Agent Skill设计模式"
type: source
tags: [Agent, Skill, 设计模式, Google, Anthropic]
date: 2026-03-19
---
## Source File
- [[raw/Agent/Google-5个Agent-Skill设计模式-2026-03-19.md]]
## Summary
- 核心主题Google 发布的 5 种 Agent Skill 设计模式
- 问题域Agent Skill 内容设计
- 方法/机制Tool Wrapper、Generator、Reviewer、Inversion、Pipeline 五种模式
- 结论/价值不同模式适用于不同场景可以组合使用ADK 的 SkillToolset 和渐进式披露机制实现按需加载
## Key Claims
- Tool Wrapper 模式让 agent 快速成为某个领域的专家,通过监听特定关键词动态加载相关文档
- Generator 模式通过模板和样式指南强制一致的输出格式,解决 agent 输出结构不一致的问题
- Reviewer 模式把检查清单和检查逻辑分开,审查标准可动态替换实现不同专项审计
- Inversion 模式让 agent 先问用户再做,通过明确门控指令确保用户参与每个阶段
- Pipeline 模式带硬性检查点的严格工作流,强制执行顺序并设置前置条件确认
## Key Quotes
> "最好的 Skill 不是写得好的提示词,而是一个「工具箱」" — Anthropic 经验
## Key Concepts
- [[渐进式披露]]agent 只在运行时需要时才消耗上下文 token 来加载特定模式
- [[SkillToolset]]ADK 提供的 skill 工具集,支持按需加载
## Key Entities
- [[Google]]:发布该设计模式指南的云服务提供商
- [[Anthropic]]Claude 开发者,提出 Skill 设计的九类分类
- [[ADK]]Agent Development KitGoogle 的 agent 开发工具包
## Connections
- [[Anthropic]] ← provides_skill_guidance ← [[Google]]
- [[Tool Wrapper]] ← is_variant_of ← [[Agent-Skill-模式]]
- [[Generator]] ← is_variant_of ← [[Agent-Skill-模式]]
- [[Reviewer]] ← is_variant_of ← [[Agent-Skill-模式]]
- [[Inversion]] ← is_variant_of ← [[Agent-Skill-模式]]
- [[Pipeline]] ← is_variant_of ← [[Agent-Skill-模式]]
## Contradictions
- (暂无)