resq_cli/commands/mod.rs
1/*
2 * Copyright 2026 ResQ
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//! CLI commands for the ResQ tool.
18//!
19//! # Commands
20//!
21//! - [`audit`] - Dependency + supply-chain audit
22//! - [`commit`] - AI-powered commit message generation
23//! - [`copyright`] - Check/update copyright headers
24//! - [`dev`] - Repo development utilities
25//! - [`docs`] - Documentation export + publication
26//! - [`explore`] - TUI explorers (launchers)
27//! - [`hooks`] - Canonical git-hook lifecycle
28//! - [`pre_commit`] - Unified pre-commit checks
29//! - [`secrets`] - Secret scanning
30//! - [`version`] - Version + changeset management
31
32/// Blockchain event auditing.
33pub mod audit;
34/// AI-powered commit message generation.
35pub mod commit;
36/// Shell-completion emitter (`resq completions <shell>`).
37pub mod completions;
38/// Copyright header management.
39pub mod copyright;
40/// Development server management.
41pub mod dev;
42/// Documentation management and publication.
43pub mod docs;
44/// Service exploration and operations.
45pub mod explore;
46/// Polyglot source formatting (Rust, TS, Python, C++, C#).
47pub mod format;
48/// Canonical git-hook templates embedded for scaffolding and drift detection.
49pub mod hook_templates;
50/// Hooks lifecycle (`resq hooks install/scaffold-local/doctor/update/status`).
51pub mod hooks;
52/// Pre-commit hook logic.
53pub mod pre_commit;
54/// Secret management.
55pub mod secrets;
56/// Version management and changesets.
57pub mod version;