| 8085 | } |
| 8086 | |
| 8087 | static void install_rovo_durable_context(const char *home, bool force, bool dry_run) { |
| 8088 | char instructions_path[CLI_BUF_1K]; |
| 8089 | char skills_dir[CLI_BUF_1K]; |
| 8090 | char agent_path[CLI_BUF_1K]; |
| 8091 | snprintf(instructions_path, sizeof(instructions_path), "%s/.rovodev/AGENTS.md", home); |
| 8092 | snprintf(skills_dir, sizeof(skills_dir), "%s/.rovodev/skills", home); |
| 8093 | snprintf(agent_path, sizeof(agent_path), "%s/.rovodev/subagents/codebase-memory.md", home); |
| 8094 | install_managed_agent_instructions("Rovo Dev CLI", instructions_path, dry_run); |
| 8095 | install_agent_skill("Rovo Dev CLI", skills_dir, force, dry_run); |
| 8096 | install_tiered_agent_profiles( |
| 8097 | (cbm_tiered_profile_set_t){ |
| 8098 | .label = "Rovo Dev CLI", |
| 8099 | .verify_path = agent_path, |
| 8100 | .legacy_verify_content = legacy_rovo_verify_agent_content, |
| 8101 | .dialect = CBM_GRAPH_DIALECT_ROVO, |
| 8102 | }, |
| 8103 | dry_run); |
| 8104 | } |
| 8105 | |
| 8106 | static void install_amp_durable_context(const char *home, bool force, bool dry_run) { |
| 8107 | char instructions_path[CLI_BUF_1K]; |
no test coverage detected