| 9903 | } |
| 9904 | |
| 9905 | static void uninstall_copilot_durable_context(const char *home, bool dry_run) { |
| 9906 | char config_dir[CLI_BUF_1K]; |
| 9907 | char hook_path[CLI_BUF_1K]; |
| 9908 | char skills_dir[CLI_BUF_1K]; |
| 9909 | char agent_path[CLI_BUF_1K]; |
| 9910 | char binary_path[CLI_BUF_1K]; |
| 9911 | cbm_copilot_config_dir(home, config_dir, sizeof(config_dir)); |
| 9912 | snprintf(hook_path, sizeof(hook_path), "%s/hooks/codebase-memory-mcp.json", config_dir); |
| 9913 | snprintf(skills_dir, sizeof(skills_dir), "%s/skills", config_dir); |
| 9914 | snprintf(agent_path, sizeof(agent_path), "%s/agents/codebase-memory.agent.md", config_dir); |
| 9915 | cbm_agent_installed_binary_path(home, binary_path, sizeof(binary_path)); |
| 9916 | if (!dry_run && cbm_remove_copilot_hooks(hook_path, binary_path) != CLI_OK) { |
| 9917 | record_agent_config_error(true, "Copilot", "lifecycle_hook_uninstall", hook_path); |
| 9918 | } |
| 9919 | uninstall_agent_skill("Copilot", skills_dir, dry_run); |
| 9920 | uninstall_tiered_agent_profiles( |
| 9921 | (cbm_tiered_profile_set_t){ |
| 9922 | .label = "Copilot", |
| 9923 | .verify_path = agent_path, |
| 9924 | .binary_path = binary_path, |
| 9925 | .legacy_verify_content = legacy_copilot_verify_agent_content, |
| 9926 | .dialect = CBM_GRAPH_DIALECT_COPILOT, |
| 9927 | }, |
| 9928 | dry_run); |
| 9929 | printf(" removed SessionStart + SubagentStart hooks\n"); |
| 9930 | } |
| 9931 | |
| 9932 | static int cbm_remove_managed_instructions(const char *instructions_path) { |
| 9933 | if (cbm_remove_instructions(instructions_path) != CLI_OK) { |
no test coverage detected