42 lines
1.6 KiB
Markdown
42 lines
1.6 KiB
Markdown
---
|
||
title: "Proactive Agent Recommendation"
|
||
type: concept
|
||
tags: [openclaw, ai-agent, productivity]
|
||
sources: [custom-morning-brief, multi-agent-team]
|
||
last_updated: 2026-04-22
|
||
---
|
||
|
||
## Definition
|
||
|
||
主动任务推荐(Proactive Agent Recommendation)是一种 AI Agent 设计范式——Agent 不是被动等待用户指令,而是主动分析用户上下文并推荐可自主完成的辅助任务,使用户从"发出指令→等待结果"转变为"收到已完成的工作成果"。
|
||
|
||
## Contrast with Reactive Mode
|
||
|
||
| 维度 | 被动模式(Reactive) | 主动模式(Proactive) |
|
||
|------|--------------------|--------------------|
|
||
| 触发方式 | 用户主动发起请求 | AI 定时或基于上下文自动触发 |
|
||
| 用户角色 | 指挥官 | 接收者/审批者 |
|
||
| 价值交付 | 按需响应 | 提前完成,超出预期 |
|
||
| 认知负担 | 用户需持续思考"要什么" | AI 承担"思考要做什么" |
|
||
|
||
## Key Applications
|
||
|
||
- **[[custom-morning-brief]]**:每日晨间简报中的"AI 主动推荐可完成任务"模块
|
||
- **[[multi-agent-team]]**:Agent 主动推送工作成果,而非等待轮询
|
||
|
||
## Implementation Pattern
|
||
|
||
```text
|
||
1. Cron Job 触发 → AI 分析用户上下文
|
||
2. AI 生成 N 条可自主完成的任务建议
|
||
3. 高置信度任务 → 自动执行
|
||
4. 中置信度任务 → 推送选项,用户确认后执行
|
||
5. 结果交付 → Telegram/Discord
|
||
```
|
||
|
||
## Related Concepts
|
||
|
||
- [[Scheduled Task Flywheel]] — 主动推荐的时间调度机制
|
||
- [[Agent Personality]] — 主动行为需要精心设计的 Agent 人格
|
||
- [[Morning Briefing]] — 主动推荐的典型应用场景
|