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

Function uninstall_qoder_durable_context

src/cli/cli.c:9952–9982  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9950 bool dry_run);
9951
9952static void uninstall_qoder_durable_context(const char *home, const char *binary_path,
9953 const char *settings_path, bool config_resolved,
9954 bool dry_run) {
9955 char skills_dir[CLI_BUF_1K];
9956 char agent_path[CLI_BUF_1K];
9957 snprintf(skills_dir, sizeof(skills_dir), "%s/.qoder/skills", home);
9958 snprintf(agent_path, sizeof(agent_path), "%s/.qoder/agents/codebase-memory.md", home);
9959 bool cleanup_ok = true;
9960 if (!dry_run && config_resolved &&
9961 cbm_remove_qoder_context_hook(settings_path, binary_path) != CLI_OK) {
9962 cleanup_ok = false;
9963 record_agent_config_error(true, "Qoder CLI", "context_hook_uninstall", settings_path);
9964 }
9965 const char *hook_status = !config_resolved ? "skipped because the settings path was unresolved"
9966 : dry_run ? "canonical lifecycle/read cleanup planned"
9967 : cleanup_ok
9968 ? "canonical lifecycle/read cleanup complete; modified or "
9969 "foreign entries preserved"
9970 : "canonical lifecycle/read cleanup failed";
9971 printf(" hook: %s\n", hook_status);
9972 uninstall_agent_skill("Qoder CLI", skills_dir, dry_run);
9973 uninstall_tiered_agent_profiles(
9974 (cbm_tiered_profile_set_t){
9975 .label = "Qoder CLI",
9976 .verify_path = agent_path,
9977 .binary_path = binary_path,
9978 .legacy_verify_content = legacy_qoder_verify_agent_content,
9979 .dialect = CBM_GRAPH_DIALECT_QODER,
9980 },
9981 dry_run);
9982}
9983
9984static void uninstall_gitlab_durable_context(const cbm_agent_registry_context_t *registry,
9985 const char *binary_path, bool dry_run) {

Callers 1

Calls 4

uninstall_agent_skillFunction · 0.85

Tested by

no test coverage detected