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

Function cbm_resolve_previous_hook_command

src/cli/cli.c:2707–2722  ·  view source on GitHub ↗

Resolve the exact shell-quoted command form shipped immediately before the * explicit Windows cmd.exe wrapper. It remains an ownership identity only. */

Source from the content-addressed store, hash-verified

2705/* Resolve the exact shell-quoted command form shipped immediately before the
2706 * explicit Windows cmd.exe wrapper. It remains an ownership identity only. */
2707static int cbm_resolve_previous_hook_command(const char *script_name, char *out, size_t out_sz) {
2708 if (!cbm_hook_script_name_safe(script_name) || !out || out_sz == 0U) {
2709 return CLI_ERR;
2710 }
2711 char env_buf[CLI_BUF_1K];
2712 const char *env = cbm_safe_getenv("CLAUDE_CONFIG_DIR", env_buf, sizeof(env_buf), NULL);
2713 if (env && env[0]) {
2714 char path[CLI_BUF_1K];
2715 int written = snprintf(path, sizeof(path), "%s/hooks/%s", env, script_name);
2716 return written > 0 && (size_t)written < sizeof(path)
2717 ? cbm_shell_quote_word(path, out, out_sz)
2718 : CLI_ERR;
2719 }
2720 int written = snprintf(out, out_sz, "\"$HOME/.claude/hooks/%s\"", script_name);
2721 return written > 0 && (size_t)written < out_sz ? CLI_OK : CLI_ERR;
2722}
2723
2724/* Resolve only the exact command form shipped before hook paths were shell
2725 * quoted. This is an ownership identity for upgrade/uninstall, never a command

Calls 3

cbm_safe_getenvFunction · 0.85
cbm_shell_quote_wordFunction · 0.85

Tested by

no test coverage detected