* Check if --agent-teams flag is provided via CLI. * Checks process.argv directly to avoid import cycles with bootstrap/state. * Note: The flag is only shown in help for ant users, but if external users * pass it anyway, it will work (subject to the killswitch).
()
| 8 | * pass it anyway, it will work (subject to the killswitch). |
| 9 | */ |
| 10 | function isAgentTeamsFlagSet(): boolean { |
| 11 | return process.argv.includes('--agent-teams') |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Centralized runtime check for agent teams/teammate features. |
no outgoing calls
no test coverage detected