| 10359 | } |
| 10360 | |
| 10361 | static void uninstall_copilot_durable_context(const char *home, bool dry_run) { |
| 10362 | char config_dir[CLI_BUF_1K]; |
| 10363 | char hook_path[CLI_BUF_1K]; |
| 10364 | char skills_dir[CLI_BUF_1K]; |
| 10365 | char agent_path[CLI_BUF_1K]; |
| 10366 | char binary_path[CLI_BUF_1K]; |
| 10367 | cbm_copilot_config_dir(home, config_dir, sizeof(config_dir)); |
| 10368 | snprintf(hook_path, sizeof(hook_path), "%s/hooks/codebase-memory-mcp.json", config_dir); |
| 10369 | snprintf(skills_dir, sizeof(skills_dir), "%s/skills", config_dir); |
| 10370 | snprintf(agent_path, sizeof(agent_path), "%s/agents/codebase-memory.agent.md", config_dir); |
| 10371 | cbm_agent_installed_binary_path(home, binary_path, sizeof(binary_path)); |
| 10372 | if (!dry_run && cbm_remove_copilot_hooks(hook_path, binary_path) != CLI_OK) { |
| 10373 | record_agent_config_error(true, "Copilot", "lifecycle_hook_uninstall", hook_path); |
| 10374 | } |
| 10375 | uninstall_agent_skill("Copilot", skills_dir, dry_run); |
| 10376 | uninstall_tiered_agent_profiles( |
| 10377 | (cbm_tiered_profile_set_t){ |
| 10378 | .label = "Copilot", |
| 10379 | .verify_path = agent_path, |
| 10380 | .binary_path = binary_path, |
| 10381 | .legacy_verify_content = legacy_copilot_verify_agent_content, |
| 10382 | .dialect = CBM_GRAPH_DIALECT_COPILOT, |
| 10383 | }, |
| 10384 | dry_run); |
| 10385 | printf(" removed SessionStart + SubagentStart hooks\n"); |
| 10386 | } |
| 10387 | |
| 10388 | static int cbm_remove_managed_instructions(const char *instructions_path) { |
| 10389 | if (cbm_remove_instructions(instructions_path) != CLI_OK) { |
no test coverage detected