You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(workflow): update step engines and models
Update workflow steps to use 'cursor' engine with 'grok' model for
plan-agent, task-breakdown, code-generation, runtime-prep, task-sanity-check,
and git-commit steps. Change context-manager to use 'ccr' engine.
Remove engine and fallback from plan-agent.
resolveStep('plan-agent',{executeOnce: true,engine: 'codex',notCompletedFallback: 'plan-fallback'}),// Generate comprehensive iterative development plan with architectural artifacts
9
-
resolveStep('task-breakdown',{executeOnce: true,engine: 'codex'}),// Extract and structure tasks from project plan into JSON format
10
-
resolveStep('git-commit',{executeOnce: true,engine: 'cursor'}),// Commit the task breakdown to git
8
+
resolveStep('plan-agent',{executeOnce: true}),// Generate comprehensive iterative development plan with architectural artifacts
9
+
resolveStep('task-breakdown',{executeOnce: true,engine: 'cursor',model: 'grok'}),// Extract and structure tasks from project plan into JSON format
10
+
resolveStep('git-commit',{executeOnce: true,engine: 'cursor',model: 'grok'}),// Commit the task breakdown to git
11
11
resolveUI("⟲ Development Cycle ⟲"),
12
-
resolveStep('context-manager',{engine: 'codex'}),// Gather and prepare relevant context from architecture, plan, and codebase for task execution
13
-
resolveStep('code-generation',{engine: 'claude'}),// Generate code implementation based on task specifications and design artifacts
0 commit comments