| 7813 | } |
| 7814 | |
| 7815 | static void cbm_agent_installed_binary_path(const char *home, char *binary_path, |
| 7816 | size_t binary_path_size) { |
| 7817 | #ifdef _WIN32 |
| 7818 | snprintf(binary_path, binary_path_size, "%s/.local/bin/codebase-memory-mcp.exe", home); |
| 7819 | #else |
| 7820 | snprintf(binary_path, binary_path_size, "%s/.local/bin/codebase-memory-mcp", home); |
| 7821 | #endif |
| 7822 | } |
| 7823 | |
| 7824 | static void install_managed_agent_instructions(const char *label, const char *instructions_path, |
| 7825 | bool dry_run) { |
no outgoing calls
no test coverage detected