@litmers/cursorflow-orchestrator 0.1.14 → 0.1.15

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.
@@ -25,6 +25,8 @@ export interface CursorFlowConfig {
25
25
  worktreePrefix: string;
26
26
  maxConcurrentLanes: number;
27
27
  projectRoot: string;
28
+ /** Output format for cursor-agent (default: 'stream-json') */
29
+ agentOutputFormat: 'stream-json' | 'json' | 'plain';
28
30
  webhooks?: WebhookConfig[];
29
31
  /** Enhanced logging configuration */
30
32
  enhancedLogging?: Partial<EnhancedLogConfig>;
@@ -198,6 +200,8 @@ export interface RunnerConfig {
198
200
  baseBranch?: string;
199
201
  model?: string;
200
202
  dependencyPolicy: DependencyPolicy;
203
+ /** Output format for cursor-agent (default: 'stream-json') */
204
+ agentOutputFormat?: 'stream-json' | 'json' | 'plain';
201
205
  reviewModel?: string;
202
206
  maxReviewIterations?: number;
203
207
  acceptanceCriteria?: string[];
@@ -209,6 +213,12 @@ export interface RunnerConfig {
209
213
  * Default: false
210
214
  */
211
215
  enableIntervention?: boolean;
216
+ /**
217
+ * Disable Git operations (worktree, branch, push, commit).
218
+ * Useful for testing or environments without Git remote.
219
+ * Default: false
220
+ */
221
+ noGit?: boolean;
212
222
  }
213
223
 
214
224
  export interface DependencyRequestPlan {