| 10097 | } |
| 10098 | |
| 10099 | static void uninstall_rovo_durable_context(const char *home, bool dry_run) { |
| 10100 | char instructions_path[CLI_BUF_1K]; |
| 10101 | char skills_dir[CLI_BUF_1K]; |
| 10102 | char agent_path[CLI_BUF_1K]; |
| 10103 | snprintf(instructions_path, sizeof(instructions_path), "%s/.rovodev/AGENTS.md", home); |
| 10104 | snprintf(skills_dir, sizeof(skills_dir), "%s/.rovodev/skills", home); |
| 10105 | snprintf(agent_path, sizeof(agent_path), "%s/.rovodev/subagents/codebase-memory.md", home); |
| 10106 | uninstall_managed_agent_instructions("Rovo Dev CLI", instructions_path, dry_run); |
| 10107 | uninstall_agent_skill("Rovo Dev CLI", skills_dir, dry_run); |
| 10108 | uninstall_tiered_agent_profiles( |
| 10109 | (cbm_tiered_profile_set_t){ |
| 10110 | .label = "Rovo Dev CLI", |
| 10111 | .verify_path = agent_path, |
| 10112 | .legacy_verify_content = legacy_rovo_verify_agent_content, |
| 10113 | .dialect = CBM_GRAPH_DIALECT_ROVO, |
| 10114 | }, |
| 10115 | dry_run); |
| 10116 | } |
| 10117 | |
| 10118 | static void uninstall_amp_durable_context(const char *home, bool dry_run) { |
| 10119 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected