| 10206 | } |
| 10207 | |
| 10208 | static void uninstall_bob_durable_context(const char *home, bool ide, bool dry_run) { |
| 10209 | char rules_path[CLI_BUF_1K]; |
| 10210 | snprintf(rules_path, sizeof(rules_path), "%s/.bob/rules/codebase-memory.md", home); |
| 10211 | uninstall_managed_agent_instructions(ide ? "IBM Bob IDE" : "IBM Bob Shell", rules_path, |
| 10212 | dry_run); |
| 10213 | if (ide) { |
| 10214 | char skills_dir[CLI_BUF_1K]; |
| 10215 | snprintf(skills_dir, sizeof(skills_dir), "%s/.bob/skills", home); |
| 10216 | uninstall_agent_skill("IBM Bob IDE", skills_dir, dry_run); |
| 10217 | } |
| 10218 | } |
| 10219 | |
| 10220 | static void uninstall_pochi_durable_context(const char *home, bool dry_run) { |
| 10221 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected