1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// SPDX-License-Identifier: MIT OR Apache-2.0
//! Subcommand handler implementations for all atomwrite operations.
/// Patch application from stdin (unified diff, SEARCH/REPLACE, full file).
/// Standalone file backup with BLAKE3 checksums.
/// Batch operation execution from NDJSON manifest.
/// Math expression evaluation via fend.
/// v14 Tier 3: identifier case conversion (snake/camel/Pascal/kebab/SCREAMING).
/// Atomic file copy with checksum verification.
/// Line, match, and extension counting.
/// v14 Tier 3: structured config key removal.
/// File deletion with optional backup.
/// Unified diff between two files.
/// Surgical file editing by line or marker.
/// Field extraction from NDJSON or text.
/// v14 Tier 3: structured config value reader.
/// BLAKE3 checksum computation for files.
/// Directory listing with metadata.
/// Atomic file move and rename.
/// v14 Tier 3 (v0.1.12): tree-sitter S-expression query against a file.
/// v14 Tier 3 (v0.1.12): tree-sitter S-expression query against a file.
/// File reading with metadata and content.
/// Regex generation from examples via grex.
/// Parallel text replacement with atomic writes.
/// File restoration from backup.
/// Grammatical scoping with AST-based actions.
/// Parallel file content search via ripgrep.
/// v14 Tier 3: structured config value setter.
/// Structural AST code search and rewrite.
/// Atomic file creation and overwrite.