| 3251 | } |
| 3252 | |
| 3253 | static int cbm_upsert_windsurf_rules(const char *path, const char *content) { |
| 3254 | if (!path || !content || ensure_parent_dir(path) != CLI_OK) { |
| 3255 | return CLI_ERR; |
| 3256 | } |
| 3257 | return cbm_text_upsert_managed_block_limited(path, CMM_MARKER_START, CMM_MARKER_END, content, |
| 3258 | WINDSURF_GLOBAL_RULES_MAX_BYTES) == 0 |
| 3259 | ? CLI_OK |
| 3260 | : CLI_ERR; |
| 3261 | } |
| 3262 | |
| 3263 | int cbm_remove_instructions(const char *path) { |
| 3264 | if (!path) { |
no test coverage detected