resq-cli 0.3.0

Developer CLI for the ResQ autonomous drone platform
Documentation
/*
 * Copyright 2026 ResQ
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

//! CLI commands for the ResQ tool.
//!
//! # Commands
//!
//! - [`audit`] - Dependency + supply-chain audit
//! - [`commit`] - AI-powered commit message generation
//! - [`copyright`] - Check/update copyright headers
//! - [`dev`] - Repo development utilities
//! - [`docs`] - Documentation export + publication
//! - [`explore`] - TUI explorers (launchers)
//! - [`hooks`] - Canonical git-hook lifecycle
//! - [`pre_commit`] - Unified pre-commit checks
//! - [`secrets`] - Secret scanning
//! - [`version`] - Version + changeset management

/// Blockchain event auditing.
pub mod audit;
/// AI-powered commit message generation.
pub mod commit;
/// Shell-completion emitter (`resq completions <shell>`).
pub mod completions;
/// Copyright header management.
pub mod copyright;
/// Development server management.
pub mod dev;
/// Documentation management and publication.
pub mod docs;
/// Service exploration and operations.
pub mod explore;
/// Polyglot source formatting (Rust, TS, Python, C++, C#).
pub mod format;
/// Canonical git-hook templates embedded for scaffolding and drift detection.
pub mod hook_templates;
/// Hooks lifecycle (`resq hooks install/scaffold-local/doctor/update/status`).
pub mod hooks;
/// Pre-commit hook logic.
pub mod pre_commit;
/// Secret management.
pub mod secrets;
/// Version management and changesets.
pub mod version;