Function
opts
(overrides: Partial<Parameters<typeof runPrompt>[0]> = {})
Source from the content-addressed store, hash-verified
| 127 | })); |
| 128 | |
| 129 | function opts(overrides: Partial<Parameters<typeof runPrompt>[0]> = {}) { |
| 130 | return { |
| 131 | session: undefined, |
| 132 | continue: false, |
| 133 | yolo: false, |
| 134 | auto: false, |
| 135 | plan: false, |
| 136 | model: undefined, |
| 137 | outputFormat: undefined, |
| 138 | prompt: 'say hello', |
| 139 | skillsDirs: [], |
| 140 | addDirs: [], |
| 141 | ...overrides, |
| 142 | }; |
| 143 | } |
| 144 | |
| 145 | function writer(columns?: number) { |
| 146 | let text = ''; |
Tested by
no test coverage detected