| 10178 | } |
| 10179 | |
| 10180 | static void uninstall_amp_durable_context(const char *home, bool dry_run) { |
| 10181 | char instructions_path[CLI_BUF_1K]; |
| 10182 | char skills_dir[CLI_BUF_1K]; |
| 10183 | snprintf(instructions_path, sizeof(instructions_path), "%s/.config/amp/AGENTS.md", home); |
| 10184 | snprintf(skills_dir, sizeof(skills_dir), "%s/.config/agents/skills", home); |
| 10185 | uninstall_managed_agent_instructions("Amp", instructions_path, dry_run); |
| 10186 | uninstall_agent_skill("Amp", skills_dir, dry_run); |
| 10187 | } |
| 10188 | |
| 10189 | static void uninstall_codebuddy_durable_context(const char *home, bool dry_run) { |
| 10190 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected