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

Function uninstall_rovo_durable_context

src/cli/cli.c:10726–10743  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10724}
10725
10726static void uninstall_rovo_durable_context(const char *home, bool dry_run) {
10727 char instructions_path[CLI_BUF_1K];
10728 char skills_dir[CLI_BUF_1K];
10729 char agent_path[CLI_BUF_1K];
10730 snprintf(instructions_path, sizeof(instructions_path), "%s/.rovodev/AGENTS.md", home);
10731 snprintf(skills_dir, sizeof(skills_dir), "%s/.rovodev/skills", home);
10732 snprintf(agent_path, sizeof(agent_path), "%s/.rovodev/subagents/codebase-memory.md", home);
10733 uninstall_managed_agent_instructions("Rovo Dev CLI", instructions_path, dry_run);
10734 uninstall_agent_skill("Rovo Dev CLI", skills_dir, dry_run);
10735 uninstall_tiered_agent_profiles(
10736 (cbm_tiered_profile_set_t){
10737 .label = "Rovo Dev CLI",
10738 .verify_path = agent_path,
10739 .legacy_verify_content = legacy_rovo_verify_agent_content,
10740 .dialect = CBM_GRAPH_DIALECT_ROVO,
10741 },
10742 dry_run);
10743}
10744
10745static void uninstall_amp_durable_context(const char *home, bool dry_run) {
10746 char instructions_path[CLI_BUF_1K];

Callers 1

Tested by

no test coverage detected