| 8177 | } |
| 8178 | |
| 8179 | static void cbm_agent_installed_binary_path(const char *home, char *binary_path, |
| 8180 | size_t binary_path_size) { |
| 8181 | #ifdef _WIN32 |
| 8182 | snprintf(binary_path, binary_path_size, "%s/.local/bin/codebase-memory-mcp.exe", home); |
| 8183 | #else |
| 8184 | snprintf(binary_path, binary_path_size, "%s/.local/bin/codebase-memory-mcp", home); |
| 8185 | #endif |
| 8186 | } |
| 8187 | |
| 8188 | static void install_managed_agent_instructions(const char *label, const char *instructions_path, |
| 8189 | bool dry_run) { |
no outgoing calls
no test coverage detected