| 10752 | } |
| 10753 | |
| 10754 | static void uninstall_codebuddy_durable_context(const char *home, bool dry_run) { |
| 10755 | char instructions_path[CLI_BUF_1K]; |
| 10756 | char skills_dir[CLI_BUF_1K]; |
| 10757 | char agent_path[CLI_BUF_1K]; |
| 10758 | snprintf(instructions_path, sizeof(instructions_path), "%s/.codebuddy/CODEBUDDY.md", home); |
| 10759 | snprintf(skills_dir, sizeof(skills_dir), "%s/.codebuddy/skills", home); |
| 10760 | snprintf(agent_path, sizeof(agent_path), "%s/.codebuddy/agents/codebase-memory.md", home); |
| 10761 | uninstall_managed_agent_instructions("CodeBuddy Code CLI", instructions_path, dry_run); |
| 10762 | uninstall_agent_skill("CodeBuddy Code CLI", skills_dir, dry_run); |
| 10763 | uninstall_tiered_agent_profiles( |
| 10764 | (cbm_tiered_profile_set_t){ |
| 10765 | .label = "CodeBuddy Code CLI", |
| 10766 | .verify_path = agent_path, |
| 10767 | .legacy_verify_content = legacy_codebuddy_verify_agent_content, |
| 10768 | .dialect = CBM_GRAPH_DIALECT_CODEBUDDY, |
| 10769 | }, |
| 10770 | dry_run); |
| 10771 | } |
| 10772 | |
| 10773 | static void uninstall_bob_durable_context(const char *home, bool ide, bool dry_run) { |
| 10774 | char rules_path[CLI_BUF_1K]; |
no test coverage detected