| 10122 | } |
| 10123 | |
| 10124 | static void uninstall_amp_durable_context(const char *home, bool dry_run) { |
| 10125 | char instructions_path[CLI_BUF_1K]; |
| 10126 | char skills_dir[CLI_BUF_1K]; |
| 10127 | snprintf(instructions_path, sizeof(instructions_path), "%s/.config/amp/AGENTS.md", home); |
| 10128 | snprintf(skills_dir, sizeof(skills_dir), "%s/.config/agents/skills", home); |
| 10129 | uninstall_managed_agent_instructions("Amp", instructions_path, dry_run); |
| 10130 | uninstall_agent_skill("Amp", skills_dir, dry_run); |
| 10131 | } |
| 10132 | |
| 10133 | static void uninstall_codebuddy_durable_context(const char *home, bool dry_run) { |
| 10134 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected