merge: integrate geak_v3_db into dev (MCP + multi-agent coexistence)#18
Merged
Umangatamd merged 10 commits intodevfrom Feb 25, 2026
Merged
merge: integrate geak_v3_db into dev (MCP + multi-agent coexistence)#18Umangatamd merged 10 commits intodevfrom
Umangatamd merged 10 commits intodevfrom
Conversation
Co-authored-by: Cursor <cursoragent@cursor.com>
- Add MCP integration module (mcp_integration/) from geak_v3_db - Add AMD/NVIDIA knowledge base (knowledge-base/) from geak_v3_db - Add RAG scripts and examples from geak_v3_db - Add --mcp / --debug flags to mini.py entry point - Add TeeOutput for console log capture to trajectory - Add langchain optional-dependencies group to pyproject.toml - Apply output truncation logic to all agent config templates (geak_v3_db) - Keep dev multi-agent architecture: ParallelAgent, StrategyInteractiveAgent, UnitTestAgent - Keep dev tools_runtime, save_patch, config_editor, task_parser modules - Merge mkdocs.yml nav: retain all pages from both branches - save.py: use ensure_ascii=False for non-ASCII character support Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
- Add missing geak_v3_db content to README.md: detailed config table (mini_no_temp, mini_reverse_kl), RAG config parameter table, knowledge base document requirements - Rewrite README_zh.md to match README.md structure: add GEAK-v3 intro, multi-agent architecture, parallel optimization, tools, output artifacts Co-authored-by: Cursor <cursoragent@cursor.com>
…llel - Remove separate MCP early-return path in mini.py - MCP environment now flows into the standard ParallelAgent pipeline - env_factory creates MCPEnabledEnvironment for parallel sub-agents when --mcp - MCP prompts (SYSTEM_TEMPLATE, INSTANCE_TEMPLATE) injected into agent config - Fix profiling_tools.py f-string Python 3.10 compatibility (double→single quotes) Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
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.
Background
geak_v3_dbanddevare two branches developed independently by different team members, with no common git ancestor. This PR merges them using--allow-unrelated-historiesand resolves all 60 file conflicts.Changes
--mcpnow flows into the standard ParallelAgent pipeline, enabling--mcpwith--num-parallelfor multi-GPU + RAGMCPEnabledEnvironmentwhen--mcpis setprofiling_tools.pyf-string Python 3.10 compatibility (double→single quotes)