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

Function install_generated_client_extension

src/cli/cli.c:7996–8019  ·  view source on GitHub ↗

Write a generated client extension module into `path` as a managed block. * * The module is generated from the tool registry rather than shipped (see * src/cli/client_adapter.h), and it goes in as a MARKED BLOCK rather than a * whole-file write: the directory is auto-loaded by the client, so a user may * legitimately keep their own module there, and clobbering it would be the * install routi

Source from the content-addressed store, hash-verified

7994 * than a skip, because a silently absent extension is exactly the failure mode
7995 * that left #616 a no-op for six weeks. */
7996static void install_generated_client_extension(const char *label, const char *path,
7997 const char *binary_path,
7998 char *(*generate)(const char *), bool dry_run) {
7999 if (g_install_plan) {
8000 plan_record(label, "extension", path);
8001 return;
8002 }
8003 char *content = generate(binary_path);
8004 if (!content) {
8005 record_agent_config_error(false, label, "extension_generate", path);
8006 return;
8007 }
8008 bool installed = true;
8009 if (!dry_run && (!prepare_config_parent(path) ||
8010 cbm_text_upsert_managed_block(path, CBM_ADAPTER_MARKER_START,
8011 CBM_ADAPTER_MARKER_END, content) != 0)) {
8012 installed = false;
8013 record_agent_config_error(false, label, "extension_install", path);
8014 }
8015 free(content);
8016 if (installed) {
8017 printf(" extension: %s\n", path);
8018 }
8019}
8020
8021/* Remove only OUR marked block, never the file: a user's own module may share
8022 * it, and owned removal is the convention every other uninstall path here

Callers 2

Calls 4

plan_recordFunction · 0.85
prepare_config_parentFunction · 0.85

Tested by

no test coverage detected