这是一篇由原始材料转换而来的阅读页,保留了源文件的主要结构,并补充了可追溯的来源说明与链接。
摘要
Use this when a task will span many agent sessions or many context windows.
openaimarkdownarticle
Framework 2 — Long-Running Multi-Session Engineering
Use this when a task will span many agent sessions or many context windows.
Intent
Preserve continuity without relying on memory.
This framework combines
- Anthropic-style handoff artifacts (
init.sh,progress.md,feature_list.json) - OpenAI-style docs map, plan files, and mechanized invariants
Required artifacts
progress.mdappend-only handoff logfeature_list.jsonwith explicit end-to-end checksplans/active/<task>.mdfor complex tasksdocs/index.mdpointing to architecture and runbooksinit.shsmoke baseline
Typical loop
- Re-read the map and recent history
- Re-establish a green baseline
- Choose exactly one increment
- Implement and verify
- Leave crisp artifacts for the next shift
Best fit
- 6h+ tasks
- overnight runs
- large refactors
- work likely to be resumed by a different agent or model
来源与参考
源文件: openai/framework-long-running/README.md
来源目录: /srv/project/harness-engineering
继续阅读
Framework 4 — Documentation Garden / Knowledge ReliabilityUse this when the repository's main bottleneck is stale or fragmented knowledge.OpenAI Harness Engineering — 读后感 / 总结 / 可迁移经验也就是: 给什么文档 如何组织知识 如何定义边界 如何给验证闭环 如何给清理与治理机制Architecture invariantsThese are rules the repository should enforce mechanically where possible.