这是一篇由原始材料转换而来的阅读页,保留了源文件的主要结构,并补充了可追溯的来源说明与链接。
摘要
Use this when the main workload is diagnosing and fixing bugs rapidly.
openaimarkdownarticle
Framework 3 — Bug Reproduction / Fix / Regression Factory
Use this when the main workload is diagnosing and fixing bugs rapidly.
Intent
Give the agent a strong closed loop for: reproduce -> inspect -> fix -> verify -> guard against regressions.
Core components
- reproducible bug reports in
plans/active/ scripts/repro.shor issue-specific repro scripts- screenshot / DOM capture / browser automation for UI bugs
- logs / metrics / traces for runtime bugs
- regression test or smoke step added before closing the task
Recommended folders
docs/runbooks/debugging.mdartifacts/bugs/<id>/plans/active/bug-<id>.mdscripts/repro/scripts/regression/
Typical loop
- Reproduce the bug reliably
- Capture artifacts (screenshot, logs, traces, failing tests)
- Implement the narrowest fix
- Add a regression guard
- Re-run repro + regression
- Document root cause and fix path
Best fit
- flaky UI bugs
- runtime failures
- perf regressions
- issue-driven maintenance
来源与参考
源文件: openai/framework-bug-factory/README.md
来源目录: /srv/project/harness-engineering
继续阅读
Framework 1 — Agent-First Product DeliveryUse this when building a new product or major product area primarily through Codex.Framework 4 — Documentation Garden / Knowledge ReliabilityUse this when the repository's main bottleneck is stale or fragmented knowledge.Framework 2 — Long-Running Multi-Session EngineeringUse this when a task will span many agent sessions or many context windows.