auto-sync: 2026-05-15 14:01:07

This commit is contained in:
cfdaily
2026-05-15 14:01:07 +08:00
parent b1702fe7e2
commit 32da59e4a7
+7 -7
View File
@@ -542,13 +542,13 @@ Skill 软引导的问题是"可看可不看",等于没有约束。数据库硬
}
```
| 操作 | Schema 文件 | 必填字段 | 校验内容 |
|------|-----------|---------|----------|
| `--handoff` | handoff.schema.json | completed + artifacts | 结构完整,artifacts 路径存在 |
| `--output` | output.schema.json | summary + content_path | summary 非空,路径存在 |
| `--decide` | decide.schema.json | decision + rationale | 两个字段非空 |
| `--observe` | observe.schema.json | severity + body | severity 枚举 |
| `--comment`(普通) | 无 | body | 无 Schema 校验,纯 Skill 引导 |
| 操作 | Schema 文件 | 必填字段 | Schema 校验 | CLI 附加校验 |
|------|-----------|---------|------------|------------|
| `--handoff` | handoff.schema.json | completed + artifacts | 结构完整,类型正确 | artifacts 路径是否存在 |
| `--output` | output.schema.json | summary + content_path | summary 非空字符串 | content_path 文件是否存在 |
| `--decide` | decide.schema.json | decision + rationale | 两个字段非空字符串 | 无 |
| `--observe` | observe.schema.json | severity + body | severity 枚举值(info/warning/critical) | 无 |
| `--comment`(普通) | 无 | body | 无 Schema 校验 | 无 |
**Agent 使用方式**
```bash