| 8035 | } |
| 8036 | |
| 8037 | static void install_rovo_durable_context(const char *home, bool force, bool dry_run) { |
| 8038 | char instructions_path[CLI_BUF_1K]; |
| 8039 | char skills_dir[CLI_BUF_1K]; |
| 8040 | char agent_path[CLI_BUF_1K]; |
| 8041 | snprintf(instructions_path, sizeof(instructions_path), "%s/.rovodev/AGENTS.md", home); |
| 8042 | snprintf(skills_dir, sizeof(skills_dir), "%s/.rovodev/skills", home); |
| 8043 | snprintf(agent_path, sizeof(agent_path), "%s/.rovodev/subagents/codebase-memory.md", home); |
| 8044 | install_managed_agent_instructions("Rovo Dev CLI", instructions_path, dry_run); |
| 8045 | install_agent_skill("Rovo Dev CLI", skills_dir, force, dry_run); |
| 8046 | install_tiered_agent_profiles( |
| 8047 | (cbm_tiered_profile_set_t){ |
| 8048 | .label = "Rovo Dev CLI", |
| 8049 | .verify_path = agent_path, |
| 8050 | .legacy_verify_content = legacy_rovo_verify_agent_content, |
| 8051 | .dialect = CBM_GRAPH_DIALECT_ROVO, |
| 8052 | }, |
| 8053 | dry_run); |
| 8054 | } |
| 8055 | |
| 8056 | static void install_amp_durable_context(const char *home, bool force, bool dry_run) { |
| 8057 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected