| 9002 | } |
| 9003 | |
| 9004 | static void cbm_agent_installed_binary_path(const char *home, char *binary_path, |
| 9005 | size_t binary_path_size) { |
| 9006 | #ifdef _WIN32 |
| 9007 | snprintf(binary_path, binary_path_size, "%s/.local/bin/codebase-memory-mcp.exe", home); |
| 9008 | #else |
| 9009 | snprintf(binary_path, binary_path_size, "%s/.local/bin/codebase-memory-mcp", home); |
| 9010 | #endif |
| 9011 | } |
| 9012 | |
| 9013 | static void install_managed_agent_instructions(const char *label, const char *instructions_path, |
| 9014 | bool dry_run) { |
no outgoing calls
no test coverage detected