//! ALB-027: Task resource handler.
//!
//! Runs an arbitrary command, tracks exit code, hashes output artifacts
//! for idempotency, supports completion_check and timeout.
//!
//! Split into a module directory (Refs #390): closing the nested-shell hole
//! took `task.rs` past the repo's 500-line file-health limit. The split is
//! mechanical — every function kept its body, its name and its visibility, and
//! `pub use` below preserves the flat `resources::task::*` surface the tests
//! and `core::executor` already import.
pub use apply_script;
pub use check_script;
/// Only the in-crate test module reaches for this one; `check` calls it
/// directly. Re-exporting it unconditionally would be an unused import in a
/// non-test build, and this crate builds with `-D warnings`.
pub use extract_absolute_binary;
pub use heredoc_delimiter;
pub use NOT_CONVERGED_MARKER;
pub use ;