| 7769 | } |
| 7770 | |
| 7771 | static void cbm_agent_installed_binary_path(const char *home, char *binary_path, |
| 7772 | size_t binary_path_size) { |
| 7773 | #ifdef _WIN32 |
| 7774 | snprintf(binary_path, binary_path_size, "%s/.local/bin/codebase-memory-mcp.exe", home); |
| 7775 | #else |
| 7776 | snprintf(binary_path, binary_path_size, "%s/.local/bin/codebase-memory-mcp", home); |
| 7777 | #endif |
| 7778 | } |
| 7779 | |
| 7780 | static void install_managed_agent_instructions(const char *label, const char *instructions_path, |
| 7781 | bool dry_run) { |
no outgoing calls
no test coverage detected