| 9867 | const char *instr_path; |
| 9868 | } mcp_uninstall_args_t; |
| 9869 | static void uninstall_agent_mcp_instr(mcp_uninstall_args_t paths, bool dry_run, |
| 9870 | int (*remove_fn)(const char *, const char *)) { |
| 9871 | const char *name = paths.name; |
| 9872 | const char *instr_path = paths.instr_path; |
| 9873 | if (!dry_run) { |
| 9874 | char binary_path[CLI_BUF_1K]; |
| 9875 | cbm_agent_installed_binary_path(cbm_get_home_dir(), binary_path, sizeof(binary_path)); |
| 9876 | int remove_result = remove_fn(binary_path, paths.config_path); |
| 9877 | if (remove_result < CLI_OK) { |
| 9878 | record_agent_config_error(true, name, "mcp_uninstall", paths.config_path); |
| 9879 | } else if (remove_result > CLI_OK) { |
| 9880 | printf("%s: preserved modified or foreign MCP entry\n", name); |
| 9881 | } |
| 9882 | } |
| 9883 | printf("%s: removed MCP config entry\n", name); |
| 9884 | if (instr_path) { |
| 9885 | if (!dry_run) { |
| 9886 | if (cbm_remove_instructions(instr_path) != CLI_OK) { |
| 9887 | record_agent_config_error(true, name, "instructions_uninstall", instr_path); |
| 9888 | } |
| 9889 | } |
| 9890 | printf(" removed instructions\n"); |
| 9891 | } |
| 9892 | } |
| 9893 | |
| 9894 | static void uninstall_agent_skill(const char *label, const char *skills_dir, bool dry_run) { |
| 9895 | int removed = cbm_remove_skills(skills_dir, dry_run); |
no test coverage detected