ai-dispatch 5.7.0

Multi-AI CLI team orchestrator
1
2
3
4
5
6
7
8
9
10
# ai-dispatch (aid)

## Install

- NEVER cp binary to `/opt/homebrew/bin/` — macOS provenance xattr blocks execution
- `/opt/homebrew/bin/aid` is a symlink to `~/.cargo/bin/aid`
- Install command (MUST strip provenance first, cargo builds under sandbox inherit it):
  ```bash
  xattr -d com.apple.provenance "$CARGO_TARGET_DIR/release/aid" 2>/dev/null; cp "$CARGO_TARGET_DIR/release/aid" ~/.cargo/bin/aid
  ```