Paython mcp#32
Merged
lorencDedaj merged 2 commits intomainfrom Dec 2, 2025
Merged
Conversation
…ion, and GitHub commit support
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
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.
📄 Pull Request Description
✅ Restored Pipeline Session Flow + Fixed OAuth + Normalized MCP Integration
This PR resolves multiple backend issues and fully restores the AutoDeploy pipeline workflow end-to-end.
Key Fixes & Improvements
🔧 1. Repaired pipelineSessions router after merge divergence
• Restored missing pipelineSessionsRouter import & registration.
• Rebuilt the entire step-by-step session flow:
• create session
• select repo
• select template
• generate yaml
• edit yaml
• commit
🔐 2. Repaired Supabase authentication + requireSession
• Fixed DB connection config after Supabase project pause/resume.
• Patched error handling around req.supabase and req.user.
• Ensured session cookies were passed into MCP tools (YAML generator + commit).
🤖 3. Normalized MCP commit response
• Unified commit result parsing:
• Support for both old and new MCP response shapes.
• Now consistently extracts commit_sha and commit_url.
🧠 4. YAML generation stability improvements
• Ensured wizardAgent returns deterministic YAML.
• Added debug logging for YAML success/failure.
📝 5. Full pipeline session persistence
• YAML stored in draft_yaml, then final_yaml.
• All pipeline events logged in pipeline_events.
• New pipeline version inserted into pipeline_versions.
Result
The entire pipeline flow is now functional, deterministic, and production-ready, including:
Create session → Select repo → Select template → Generate YAML → CommitAll Postman collection steps validated end-to-end