---
type: workflow
name: Agent Update Receipt Validation Workflow v0.1
title: Agent Update 回执验收工作流 v0.1
status: active
date: 2026-07-31
owner: 珍珍
scope: onboarding / re-onboarding / universe update receipt validation
---

# Agent Update 回执验收工作流 v0.1

## 1. 用途

用于审定 agent 的入职 / 再入职 / Universe update 学习回执，避免“内容答对但签名缺失”这类半完成状态被误记为完成。

## 2. 验收顺序

```text
Step 1 先查签名
→ Step 2 再审内容
→ Step 3 判断冲突点
→ Step 4 写入追踪表
→ Step 5 必要时发催补通知
```

## 3. Step 1：签名检查

必须包含：

```yaml
agent_id:
agent_name:
signed_at:
```

判定：

| 情况 | 状态 |
|---|---|
| 三字段齐全 | 进入内容验收 |
| 缺任一字段 | `pending_signature` |
| 只写昵称 / 末尾署名 | 不算正式签名 |

## 4. Step 2：内容验收

检查是否覆盖：

- 已读文件
- 修正的旧口径
- 后续执行口径
- 剩余冲突点

判定：

| 情况 | 状态 |
|---|---|
| 内容完整且正确 | `content_pass` |
| 内容大体正确但有待澄清点 | `content_pass_with_notes` |
| 内容存在错误口径 | `needs_followup` |

## 5. Step 3：最终状态

| 签名 | 内容 | 最终状态 |
|---|---|---|
| pass | pass | `current` |
| missing | pass | `pending_signature` |
| pass | issue | `needs_followup` |
| missing | issue | `pending_signature_and_followup` |
| not received | - | `pending_receipt` |

## 6. Step 4：写入追踪表

追踪表路径：

```text
99_System/Agents/Onboarding/Agent_Universe_Update_Receipt_Tracker_YYYYMMDD.md
```

必须记录：

```text
agent_id / agent_name / 内容学习 / 签名 / 当前状态 / signed_at / 备注
```

## 7. Step 5：催补通知

### 缺签名

使用：

```text
99_System/Agents/Onboarding/Agent_Update_催签名通知模板.md
```

### 内容需纠偏

单独给出：

- 错误口径
- 正确口径
- 需重新确认的点

## 8. 禁止事项

- 禁止无签名标记为 current；
- 禁止只看内容不查签名；
- 禁止把“已读完”当作完成；
- 禁止让 agent 自己修改追踪表状态；
- current 状态必须由珍珍或主控审定写入。
