Conversation
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.
This PR ships the full v2 organizer rewrite. The extension now uses a pure-function layout framework centered on a Sugiyama-style flow algorithm instead of the older ad hoc pipeline, with hardened runtime modeling for ComfyUI graphs, groups, nested groups, selected-group organize behavior, subgraph input/output nodes, and token-aware layout. It also adds the user-facing follow-up work from the v2 line, including the QoL settings panel, configurable spacing, context-aware
Shift+O, fit-to-view behavior, and the runtime/layout fixes needed to make those behaviors reliable in real ComfyUI sessions.The testing and release story is also substantially upgraded. The branch adds broad unit coverage for the framework and adapter layer, property-based invariant tests, Playwright E2E coverage against a pinned ComfyUI checkout, visual-regression coverage for real workflows, and CI/publish workflow updates so that E2E coverage runs in automation. The latest follow-up change removes the large git-tracked captured upstream workflow corpus and replaces it with runtime discovery of installed templates from the pinned
comfyui-workflow-templatespackage via the Python API, deriving the exact package version from the pinned ComfyUI checkout'srequirements.txtso the broad upstream workflow suite stays deterministic without freezing hundreds of JSON fixtures in this repo.Verification used on the equivalent
v2tree before opening this PR:pnpm typecheck,pnpm test,pnpm build,pnpm setup:e2e, andpnpm test:e2e.