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

Function cbm_upsert_instructions

src/cli/cli.c:3284–3294  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3282}
3283
3284int cbm_upsert_instructions(const char *path, const char *content) {
3285 if (!path || !content) {
3286 return CLI_ERR;
3287 }
3288 if (ensure_parent_dir(path) != CLI_OK) {
3289 return CLI_ERR;
3290 }
3291 return cbm_text_upsert_managed_block(path, CMM_MARKER_START, CMM_MARKER_END, content) == 0
3292 ? CLI_OK
3293 : CLI_ERR;
3294}
3295
3296static int cbm_upsert_windsurf_rules(const char *path, const char *content) {
3297 if (!path || !content || ensure_parent_dir(path) != CLI_OK) {

Calls 2

ensure_parent_dirFunction · 0.85

Tested by

no test coverage detected