MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / install_rovo_durable_context

Function install_rovo_durable_context

src/cli/cli.c:8081–8098  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

Calls 3

install_agent_skillFunction · 0.85

Tested by

no test coverage detected