| 3213 | } |
| 3214 | |
| 3215 | int cbm_remove_instructions(const char *path) { |
| 3216 | if (!path) { |
| 3217 | return CLI_ERR; |
| 3218 | } |
| 3219 | return cbm_text_remove_managed_block(path, CMM_MARKER_START, CMM_MARKER_END) == 0 ? CLI_OK |
| 3220 | : CLI_ERR; |
| 3221 | } |
| 3222 | |
| 3223 | /* ── Codex MCP config (TOML) ─────────────────────────────────── */ |
| 3224 |
no test coverage detected