| 8443 | } |
| 8444 | |
| 8445 | static void install_rovo_durable_context(const char *home, bool force, bool dry_run) { |
| 8446 | char instructions_path[CLI_BUF_1K]; |
| 8447 | char skills_dir[CLI_BUF_1K]; |
| 8448 | char agent_path[CLI_BUF_1K]; |
| 8449 | snprintf(instructions_path, sizeof(instructions_path), "%s/.rovodev/AGENTS.md", home); |
| 8450 | snprintf(skills_dir, sizeof(skills_dir), "%s/.rovodev/skills", home); |
| 8451 | snprintf(agent_path, sizeof(agent_path), "%s/.rovodev/subagents/codebase-memory.md", home); |
| 8452 | install_managed_agent_instructions("Rovo Dev CLI", instructions_path, dry_run); |
| 8453 | install_agent_skill("Rovo Dev CLI", skills_dir, force, dry_run); |
| 8454 | install_tiered_agent_profiles( |
| 8455 | (cbm_tiered_profile_set_t){ |
| 8456 | .label = "Rovo Dev CLI", |
| 8457 | .verify_path = agent_path, |
| 8458 | .legacy_verify_content = legacy_rovo_verify_agent_content, |
| 8459 | .dialect = CBM_GRAPH_DIALECT_ROVO, |
| 8460 | }, |
| 8461 | dry_run); |
| 8462 | } |
| 8463 | |
| 8464 | static void install_amp_durable_context(const char *home, bool force, bool dry_run) { |
| 8465 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected