Trajectory plus raw OpenCode JSON events for debugging parser drift.
| 54 | |
| 55 | @dataclass |
| 56 | class OpenCodeTrajectory(Trajectory): |
| 57 | """Trajectory plus raw OpenCode JSON events for debugging parser drift.""" |
| 58 | |
| 59 | raw_events: list[dict[str, Any]] = field(default_factory=list) |
| 60 | stderr: str = "" |
| 61 | |
| 62 | |
| 63 | def _build_mcp_config( |
no outgoing calls
no test coverage detected