git-coco 0.30.0 → 0.31.1

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/dist/index.d.ts CHANGED
@@ -177,6 +177,18 @@ type BaseConfig = {
177
177
  * @default true
178
178
  */
179
179
  includeBranchName?: boolean;
180
+ /**
181
+ * The AI CLI tool to use for auto-fixing review issues.
182
+ * Must match a registered adapter key (e.g. "codex", "claude", "gemini").
183
+ * When unset, the auto-fix action is disabled.
184
+ */
185
+ autoFixTool?: string;
186
+ /**
187
+ * Additional key-value flags passed to the auto-fix CLI tool.
188
+ * Keys are flag names (without leading dashes); values are flag values.
189
+ * @example { "model": "o4-mini", "approval-mode": "auto-edit" }
190
+ */
191
+ autoFixToolOptions?: Record<string, string>;
180
192
  };
181
193
  type ConfigWithServiceObject = BaseConfig & Partial<BaseCommandOptions> & {
182
194
  service: LLMService;