| 7433 | bool dry_run, bool uninstalling); |
| 7434 | |
| 7435 | static void reconcile_cline_context_hooks(const char *cline_root, const char *binary_path, |
| 7436 | bool dry_run) { |
| 7437 | if (g_install_plan) { |
| 7438 | return; |
| 7439 | } |
| 7440 | if (!dry_run) { |
| 7441 | (void)remove_cline_context_hooks(cline_root, binary_path, false, false); |
| 7442 | } |
| 7443 | printf(" hooks: withheld (file hooks auto-enable and do not reliably inject context)\n"); |
| 7444 | } |
| 7445 | |
| 7446 | static void install_agent_skill(const char *label, const char *skills_dir, bool force, |
| 7447 | bool dry_run) { |
no test coverage detected