Precommit updated to always perform external analysis (via _other_ model) unless specified not to. This prevents Claude from being overconfident and inadequately performing subpar precommit checks.
Improved precommit continuations to be immediate Workflow state restoration added between stateless calls Fixed incorrect token limit check
This commit is contained in:
@@ -286,7 +286,9 @@ class TracerTool(WorkflowTool):
|
||||
# Abstract Methods - Required Implementation from BaseWorkflowMixin
|
||||
# ================================================================================
|
||||
|
||||
def get_required_actions(self, step_number: int, confidence: str, findings: str, total_steps: int) -> list[str]:
|
||||
def get_required_actions(
|
||||
self, step_number: int, confidence: str, findings: str, total_steps: int, request=None
|
||||
) -> list[str]:
|
||||
"""Define required actions for each tracing phase."""
|
||||
if step_number == 1:
|
||||
# Check if we're in ask mode and need to prompt for mode selection
|
||||
|
||||
Reference in New Issue
Block a user