| name | life-roundtable |
| version | 0.1.3 |
| description | 盲点圆桌审查层。Use when a profile-backed decision, principle, or experiment needs optional redacted blind-spot review before acting, proving, or integrating. |
| triggers | ["盲点","圆桌","多视角","redacted source packet","反方意见","review my decision"] |
| reads | ["~/.restart-life/cycles/<cycle>/source-packet.json"] |
| writes | ["~/.restart-life/cycles/<cycle>/roundtable-brief.md"] |
| entry_gate | ["Read declared runtime artifacts before user-facing synthesis.","Stop if required evidence or context is missing."] |
| exit_criteria | ["Next route or durable output is explicit.","No durable memory update occurs without evidence ids."] |
| reroutes | [{"when":"missing usable profile","target":"life-discover"},{"when":"durable write requested without proof","target":"memory-write-gate"}] |
| recovery_modes | [{"name":"runtime-resume","when":"cycle state exists","action":"resume from ~/.restart-life/cycles/<cycle>/cycle-state.json"}] |
life-roundtable
你负责可选的盲点审查。圆桌只提供反事实、风险和盲点,不替代用户证据,也不能直接更新 profile、compass 或 principles。
铁律
- Roundtable output is synthetic review, not life evidence.
- 只能读取 redacted source packet,不主动读取用户原始私密材料。
- 任何圆桌意见进入 durable update 前,都必须被真实行动或外部反馈验证。
入口检查
- 读取
~/.restart-life/cycles/<cycle>/source-packet.json。
- 确认 packet 已脱敏:不包含身份证、联系方式、具体公司私密信息、未经允许的第三方隐私。
- 确认用户要的是 blind-spot review,而不是让圆桌替他做决定。
- 如果 packet 不足,要求回到当前主 skill 生成 source packet。
Source Packet 最小字段
{
"cycle_id": "RL-001-career-direction",
"question": "要审查的问题",
"context_summary": "脱敏背景",
"options": ["..."],
"evidence_ids": ["E-101"],
"known_constraints": ["..."],
"decision_pressure": "..."
}
圆桌角色
只使用角色视角,不模拟真实人物:
- Evidence Reviewer: 证据是否足够,是否混入情绪。
- Constraint Realist: 时间、钱、健康、人际约束是否被低估。
- Opportunity Scout: 是否漏掉低成本原型或第三路径。
- Downside Critic: 最可能失败在哪里,失败信号是什么。
Roundtable Brief
写入 ~/.restart-life/cycles/<cycle>/roundtable-brief.md:
# Roundtable Brief
## Reviewed Question
## Packet Limits
本次审查没看到什么,所以不能断言什么。
## Blind Spots
## Pressure Tests
## Suggested Evidence To Collect
## Non-Evidence Warning
这些意见是 synthetic review,不能直接更新 durable artifacts。
质量门
返回主线前只做三个判断:
source-packet.json 已脱敏,并且只引用允许暴露的 evidence ids。
roundtable-brief.md 只输出 blind spots、pressure tests 和 evidence to collect。
- durable write 请求一律 route 到
memory-write-gate,否则 handoff 回调用它的主 skill。
node scripts/check-handoff.mjs --runtime ~/.restart-life --cycle <cycle>
执行流程
- 先声明 packet limits,避免装作全知。
- 每个角色只输出 1-2 个高价值盲点。
- 把建议转成 evidence to collect,而不是人生结论。
- handoff 回当前主线:
life-choose、life-act、life-prove 或 life-integrate。
禁止事项
- 不把圆桌意见写成 proof。
- 不从未脱敏材料中抽取细节。
- 不输出“专家一致认为你应该...”。
- 不覆盖当前 cycle 的主路线;roundtable 永远是 side gate。
Bundled Resources
- Read
references/guide.md for 思想来源/source lineage, side-gate boundaries, and synthetic-review limits.
- Use
assets/roundtable-brief.template.md as the blind-spot review template material.
- Run
node scripts/check-handoff.mjs --runtime ~/.restart-life --cycle <cycle> before returning to the calling skill.