feat: Dev merge to Main and introducing V2#205
Merged
Roopan-Microsoft merged 100 commits intomainfrom Apr 24, 2026
Merged
Conversation
…ries and improve orchestrator configurations
…gress tracking; add comprehensive tests for termination logic
- Updated various files to enhance code formatting by aligning dictionary entries and improving whitespace usage. - Refactored the `CosmosWorkflowCheckpoint` and `CosmosWorkflowCheckpointRepository` classes for better clarity. - Improved the readability of list comprehensions and dictionary appends across multiple modules. - Ensured consistent use of inline comments and docstrings where applicable. - Enhanced the structure of error handling and logging in the `TelemetryManager` and `LoggingUtils` classes. - Made minor adjustments to test cases for better clarity and maintainability.
…gs and Pydantic models; improve orchestration logic
… clarity and maintainability
…ception handling and telemetry updates; add tests for conversion report quality gates
… the processor steps - Changed output folder naming from `/output` to `/converted` in various orchestration and prompt files. - Updated timestamp handling in reports to use a consistent UTC format with a helper function. (mcp tool to local function) - Enhanced routing instruction format for telemetry in prompt files to include phase labels. - Added utility functions for generating current timestamps in UTC. - Adjusted test cases to reflect changes in output folder structure and timestamp handling.
…nhance prompt coordinator with detailed RAI content policy
…put folder rename, and test reorganization
- Add missing copyright headers (6 files) - Add missing module docstrings (16 files) - Remove banner/section-divider comments (main.py, main_service.py, queue_service.py) - Remove redundant inline comments (main.py, prompt_util.py, console_util.py) - Remove commented-out code (agent_framework_helper.py, groupchat_orchestrator.py, orchestrator_base.py, credential_util.py) - Remove placeholder comments (main.py, main_service.py, prompt_util.py)
…lint fixes - Update AZURE_OPENAI_API_VERSION from 2025-01-01-preview to 2025-03-01-preview in both main.bicep and main_custom.bicep - Fix ruff lint errors in backend-api (None comparison, unused variables) - Apply ruff formatting across processor and backend-api source files
- Fix missing 'import re' in orchestrator_base.py causing silent NameError - Update regex to match new instruction format 'Phase X : Phase Title - <what to do>' - Update all 4 coordinator prompts with consistent phase format in instruction field - Fix progress bar using apiData.step instead of apiData.phase (sub-phase overwrites broke indexOf) - Fix redundant phase labels: show step name as category, phase as sub-detail - Redesign Current Activity section with multi-line agent cards - Show detailed action labels (Thinking, Speaking, Invoking Tool, Analyzing) - Add step-level elapsed timer from step_timings - Add update_phase() to TelemetryManager for sub-phase UI updates - Fix step timing seed to always initialize on step start
fix: progress modal phase tracking and UI improvements
Frontend: - Add Migration Overview, Step Timeline, Agent Participation to summary page - Show Coordinator routing target and instruction in progress modal - Fix YAML step name capitalization - Show phase name in modal title instead of step name - Reverse Recent Activity order (latest first) - Move Recent Activity title outside scroll box - Hide Coordinator from Agent Participation (system agent) Agent Prompts: - Add ANALYSIS SIGN-OFF SCOPE to all 8 analysis agent prompts - Add DESIGN SIGN-OFF SCOPE to all 8 design agent prompts - Prevent analysis agents from FAIL on design-time concerns - Prevent design agents from FAIL on stakeholder-dependent actions - Scope sign-offs to step-appropriate criteria only
- Add last_full_message to agent_activities render output - Use full message (not truncated preview) for Coordinator JSON parsing - Fallback to regex extraction if JSON parse fails
chore: add v2 tag
fix: removed the bicep parameter
Co-authored-by: Copilot <copilot@github.com>
chore: pin processor dependencies
Co-authored-by: Copilot <copilot@github.com>
feat: UI integration for processor apis
feat: introduce v2
| ) | ||
|
|
||
| return "\n".join(error_report) | ||
| return f"Error converting timezone: {str(e)}" |
| [PROCESSING] EXAMPLE WORKING CALLS: | ||
| calculate_time_difference('2023-12-25 10:00:00', '2023-12-25 15:30:00', 'hours') | ||
| calculate_time_difference('2023-12-25', '2023-12-26', 'days')""" | ||
| return f"Error calculating time difference: {str(e)}" |
| task_param=task_param, | ||
| ) | ||
| finally: | ||
| migration_processor = None |
|
🎉 This PR is included in version 1.1.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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.
Purpose
This pull request introduces several updates to improve documentation, CI/CD workflows, and development tooling for the Container Migration Solution Accelerator. The most significant changes include a comprehensive refresh of the
README.mdto reflect the latest architecture and technology stack, updates to Docker image tagging in deployment workflows, the addition of a backend test workflow with coverage reporting, and enhancements to ignore and linting configurations.Documentation and Architecture Updates:
README.mdto reference Azure OpenAI GPT-5.1 and Microsoft Agent Framework instead of previous models and frameworks, expanded supported Kubernetes platforms, and added detailed mermaid diagrams for both agentic and deployment architectures. Also updated prerequisites, model access requirements, and clarified the migration scenario. [1] [2] [3] [4] [5] [6] [7]CI/CD and Workflow Enhancements:
.github/workflows/docker-build-and-push.ymland.github/workflows/job-deploy.ymlto uselatest_v2for the main branch, ensuring clearer versioning and deployment consistency. [1] [2].github/workflows/test.ymlto enable automated backend Python tests with coverage reporting and PR coverage comments, improving code quality and visibility.Development Tooling and Configuration:
.vscode/settings.jsonto streamline local development with auto-approved terminal commands for linting and code checks..flake8configuration to ignore E704 and improved exclusion patterns for more consistent linting..dockerignoreto the project root, adding more patterns to prevent unnecessary files from being included in Docker builds.Does this introduce a breaking change?
Golden Path Validation
Deployment Validation
What to Check
Verify that the following are valid
Other Information