atomwrite 0.1.35

Atomic file operations CLI for LLM agents — read, write, edit, search, replace with NDJSON output
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Clap command definition integrity: `CommandFactory::debug_assert`.
//!
//! Required by rules_rust_cli_com_clap — catches developer errors in the
//! derive contract (id collisions, conflicting shorts, invalid defaults).

use atomwrite::cli::Cli;
use clap::CommandFactory;

#[test]
fn cli_command_debug_assert() {
    Cli::command().debug_assert();
}