oh-my-opencode-slim 0.9.6 → 0.9.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -386,7 +386,7 @@ If any agent fails to respond, check your provider authentication and config fil
386
386
  <p><sub>Every merged contribution leaves a mark on the realm.</sub></p>
387
387
 
388
388
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
389
- [![All Contributors](https://img.shields.io/badge/all_contributors-34-orange.svg?style=flat-square)](#contributors-)
389
+ [![All Contributors](https://img.shields.io/badge/all_contributors-35-orange.svg?style=flat-square)](#contributors-)
390
390
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
391
391
  </div>
392
392
 
@@ -442,6 +442,7 @@ If any agent fails to respond, check your provider authentication and config fil
442
442
  <td align="center" valign="top" width="16.66%"><a href="https://github.com/nyanyani"><img src="https://avatars.githubusercontent.com/u/11475482?v=4?s=100" width="100px;" alt="nyanyani"/><br /><sub><b>nyanyani</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=nyanyani" title="Code">💻</a></td>
443
443
  <td align="center" valign="top" width="16.66%"><a href="https://nettee.io/"><img src="https://avatars.githubusercontent.com/u/3953668?v=4?s=100" width="100px;" alt="nettee"/><br /><sub><b>nettee</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=nettee" title="Code">💻</a></td>
444
444
  <td align="center" valign="top" width="16.66%"><a href="https://github.com/atomlink-ye"><img src="https://avatars.githubusercontent.com/u/48194045?v=4?s=100" width="100px;" alt="Link"/><br /><sub><b>Link</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=atomlink-ye" title="Code">💻</a></td>
445
+ <td align="center" valign="top" width="16.66%"><a href="https://github.com/blaszewski"><img src="https://avatars.githubusercontent.com/u/14119531?v=4?s=100" width="100px;" alt="Bartosz Łaszewski"/><br /><sub><b>Bartosz Łaszewski</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=blaszewski" title="Code">💻</a></td>
445
446
  </tr>
446
447
  </tbody>
447
448
  </table>
package/dist/cli/index.js CHANGED
@@ -240,7 +240,8 @@ var BackgroundTaskConfigSchema = z2.object({
240
240
  var InterviewConfigSchema = z2.object({
241
241
  maxQuestions: z2.number().int().min(1).max(10).default(2),
242
242
  outputFolder: z2.string().min(1).default("interview"),
243
- autoOpenBrowser: z2.boolean().default(true)
243
+ autoOpenBrowser: z2.boolean().default(true),
244
+ port: z2.number().int().min(0).max(65535).default(0)
244
245
  });
245
246
  var TodoContinuationConfigSchema = z2.object({
246
247
  maxContinuations: z2.number().int().min(1).max(50).default(5).describe("Maximum consecutive auto-continuations before stopping to ask user"),
@@ -150,6 +150,7 @@ export declare const InterviewConfigSchema: z.ZodObject<{
150
150
  maxQuestions: z.ZodDefault<z.ZodNumber>;
151
151
  outputFolder: z.ZodDefault<z.ZodString>;
152
152
  autoOpenBrowser: z.ZodDefault<z.ZodBoolean>;
153
+ port: z.ZodDefault<z.ZodNumber>;
153
154
  }, z.core.$strip>;
154
155
  export type InterviewConfig = z.infer<typeof InterviewConfigSchema>;
155
156
  export declare const TodoContinuationConfigSchema: z.ZodObject<{
@@ -282,6 +283,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
282
283
  maxQuestions: z.ZodDefault<z.ZodNumber>;
283
284
  outputFolder: z.ZodDefault<z.ZodString>;
284
285
  autoOpenBrowser: z.ZodDefault<z.ZodBoolean>;
286
+ port: z.ZodDefault<z.ZodNumber>;
285
287
  }, z.core.$strip>>;
286
288
  todoContinuation: z.ZodOptional<z.ZodObject<{
287
289
  maxContinuations: z.ZodDefault<z.ZodNumber>;