()
| 24 | } |
| 25 | |
| 26 | function usage(): never { |
| 27 | console.error( |
| 28 | "usage: bun nudge-root.ts <agent-id>\n" + |
| 29 | " (--message <text> | --message-file <path> | --stdin)\n" + |
| 30 | " [--wait-idle] [--max-wait <seconds>] [--poll-ms <ms>]" |
| 31 | ); |
| 32 | process.exit(2); |
| 33 | } |
| 34 | |
| 35 | interface Args { |
| 36 | agentId: string; |
no outgoing calls
no test coverage detected