Return True if the output is a [PEER_ERROR: ...] sentinel.
(output: str)
| 264 | |
| 265 | @staticmethod |
| 266 | def is_peer_error(output: str) -> bool: |
| 267 | """Return True if the output is a [PEER_ERROR: ...] sentinel.""" |
| 268 | return bool(output and output.startswith("[PEER_ERROR:")) |
| 269 | |
| 270 | def summarize_result(self, cli_name: str, output: str, original_task: str) -> str: |
| 271 | """Package the peer CLI output for injection into Codey's context.""" |
no outgoing calls
no test coverage detected