pub mod loader;
pub mod types;
pub use loader::{
AI_MD_FILENAME, AI_MD_LOCAL_FILENAME, CLAUDE_LOCAL_MD_FILENAME, CLAUDE_MD_FILENAME,
PROJECT_RULES_DIR, get_ai_md_files, load_ai_md, process_ai_md_file,
};
pub use types::{AiMdContent, AiMdFile, AiMdType};
pub const AI_MD_INSTRUCTION_PROMPT: &str = "Codebase and user instructions are shown below. Be sure to adhere to these instructions. IMPORTANT: These instructions OVERRIDE any default behavior and you MUST follow them exactly as written.";
pub const MAX_AI_MD_CHARACTER_COUNT: usize = 40000;