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

Function uninstall_kimi_durable_context

src/cli/cli.c:10077–10097  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10075}
10076
10077static void uninstall_kimi_durable_context(const cbm_agent_registry_context_t *registry,
10078 bool dry_run) {
10079 const char *kimi_home = registry->options.kimi_code_home;
10080 char default_home[CLI_BUF_1K];
10081 if (!kimi_home || !kimi_home[0]) {
10082 snprintf(default_home, sizeof(default_home), "%s/.kimi-code", registry->options.home_dir);
10083 kimi_home = default_home;
10084 }
10085 char instructions_path[CLI_BUF_1K];
10086 char skills_dir[CLI_BUF_1K];
10087 char config_path[CLI_BUF_1K];
10088 snprintf(instructions_path, sizeof(instructions_path), "%s/AGENTS.md", kimi_home);
10089 snprintf(skills_dir, sizeof(skills_dir), "%s/skills", kimi_home);
10090 snprintf(config_path, sizeof(config_path), "%s/config.toml", kimi_home);
10091 if (!dry_run && cbm_remove_kimi_context_hook(config_path) != CLI_OK) {
10092 record_agent_config_error(true, "Kimi Code CLI", "prompt_hook_uninstall", config_path);
10093 }
10094 printf(" hook: removed managed UserPromptSubmit entry\n");
10095 uninstall_managed_agent_instructions("Kimi Code CLI", instructions_path, dry_run);
10096 uninstall_agent_skill("Kimi Code CLI", skills_dir, dry_run);
10097}
10098
10099static void uninstall_rovo_durable_context(const char *home, bool dry_run) {
10100 char instructions_path[CLI_BUF_1K];

Callers 1

Tested by

no test coverage detected