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

Function cbm_upsert_instructions

src/cli/cli.c:3193–3203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3191}
3192
3193int cbm_upsert_instructions(const char *path, const char *content) {
3194 if (!path || !content) {
3195 return CLI_ERR;
3196 }
3197 if (ensure_parent_dir(path) != CLI_OK) {
3198 return CLI_ERR;
3199 }
3200 return cbm_text_upsert_managed_block(path, CMM_MARKER_START, CMM_MARKER_END, content) == 0
3201 ? CLI_OK
3202 : CLI_ERR;
3203}
3204
3205static int cbm_upsert_windsurf_rules(const char *path, const char *content) {
3206 if (!path || !content || ensure_parent_dir(path) != CLI_OK) {

Calls 2

ensure_parent_dirFunction · 0.85

Tested by

no test coverage detected