| 24 | const OPERATOR_MODE_FLAG = ".orchestrate/operator-mode"; |
| 25 | |
| 26 | export interface SpawnOptions { |
| 27 | file?: string; |
| 28 | name?: string; |
| 29 | type?: string; |
| 30 | goal?: string; |
| 31 | pathsAllowed?: string[]; |
| 32 | pathsForbidden?: string[]; |
| 33 | acceptance?: string[]; |
| 34 | startingRef?: string; |
| 35 | dependsOn?: string[]; |
| 36 | model?: string; |
| 37 | wait?: boolean; |
| 38 | } |
| 39 | |
| 40 | const SLACK_CHANNEL_REQUIRED_MESSAGE = |
| 41 | "set --slack-channel or SLACK_CHANNEL_ID, or unset SLACK_BOT_TOKEN to disable Slack"; |
nothing calls this directly
no outgoing calls
no test coverage detected