Fix Add node sequential placement - #3271
Merged
AbigailDeng merged 6 commits intoAug 6, 2026
Merged
Conversation
AbigailDeng
merged commit Aug 6, 2026
552c2e6
into
feat/2026-08-04_workflow-activity-vnext
13 checks passed
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.
Problem
Workflow Activity vNext called
insertStepByTypewithout an insertion predecessor. Add node therefore appended a disconnected step, left existing adjacent ordering implicit, and surfaced backendimplicit_nextwarnings after serialization.Solution
nextand no branches.nextvalues, branch targets, terminal behavior, server validation findings, backend semantics, graph rendering, and Team Member Workflow Studio unchanged.Impacted paths
apps/aevatar-console-web/src/shared/studio/document.tsapps/aevatar-console-web/src/shared/studio/document.test.tsapps/aevatar-console-web/src/pages/workflow-activity-vnext/hooks/useWorkflowEditor.tsapps/aevatar-console-web/src/pages/workflow-activity-vnext/index.test.tsxapps/aevatar-console-web/docs/superpowers/Verification
Passed:
pnpm --dir apps/aevatar-console-web exec jest \ --runInBand \ --runTestsByPath \ src/shared/studio/document.test.ts \ src/pages/workflow-activity-vnext/index.test.tsxResult: 2 suites passed, 107 tests passed, 0 failures.
Dependency-discovery preflight:
pnpm --dir apps/aevatar-console-web exec jest \ --listTests \ --findRelatedTests \ src/pages/workflow-activity-vnext/hooks/useWorkflowEditor.ts \ src/shared/studio/document.tsResult: selected 8 test files, including task-external Team Member Workflow Studio and Studio domains. The related-test execution was intentionally rejected under
docs/testing-policy.mdfan-out guard; the two changed/directly-related test files above were run explicitly instead.Passed changed-file static checks:
pnpm --dir apps/aevatar-console-web exec biome lint \ src/pages/workflow-activity-vnext/hooks/useWorkflowEditor.ts \ src/pages/workflow-activity-vnext/index.test.tsx \ src/shared/studio/document.test.ts \ src/shared/studio/document.tsPassed repository guards:
Full frontend suite/build: deferred to GitHub CI by personal local workflow policy.
Local full TypeScript checking was also skipped because no reliable affected-only project typecheck is available; GitHub CI owns full type verification.
Design baseline