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

Function install_rovo_durable_context

src/cli/cli.c:8445–8462  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8443}
8444
8445static 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
8464static void install_amp_durable_context(const char *home, bool force, bool dry_run) {
8465 char instructions_path[CLI_BUF_1K];

Callers 1

Calls 3

install_agent_skillFunction · 0.85

Tested by

no test coverage detected