feat: wire AI-generated pipelines into YAML preview and wizard context#40
Merged
williams21v merged 2 commits intomainfrom Dec 16, 2025
Merged
feat: wire AI-generated pipelines into YAML preview and wizard context#40williams21v merged 2 commits intomainfrom
williams21v merged 2 commits intomainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR connects the AI YAML wizard to the pipeline store so wizard-generated workflows appear immediately in the YAML preview. It also introduces lightweight wizard context state (via Zustand) to improve repo-aware messaging and reduce confusing or generic responses.
What changed
Frontend
• Added a dedicated useWizardStore to persist AI wizard context (repo, pipeline info, last tool called)
• Wired wizard-generated YAML into usePipelineStore via hydrateFromWizard
• Ensured YAML preview and manual edit mode reflect AI-generated pipelines
• Improved wizard responses to be context-aware (e.g. referencing the active repo)
• Preserved clean separation between chat UI, wizard context, and pipeline state
Backend
• Updated MCP tools (repo_reader, pipeline_generator, oidc_adapter) to support improved data flow and context handling for the wizard
• Ensured pipeline generator returns usable YAML for frontend hydration
Current behavior
• AI-generated pipelines now immediately appear in the GitHub Actions YAML preview
• Users can edit the generated YAML manually or proceed toward opening a PR
• Wizard messaging reflects the selected repo instead of falling back to generic prompts
Known limitations / follow-ups
• Open PR with YAML is currently blocked when the backend PR tool is not implemented
• Future work will:
• Add explicit repo precedence when users mention a repo in chat
• Wire the PR creation MCP tool
• Enhance wizard guidance based on existing pipeline state