Files
nexus/wiki/concepts/Bugs-First-Policy.md
weishen e62797a33a Batch 9: Obsidian插件/AI开源平替/Coze培训/TK面单/Ubuntu科学上网
- Sources: 5个新文档
- Concepts: ProxyChains, SOCKS5代理, Docker Daemon代理
- Index: 更新至 Batch 9
- 累计 sources: 108/182
2026-04-16 06:36:36 +08:00

939 B
Raw Blame History

title, type, tags, date
title type tags date
Bugs First Policy concept
software-engineering
autonomous-agent
workflow
2026-04-16

Definition

Agent 工作流中的强制优先级策略:任何新任务开始前,必须先检查并修复 bugs/ 目录下的第一个文件(按字母顺序),在修复完成前不允许处理任何新功能。

Why It Works

  • 阻止 Agent 的"快速实现冲动",强制回归稳定性
  • 每次修复后自然触发新一轮审查循环
  • 与人类开发中的"消防员模式"相同:最紧急的先处理

Contrast

模式 行为
Bugs First 停下所有新功能,只修 bugs/ 下第一个文件
Feature First 优先实现新功能bug 在 backlog 中积累

Connections