| 8024 | } |
| 8025 | |
| 8026 | static void cbm_agent_installed_binary_path(const char *home, char *binary_path, |
| 8027 | size_t binary_path_size) { |
| 8028 | #ifdef _WIN32 |
| 8029 | snprintf(binary_path, binary_path_size, "%s/.local/bin/codebase-memory-mcp.exe", home); |
| 8030 | #else |
| 8031 | snprintf(binary_path, binary_path_size, "%s/.local/bin/codebase-memory-mcp", home); |
| 8032 | #endif |
| 8033 | } |
| 8034 | |
| 8035 | static void install_managed_agent_instructions(const char *label, const char *instructions_path, |
| 8036 | bool dry_run) { |
no outgoing calls
no test coverage detected