| 10544 | } |
| 10545 | |
| 10546 | static void uninstall_bob_durable_context(const char *home, bool ide, bool dry_run) { |
| 10547 | char rules_path[CLI_BUF_1K]; |
| 10548 | snprintf(rules_path, sizeof(rules_path), "%s/.bob/rules/codebase-memory.md", home); |
| 10549 | uninstall_managed_agent_instructions(ide ? "IBM Bob IDE" : "IBM Bob Shell", rules_path, |
| 10550 | dry_run); |
| 10551 | if (ide) { |
| 10552 | char skills_dir[CLI_BUF_1K]; |
| 10553 | snprintf(skills_dir, sizeof(skills_dir), "%s/.bob/skills", home); |
| 10554 | uninstall_agent_skill("IBM Bob IDE", skills_dir, dry_run); |
| 10555 | } |
| 10556 | } |
| 10557 | |
| 10558 | static void uninstall_pochi_durable_context(const char *home, bool dry_run) { |
| 10559 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected