//! Task template system for ccswarm
//!
//! This module provides a comprehensive template system that allows users to:
//! - Create and manage task templates
//! - Use predefined templates for common development tasks
//! - Store and organize custom templates
//! - Apply templates with variable substitution
//! - Discover and list available templates
// Re-export commonly used types
pub use TemplateManager;
pub use PredefinedTemplates;
pub use FileSystemTemplateStorage;
pub use ;
pub use AppliedTemplate;