🍋 deslopping: consolidate agent architecture (5+3 -> 2 agents + Mastra Workflow)#15
Draft
Spirizeon wants to merge 1 commit into
Draft
🍋 deslopping: consolidate agent architecture (5+3 -> 2 agents + Mastra Workflow)#15Spirizeon wants to merge 1 commit into
Spirizeon wants to merge 1 commit into
Conversation
- Merged research-agent, testGeneratorAgent, integrationGeneratorAgent, e2eGeneratorAgent, executorAgent into single researchTestAgent with read/write/execute tools - Created testFixWorkflow using Mastra createWorkflow: discoverFiles, researchAndGenerate, .dountil(checkAndFix), createPR - Deleted 6 unused agent files and duplicate runTestsTool - Simplified src/index.ts from 575 to 40 lines - Consolidated webhook-server to single /webhook/generate-and-test endpoint - Updated all docs and tests
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
| const result = await workflow.start({ | ||
| inputData: { | ||
| repoPath: workspace, | ||
| files: files ?? undefined, |
| githubSha: commitSha, | ||
| }, | ||
| }); | ||
|
|
| ) | ||
| .slice(0, 3); | ||
| } | ||
| app.post("/webhook/generate-and-test", generateAndTestHandler); |
| .slice(0, 3); | ||
| } | ||
| app.post("/webhook/generate-and-test", generateAndTestHandler); | ||
| app.post("/webhook/test-and-fix", generateAndTestHandler); |
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.
Summary
Consolidated 8 agents (5 active + 3 unused) down to 2 agents + 1 Mastra Workflow using Mastra AI's Workflow API.
Architecture Changes
What's New
Files Deleted (7)
Files Created (1)
Context Flow (unchanged)
All agent communication still flows through Redis (code_analysis:, test_results:, unit_tests:, code_patches:). The researchTestAgent stores everything to Redis; the editorAgent reads failures from Redis and fixes source files.
PR Checklist