| 10100 | } |
| 10101 | |
| 10102 | static void uninstall_bob_durable_context(const char *home, bool ide, bool dry_run) { |
| 10103 | char rules_path[CLI_BUF_1K]; |
| 10104 | snprintf(rules_path, sizeof(rules_path), "%s/.bob/rules/codebase-memory.md", home); |
| 10105 | uninstall_managed_agent_instructions(ide ? "IBM Bob IDE" : "IBM Bob Shell", rules_path, |
| 10106 | dry_run); |
| 10107 | if (ide) { |
| 10108 | char skills_dir[CLI_BUF_1K]; |
| 10109 | snprintf(skills_dir, sizeof(skills_dir), "%s/.bob/skills", home); |
| 10110 | uninstall_agent_skill("IBM Bob IDE", skills_dir, dry_run); |
| 10111 | } |
| 10112 | } |
| 10113 | |
| 10114 | static void uninstall_pochi_durable_context(const char *home, bool dry_run) { |
| 10115 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected