(self, available_tool_names: Optional[set[str]] = None)
| 103 | """ |
| 104 | |
| 105 | def __init__(self, available_tool_names: Optional[set[str]] = None): |
| 106 | self._parser = YAMLTaskParser() |
| 107 | self._available_tools = available_tool_names or set() |
| 108 | |
| 109 | def verify(self, plan_path: Path) -> VerificationResult: |
| 110 | """Verify a plan file with comprehensive semantic checks.""" |
nothing calls this directly
no test coverage detected