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

Function _err

src/tool_system/tools/send_message.py:129–132  ·  view source on GitHub ↗
(message: str, **extra: Any)

Source from the content-addressed store, hash-verified

127
128
129def _err(message: str, **extra: Any) -> ToolResult:
130 out: dict[str, Any] = {"success": False, "message": message}
131 out.update(extra)
132 return ToolResult(name=SEND_MESSAGE_TOOL_NAME, output=out, is_error=True)
133
134
135def _resolve_in_process(

Callers 3

_route_in_processFunction · 0.85
_route_team_mailboxFunction · 0.85
_send_message_callFunction · 0.85

Calls 2

ToolResultClass · 0.85
updateMethod · 0.45

Tested by

no test coverage detected