| 1504 | } |
| 1505 | |
| 1506 | bool cbm_remove_old_monolithic_skill(const char *skills_dir, bool dry_run) { |
| 1507 | if (!skills_dir) { |
| 1508 | return false; |
| 1509 | } |
| 1510 | |
| 1511 | char old_path[CLI_BUF_1K]; |
| 1512 | snprintf(old_path, sizeof(old_path), "%s/codebase-memory-mcp", skills_dir); |
| 1513 | return cbm_remove_empty_directory(old_path, dry_run); |
| 1514 | } |
| 1515 | |
| 1516 | /* ── JSON config helpers (using yyjson) ───────────────────────── */ |
| 1517 |
no outgoing calls
no test coverage detected