| 8290 | } |
| 8291 | |
| 8292 | static void install_rovo_durable_context(const char *home, bool force, bool dry_run) { |
| 8293 | char instructions_path[CLI_BUF_1K]; |
| 8294 | char skills_dir[CLI_BUF_1K]; |
| 8295 | char agent_path[CLI_BUF_1K]; |
| 8296 | snprintf(instructions_path, sizeof(instructions_path), "%s/.rovodev/AGENTS.md", home); |
| 8297 | snprintf(skills_dir, sizeof(skills_dir), "%s/.rovodev/skills", home); |
| 8298 | snprintf(agent_path, sizeof(agent_path), "%s/.rovodev/subagents/codebase-memory.md", home); |
| 8299 | install_managed_agent_instructions("Rovo Dev CLI", instructions_path, dry_run); |
| 8300 | install_agent_skill("Rovo Dev CLI", skills_dir, force, dry_run); |
| 8301 | install_tiered_agent_profiles( |
| 8302 | (cbm_tiered_profile_set_t){ |
| 8303 | .label = "Rovo Dev CLI", |
| 8304 | .verify_path = agent_path, |
| 8305 | .legacy_verify_content = legacy_rovo_verify_agent_content, |
| 8306 | .dialect = CBM_GRAPH_DIALECT_ROVO, |
| 8307 | }, |
| 8308 | dry_run); |
| 8309 | } |
| 8310 | |
| 8311 | static void install_amp_durable_context(const char *home, bool force, bool dry_run) { |
| 8312 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected