feat: implement MACP phase 1 core protocol

This commit is contained in:
Jarvis
2026-03-27 18:39:57 -05:00
parent 24496cea01
commit 7ef49a33d8
19 changed files with 1546 additions and 48 deletions

View File

@@ -0,0 +1,15 @@
"""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",
]