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
//! CLI command routines for `claude_storage`
//!
//! This module provides command routines that are registered with unilang
//! and called when users invoke CLI commands.
//!
//! ## Known Pitfalls
//!
//! ### Parameter Validation Consistency (Finding #010)
//!
//! **Issue**: Default parameter values do not prevent invalid input — parameters
//! with defaults still require explicit validation.
//!
//! **Solution**: All parameters with value constraints must have explicit
//! validation regardless of default values. Apply validation patterns
//! consistently across all command routines. Boolean parameters accept only
//! `0`/`1`; integer parameters (e.g. `min_entries::`, `limit::`) must be
//! validated as non-negative at point of use.
//!
//! **Prevention**: When adding new parameters, check existing command routines
//! for validation patterns and apply them consistently.
pub use parse_project_parameter;
pub use truncate_if_needed;
pub use ;
pub use status_routine;
pub use list_routine;
pub use show_routine;
pub use count_routine;
pub use search_routine;
pub use export_routine;
pub use ;