| 1554 | } |
| 1555 | |
| 1556 | bool cbm_remove_old_monolithic_skill(const char *skills_dir, bool dry_run) { |
| 1557 | if (!skills_dir) { |
| 1558 | return false; |
| 1559 | } |
| 1560 | |
| 1561 | char old_path[CLI_BUF_1K]; |
| 1562 | snprintf(old_path, sizeof(old_path), "%s/codebase-memory-mcp", skills_dir); |
| 1563 | return cbm_remove_empty_directory(old_path, dry_run); |
| 1564 | } |
| 1565 | |
| 1566 | /* ── JSON config helpers (using yyjson) ───────────────────────── */ |
| 1567 |
no outgoing calls
no test coverage detected