ClaudeExecutor is a stateless executor for Anthropic Claude over the messages API. If api_key is unavailable on auth, it falls back to legacy via ClientAdapter.
| 38 | // ClaudeExecutor is a stateless executor for Anthropic Claude over the messages API. |
| 39 | // If api_key is unavailable on auth, it falls back to legacy via ClientAdapter. |
| 40 | type ClaudeExecutor struct { |
| 41 | cfg *config.Config |
| 42 | } |
| 43 | |
| 44 | // claudeToolPrefix is empty to match real Claude Code behavior (no tool name prefix). |
| 45 | // Previously "proxy_" was used but this is a detectable fingerprint difference. |
nothing calls this directly
no outgoing calls
no test coverage detected