| 10524 | } |
| 10525 | |
| 10526 | static void uninstall_copilot_durable_context(const char *home, bool dry_run) { |
| 10527 | char config_dir[CLI_BUF_1K]; |
| 10528 | char hook_path[CLI_BUF_1K]; |
| 10529 | char skills_dir[CLI_BUF_1K]; |
| 10530 | char agent_path[CLI_BUF_1K]; |
| 10531 | char binary_path[CLI_BUF_1K]; |
| 10532 | cbm_copilot_config_dir(home, config_dir, sizeof(config_dir)); |
| 10533 | snprintf(hook_path, sizeof(hook_path), "%s/hooks/codebase-memory-mcp.json", config_dir); |
| 10534 | snprintf(skills_dir, sizeof(skills_dir), "%s/skills", config_dir); |
| 10535 | snprintf(agent_path, sizeof(agent_path), "%s/agents/codebase-memory.agent.md", config_dir); |
| 10536 | cbm_agent_installed_binary_path(home, binary_path, sizeof(binary_path)); |
| 10537 | if (!dry_run && cbm_remove_copilot_hooks(hook_path, binary_path) != CLI_OK) { |
| 10538 | record_agent_config_error(true, "Copilot", "lifecycle_hook_uninstall", hook_path); |
| 10539 | } |
| 10540 | uninstall_agent_skill("Copilot", skills_dir, dry_run); |
| 10541 | uninstall_tiered_agent_profiles( |
| 10542 | (cbm_tiered_profile_set_t){ |
| 10543 | .label = "Copilot", |
| 10544 | .verify_path = agent_path, |
| 10545 | .binary_path = binary_path, |
| 10546 | .legacy_verify_content = legacy_copilot_verify_agent_content, |
| 10547 | .dialect = CBM_GRAPH_DIALECT_COPILOT, |
| 10548 | }, |
| 10549 | dry_run); |
| 10550 | printf(" removed SessionStart + SubagentStart hooks\n"); |
| 10551 | } |
| 10552 | |
| 10553 | static int cbm_remove_managed_instructions(const char *instructions_path) { |
| 10554 | if (cbm_remove_instructions(instructions_path) != CLI_OK) { |
no test coverage detected