Files
nexus/wiki/concepts/STATE-yaml.md

1.1 KiB
Raw Blame History

title, type, tags, last_updated
title type tags last_updated
STATE.yaml concept
coordination
multi-agent
state-management
2026-04-15

Summary

去中心化项目协调文件格式YAML 结构定义任务 ID、状态in_progress/done/blocked、owner、开始时间、备注、blocked_by 依赖关系。所有 agent 读写同一文件实现协调。

Format Structure

project: project-name
updated: ISO-timestamp

tasks:
  - id: task-id
    status: in_progress | done | blocked
    owner: agent-label
    started: ISO-timestamp
    completed: ISO-timestamp
    blocked_by: other-task-id
    notes: "描述"

next_actions:
  - "agent-label: 具体下一步行动"

Key Properties

  • 单一事实来源Single Source of Truth
  • Git 版本控制可获取完整变更历史
  • blocked_by 字段实现自动依赖触发

Compared To

Key Connections