harness-write 0.1.1

Write/Edit/MultiEdit tool for AI agent harnesses — atomic write, read-before-edit ledger, OLD_STRING_NOT_UNIQUE with match locations, OLD_STRING_NOT_FOUND with fuzzy candidates, sequential multi-edit pipeline
Documentation
1
2
3
4
/// Normalize CRLF → LF. Matches the TS normalizer exactly.
pub fn normalize_line_endings(s: &str) -> String {
    s.replace("\r\n", "\n")
}