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

Function cbm_remove_qwen_lifecycle_hooks

src/cli/cli.c:5619–5642  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5617}
5618
5619static int cbm_remove_qwen_lifecycle_hooks(const char *settings_path, const char *binary_path,
5620 bool windows) {
5621 char command[CLI_BUF_8K];
5622 char released_command[CLI_BUF_8K];
5623 char shell[CLI_BUF_32];
5624 if (cbm_build_qwen_hook_command(binary_path, windows, command, sizeof(command), shell,
5625 sizeof(shell)) != CLI_OK ||
5626 (windows ? cbm_build_augment_command_windows(binary_path, released_command,
5627 sizeof(released_command))
5628 : cbm_build_augment_command(binary_path, released_command,
5629 sizeof(released_command))) != CLI_OK) {
5630 return CLI_ERR;
5631 }
5632 int lifecycle_result = cbm_remove_paired_lifecycle_hooks_json(settings_path, command);
5633 int legacy_result = cbm_remove_paired_lifecycle_hooks_json(settings_path, released_command);
5634 int read_result = remove_hooks_json((hooks_remove_args_t){
5635 .settings_path = settings_path,
5636 .hook_event = "PostToolUse",
5637 .matcher_str = "ReadFile",
5638 .match_command_exact = command,
5639 });
5640 return lifecycle_result == CLI_OK && legacy_result == CLI_OK && read_result == CLI_OK ? CLI_OK
5641 : CLI_ERR;
5642}
5643
5644static int cbm_upsert_factory_hooks(const char *settings_path, const char *binary_path) {
5645 char command[CLI_BUF_8K];

Callers 1

Tested by

no test coverage detected