| 1532 | } |
| 1533 | |
| 1534 | bool cbm_remove_old_monolithic_skill(const char *skills_dir, bool dry_run) { |
| 1535 | if (!skills_dir) { |
| 1536 | return false; |
| 1537 | } |
| 1538 | |
| 1539 | char old_path[CLI_BUF_1K]; |
| 1540 | snprintf(old_path, sizeof(old_path), "%s/codebase-memory-mcp", skills_dir); |
| 1541 | return cbm_remove_empty_directory(old_path, dry_run); |
| 1542 | } |
| 1543 | |
| 1544 | /* ── JSON config helpers (using yyjson) ───────────────────────── */ |
| 1545 |
no outgoing calls
no test coverage detected