feat(mma): Complete Visual DAG implementation, fix link creation/deletion, and sync docs

This commit is contained in:
2026-03-06 19:13:20 -05:00
parent 1c977d25d5
commit 661566573c
11 changed files with 260 additions and 36 deletions

View File

@@ -324,9 +324,10 @@ def run(config: dict[str, Any]) -> tuple[str, Path, list[dict[str, Any]]]:
return markdown, output_file, file_items
def main() -> None:
# Load global config to find active project
config_path = Path("config.toml")
# Load global config to find active project
config_path = Path(os.environ.get("SLOP_CONFIG", "config.toml"))
if not config_path.exists():
print("config.toml not found.")
return
with open(config_path, "rb") as f: