MCPcopy Create free account
hub / github.com/agentforce314/clawcodex / BashModeOutcome

Class BashModeOutcome

src/services/bash_mode.py:38–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36
37@dataclass(frozen=True)
38class BashModeOutcome:
39 command: str
40 stdout: str = ""
41 stderr: str = ""
42 exit_code: int = 0
43 ok: bool = True
44 error: str | None = None
45 # The user messages to append to the conversation (TS parity).
46 conversation_texts: tuple[str, ...] = field(default_factory=tuple)
47
48
49def run_bash_mode_command(command: str, tool_context: Any) -> BashModeOutcome:

Callers 1

run_bash_mode_commandFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected