aipack 0.8.24

Command Agent runner to accelerate production coding with genai.
// region:    --- Modules

mod aipack_base_dir;
mod aipack_paths;
mod aipack_wks_dir; // Added new module
mod dir_context_impl;
mod pack_dir;
mod path_consts;
mod path_resolvers;

pub use aipack_base_dir::*;
pub use aipack_paths::*;
pub use aipack_wks_dir::*; // Export new type
pub use dir_context_impl::*;
pub use pack_dir::*;
pub use path_consts::*;
pub use path_resolvers::*; // Export path constants

// endregion: --- Modules