This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bootstrap/tools/orchestrator-matrix/dispatcher/__init__.py

16 lines
419 B
Python

"""MACP dispatcher helpers for orchestrator-matrix."""
from .macp_dispatcher import build_dispatch_command
from .macp_dispatcher import cleanup_worktree
from .macp_dispatcher import collect_result
from .macp_dispatcher import dispatch_task
from .macp_dispatcher import setup_worktree
__all__ = [
"build_dispatch_command",
"cleanup_worktree",
"collect_result",
"dispatch_task",
"setup_worktree",
]