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

Function cbm_upsert_gemini_session_hooks

src/cli/cli.c:5494–5513  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5492};
5493
5494int cbm_upsert_gemini_session_hooks(const char *settings_path) {
5495 static const char *const matchers[] = {"startup", "resume", "clear"};
5496 int rc = CLI_OK;
5497 for (size_t i = 0U; i < sizeof(matchers) / sizeof(matchers[0]); i++) {
5498 const char *const *old_matchers = i == 0U ? cmm_gemini_session_old_matchers : NULL;
5499 if (upsert_hooks_json((hooks_upsert_args_t){
5500 .settings_path = settings_path,
5501 .hook_event = "SessionStart",
5502 .matcher_str = matchers[i],
5503 .command_str = GEMINI_SESSION_COMMAND,
5504 .old_matchers = old_matchers,
5505 .old_commands = cmm_gemini_released_session_commands,
5506 .timeout_value = GEMINI_HOOK_TIMEOUT_MS,
5507 .match_command_exact = GEMINI_SESSION_COMMAND,
5508 }) != CLI_OK) {
5509 rc = CLI_ERR;
5510 }
5511 }
5512 return rc;
5513}
5514
5515int cbm_remove_gemini_session_hooks(const char *settings_path) {
5516 static const char *const matchers[] = {"startup", "resume", "clear"};

Callers 2

install_gemini_configFunction · 0.85
test_cli.cFile · 0.85

Calls 1

upsert_hooks_jsonFunction · 0.85

Tested by

no test coverage detected