| 9208 | static void cli_clients_print_list(FILE *out); |
| 9209 | |
| 9210 | int cbm_install_agent_configs(const char *home, const char *binary_path, bool force, bool dry_run) { |
| 9211 | g_agent_install_errors = 0; |
| 9212 | cbm_detected_agents_t agents = cbm_detect_agents(home); |
| 9213 | if (g_client_selection && !cli_clients_apply_selection(g_client_selection, &agents)) { |
| 9214 | return CLI_ERR; |
| 9215 | } |
| 9216 | if (!g_install_plan) { |
| 9217 | print_detected_agents(&agents, home); |
| 9218 | } |
| 9219 | |
| 9220 | if (agents.claude_code) { |
| 9221 | install_claude_code_config(home, binary_path, force, dry_run); |
| 9222 | } |
| 9223 | install_cli_agent_configs(&agents, home, binary_path, force, dry_run); |
| 9224 | install_editor_agent_configs(&agents, home, binary_path, force, dry_run); |
| 9225 | install_additional_agent_configs(&agents, home, binary_path, force, dry_run); |
| 9226 | bool inherit_claude_session = |
| 9227 | agents.claude_code && !dry_run && cbm_has_complete_claude_session_hooks(home); |
| 9228 | install_agent_client_registry(home, binary_path, inherit_claude_session, force, dry_run); |
| 9229 | return g_agent_install_errors == 0 ? CLI_OK : CLI_ERR; |
| 9230 | } |
| 9231 | |
| 9232 | static int cbm_install_agent_configs_with_previous(const char *home, const char *binary_path, |
| 9233 | const char *previous_managed_binary_path, |
no test coverage detected