| 8141 | } |
| 8142 | |
| 8143 | static void install_rovo_durable_context(const char *home, bool force, bool dry_run) { |
| 8144 | char instructions_path[CLI_BUF_1K]; |
| 8145 | char skills_dir[CLI_BUF_1K]; |
| 8146 | char agent_path[CLI_BUF_1K]; |
| 8147 | snprintf(instructions_path, sizeof(instructions_path), "%s/.rovodev/AGENTS.md", home); |
| 8148 | snprintf(skills_dir, sizeof(skills_dir), "%s/.rovodev/skills", home); |
| 8149 | snprintf(agent_path, sizeof(agent_path), "%s/.rovodev/subagents/codebase-memory.md", home); |
| 8150 | install_managed_agent_instructions("Rovo Dev CLI", instructions_path, dry_run); |
| 8151 | install_agent_skill("Rovo Dev CLI", skills_dir, force, dry_run); |
| 8152 | install_tiered_agent_profiles( |
| 8153 | (cbm_tiered_profile_set_t){ |
| 8154 | .label = "Rovo Dev CLI", |
| 8155 | .verify_path = agent_path, |
| 8156 | .legacy_verify_content = legacy_rovo_verify_agent_content, |
| 8157 | .dialect = CBM_GRAPH_DIALECT_ROVO, |
| 8158 | }, |
| 8159 | dry_run); |
| 8160 | } |
| 8161 | |
| 8162 | static void install_amp_durable_context(const char *home, bool force, bool dry_run) { |
| 8163 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected