| 10159 | } |
| 10160 | |
| 10161 | static void uninstall_rovo_durable_context(const char *home, bool dry_run) { |
| 10162 | char instructions_path[CLI_BUF_1K]; |
| 10163 | char skills_dir[CLI_BUF_1K]; |
| 10164 | char agent_path[CLI_BUF_1K]; |
| 10165 | snprintf(instructions_path, sizeof(instructions_path), "%s/.rovodev/AGENTS.md", home); |
| 10166 | snprintf(skills_dir, sizeof(skills_dir), "%s/.rovodev/skills", home); |
| 10167 | snprintf(agent_path, sizeof(agent_path), "%s/.rovodev/subagents/codebase-memory.md", home); |
| 10168 | uninstall_managed_agent_instructions("Rovo Dev CLI", instructions_path, dry_run); |
| 10169 | uninstall_agent_skill("Rovo Dev CLI", skills_dir, dry_run); |
| 10170 | uninstall_tiered_agent_profiles( |
| 10171 | (cbm_tiered_profile_set_t){ |
| 10172 | .label = "Rovo Dev CLI", |
| 10173 | .verify_path = agent_path, |
| 10174 | .legacy_verify_content = legacy_rovo_verify_agent_content, |
| 10175 | .dialect = CBM_GRAPH_DIALECT_ROVO, |
| 10176 | }, |
| 10177 | dry_run); |
| 10178 | } |
| 10179 | |
| 10180 | static void uninstall_amp_durable_context(const char *home, bool dry_run) { |
| 10181 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected