Make plan-review a review-fix-verify loop
This commit is contained in:
@@ -31,7 +31,7 @@ DEFAULT_ROLE_REASONING_EFFORTS = {
|
||||
"reviewer": "medium",
|
||||
"senior": "high",
|
||||
}
|
||||
FIX_STYLE_PRESETS = {"review-fix", "coding-review-fix"}
|
||||
FIX_STYLE_PRESETS = {"plan-review", "review-fix", "coding-review-fix"}
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
@@ -296,7 +296,11 @@ def _default_seniors_for_preset(
|
||||
"""Infer a default senior agent for presets that benefit from adjudication."""
|
||||
if not (
|
||||
isinstance(pipeline_raw, str)
|
||||
and pipeline_raw in {"preset:review-fix", "preset:coding-review-fix"}
|
||||
and pipeline_raw in {
|
||||
"preset:plan-review",
|
||||
"preset:review-fix",
|
||||
"preset:coding-review-fix",
|
||||
}
|
||||
and reviewers
|
||||
):
|
||||
return []
|
||||
|
||||
Reference in New Issue
Block a user