Files
nexus/wiki/concepts/Inversion.md
2026-04-15 15:02:52 +08:00

29 lines
821 B
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: "Inversion"
type: concept
tags: [agent, skill, design-pattern]
last_updated: 2026-04-15
---
# Inversion
## 定义
Google 5 种 Agent Skill 设计模式之一agent 先问你再做,通过明确不可协商的门控指令逐阶段收集信息的 Skill 模式。
## 核心机制
与 agent"直接猜测和生成"的天性相反agent 变成面试官,逐阶段提问,等待用户回答后进入下一阶段。
## 关键要素
- 明确、不可协商的门控指令(如"不到所有阶段完成就不开始构建"
- 阶段式提问结构
- 前一阶段完成后才能进入下一阶段
## 适用场景
- 项目规划 Skill
- 需求收集
- 复杂任务的初始化阶段
## Connections
- [[Agent Skill 设计模式]]:所属分类
- [[Generator]]:可组合,为 Generator 收集缺失变量