mirror of
https://github.com/msitarzewski/agency-agents.git
synced 2026-07-11 10:43:41 +03:00
3293712e41
The help text advertised `--tool <a,b>` (a comma list), but --tool took a single value and validated it whole, so `--tool claude-code,cursor` failed with "Unknown tool 'claude-code,cursor'". --division and --agent already split on commas; --tool didn't (#671). Split --tool on commas, trim each entry, and validate each against ALL_TOOLS (mirrors --division), so a bad entry still errors clearly by name. Single-tool use is unchanged. Verified: --tool claude-code,cursor installs both; "claude-code, cursor" (with spaces) works; --tool claude-code,nope errors on 'nope'; --tool cursor still works. Fixes #671 Claude-Session: https://claude.ai/code/session_01WKnDRWM4izsB8WAXKszhsq Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>