(input: string | PromptInput)
| 102 | } |
| 103 | |
| 104 | async prompt(input: string | PromptInput): Promise<void> { |
| 105 | this.ensureOpen(); |
| 106 | await this.rpc.prompt({ |
| 107 | sessionId: this.id, |
| 108 | input: normalizePromptInput(input), |
| 109 | }); |
| 110 | } |
| 111 | |
| 112 | /** Execute a user-initiated `!` shell command (silent — does not prompt the |
| 113 | * model). Resolves with the command's stdout/stderr for immediate display. |
nothing calls this directly
no test coverage detected