Skip to main content

mlua_swarm/lua/
agent_md_loader.rs

1//! Compat shim — the `agent.md` frontmatter loader (`parse` /
2//! `load_file` / `load_dir` / `compute_body_hash` / `LoadError`) moved
3//! to the sibling `mlua-swarm-compile` crate's `agent_md` module (issue
4//! 4c4e3eb8 Phase 2). New code should reach into
5//! `mlua_swarm_compile::agent_md` directly; this module re-exports the
6//! same surface so pre-migration call sites keep compiling.
7
8pub use mlua_swarm_compile::agent_md::{compute_body_hash, load_dir, load_file, parse, LoadError};