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