| 10150 | } |
| 10151 | |
| 10152 | static void uninstall_bob_durable_context(const char *home, bool ide, bool dry_run) { |
| 10153 | char rules_path[CLI_BUF_1K]; |
| 10154 | snprintf(rules_path, sizeof(rules_path), "%s/.bob/rules/codebase-memory.md", home); |
| 10155 | uninstall_managed_agent_instructions(ide ? "IBM Bob IDE" : "IBM Bob Shell", rules_path, |
| 10156 | dry_run); |
| 10157 | if (ide) { |
| 10158 | char skills_dir[CLI_BUF_1K]; |
| 10159 | snprintf(skills_dir, sizeof(skills_dir), "%s/.bob/skills", home); |
| 10160 | uninstall_agent_skill("IBM Bob IDE", skills_dir, dry_run); |
| 10161 | } |
| 10162 | } |
| 10163 | |
| 10164 | static void uninstall_pochi_durable_context(const char *home, bool dry_run) { |
| 10165 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected