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

Function uninstall_pochi_durable_context

src/cli/cli.c:10220–10237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10218}
10219
10220static void uninstall_pochi_durable_context(const char *home, bool dry_run) {
10221 char instructions_path[CLI_BUF_1K];
10222 char skills_dir[CLI_BUF_1K];
10223 char agent_path[CLI_BUF_1K];
10224 snprintf(instructions_path, sizeof(instructions_path), "%s/.pochi/README.pochi.md", home);
10225 snprintf(skills_dir, sizeof(skills_dir), "%s/.pochi/skills", home);
10226 snprintf(agent_path, sizeof(agent_path), "%s/.pochi/agents/codebase-memory.md", home);
10227 uninstall_managed_agent_instructions("Pochi", instructions_path, dry_run);
10228 uninstall_agent_skill("Pochi", skills_dir, dry_run);
10229 uninstall_tiered_agent_profiles(
10230 (cbm_tiered_profile_set_t){
10231 .label = "Pochi",
10232 .verify_path = agent_path,
10233 .legacy_verify_content = legacy_pochi_verify_agent_content,
10234 .dialect = CBM_GRAPH_DIALECT_POCHI,
10235 },
10236 dry_run);
10237}
10238
10239static void uninstall_agent_client_registry(const char *home, bool dry_run) {
10240 cbm_agent_registry_context_t registry;

Callers 1

Tested by

no test coverage detected