| 10771 | } |
| 10772 | |
| 10773 | static void uninstall_bob_durable_context(const char *home, bool ide, bool dry_run) { |
| 10774 | char rules_path[CLI_BUF_1K]; |
| 10775 | snprintf(rules_path, sizeof(rules_path), "%s/.bob/rules/codebase-memory.md", home); |
| 10776 | uninstall_managed_agent_instructions(ide ? "IBM Bob IDE" : "IBM Bob Shell", rules_path, |
| 10777 | dry_run); |
| 10778 | if (ide) { |
| 10779 | char skills_dir[CLI_BUF_1K]; |
| 10780 | snprintf(skills_dir, sizeof(skills_dir), "%s/.bob/skills", home); |
| 10781 | uninstall_agent_skill("IBM Bob IDE", skills_dir, dry_run); |
| 10782 | } |
| 10783 | } |
| 10784 | |
| 10785 | static void uninstall_pochi_durable_context(const char *home, bool dry_run) { |
| 10786 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected