Batch 9: Obsidian插件/AI开源平替/Coze培训/TK面单/Ubuntu科学上网

- Sources: 5个新文档
- Concepts: ProxyChains, SOCKS5代理, Docker Daemon代理
- Index: 更新至 Batch 9
- 累计 sources: 108/182
This commit is contained in:
2026-04-16 06:36:36 +08:00
parent 33c63d34dd
commit e62797a33a
51 changed files with 1740 additions and 56 deletions

View File

@@ -0,0 +1,24 @@
---
title: "Bugs First Policy"
type: concept
tags: [software-engineering, autonomous-agent, workflow]
date: 2026-04-16
---
## Definition
Agent 工作流中的强制优先级策略:任何新任务开始前,必须先检查并修复 bugs/ 目录下的第一个文件(按字母顺序),在修复完成前不允许处理任何新功能。
## Why It Works
- 阻止 Agent 的"快速实现冲动",强制回归稳定性
- 每次修复后自然触发新一轮审查循环
- 与人类开发中的"消防员模式"相同:最紧急的先处理
## Contrast
| 模式 | 行为 |
|------|------|
| Bugs First | 停下所有新功能,只修 bugs/ 下第一个文件 |
| Feature First | 优先实现新功能bug 在 backlog 中积累 |
## Connections
- [[Autonomous-Educational-Game-Development-Pipeline]]:强制使用此策略的项目
- [[Self-Healing-Systems]]:类似自愈逻辑,但 Self-Healing 更广(不限 bug 修复)