Files
nexus/wiki/sources/specialized-workflow-architect.md
2026-04-20 16:01:56 +08:00

2.5 KiB
Raw Blame History

title, type, tags, date, sources, last_updated
title type tags date sources last_updated
Workflow Architect source
agent
the-agency
workflow-design
process-engineering
2026-03-29
specialized-workflow-architect
2026-04-20

Source File

Summary

  • 核心主题Workflow Architect 负责把系统行为拆解为完整的工作流树,覆盖 happy path、分支条件、失败模式、恢复路径和交接契约
  • 问题域:隐式流程、遗漏分支、未定义 handoff、cleanup 缺失、spec 与现实漂移
  • 方法/机制发现扫描、工作流注册表、步骤级分支建模、可观察状态定义、ABORT_CLEANUP、Reality Checker 校验
  • 结论/价值:把流程设计从描述性文本提升为可实现、可测试、可审计的结构化规格

Key Claims

  • Workflow Architect 的核心职责不是写代码,而是定义系统必须如何表现
  • 每个工作流都必须覆盖 happy path、validation failure、timeout、transient failure、permanent failure、partial failure 和 concurrent conflict
  • 每个系统边界都必须定义 payload、success response、failure response、timeout 和 recovery action
  • 任何创建资源的步骤都必须进入 cleanup inventory并在 ABORT_CLEANUP 中有对应销毁动作
  • Reality Checker 是工作流规范闭环的一部分,不能在未验证实现前标记 Approved

Key Quotes

"You think in trees, not prose."

"A workflow that exists in code but not in a spec is a liability."

"Every system boundary must have explicit payload schema, explicit success response, explicit failure response, timeout value, and recovery action."

Key Concepts

Key Entities

Connections

Contradictions

  • 无明显冲突