Closed
Conversation
…am-first-clean Feat/2026 04 09 console web team first clean
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## dev #167 +/- ##
==========================================
+ Coverage 81.65% 81.67% +0.02%
==========================================
Files 756 739 -17
Lines 48362 46991 -1371
Branches 6407 6234 -173
==========================================
- Hits 39491 38382 -1109
+ Misses 6106 5917 -189
+ Partials 2765 2692 -73
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 33 files with indirect coverage changes 🚀 New features to boost your workflow:
|
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
This PR tightens the end-to-end Teams + Studio workflow experience in Console Web, focusing on real usage issues found while dogfooding the flow.
It mainly improves:
What changed
1. Improved Teams + Studio + Runs navigation flow
returnTopropagation so the Runs page can navigate back to the originating Studio route or the team advanced tab correctly2. Fixed Ask AI workflow generation failures
llm,chat, andtask, mapping them tollm_callname3. Fixed workflow execution and result presentation issues
Last outputexisted butMessagesstill showed as empty4. Fixed Studio / Invoke Lab layout and scrolling issues
5. Added stronger local persistence and workflow recovery support
PersistentLocalruntime profile using Orleans + Garnet for local persistent actor stateImpacted areas
Validation
Executed:
pnpm exec tsc --noEmitpnpm exec jest src/pages/studio/components/StudioShell.test.tsx src/pages/studio/components/StudioWorkflowsPage.test.tsx --runInBand --watchman=false~/.dotnet/dotnet test test/Aevatar.Studio.Tests/Aevatar.Studio.Tests.csproj --filter "FullyQualifiedName~WorkflowCompatibilityProfileTests"~/.dotnet/dotnet test test/Aevatar.Tools.Cli.Tests/Aevatar.Tools.Cli.Tests.csproj --filter "FullyQualifiedName~WorkflowGenerateOrchestratorTests|FullyQualifiedName~AppScopedWorkflowServiceTests"~/.dotnet/dotnet test test/Aevatar.Foundation.Runtime.Hosting.Tests/Aevatar.Foundation.Runtime.Hosting.Tests.csproj --filter "FullyQualifiedName~OrleansActorRuntimeForwardingTests"Manually verified flows:
Docs
PersistentLocallocal runtime configurationNotes
There are still some outdated assertions in
apps/aevatar-console-web/src/pages/runs/index.test.tsxthat do not match the current UI. Those are pre-existing test expectation issues and were not treated as blockers for this PR.