feat: tighten agentic runtime handoffs and quality gates
This commit is contained in:
@@ -698,9 +698,9 @@ def _validate_unique_step_fields(
|
||||
|
||||
|
||||
def _make_agentic(agent: AgentConfig) -> None:
|
||||
"""Convert an agent to agentic mode in-place (remove -p, set agentic=True)."""
|
||||
"""Convert an agent to agentic mode in-place."""
|
||||
agent.agentic = True
|
||||
agent.args = [a for a in agent.args if a != "-p"]
|
||||
agent.args = [a for a in agent.args if a not in {"-p", "--print"}]
|
||||
|
||||
|
||||
def sync_phased_iterations(
|
||||
|
||||
Reference in New Issue
Block a user