Skip to content

fix: limit workflow models to metadata enrichment#12990

Open
jaeone94 wants to merge 2 commits into
mainfrom
jaeone/models-metadata-only
Open

fix: limit workflow models to metadata enrichment#12990
jaeone94 wants to merge 2 commits into
mainfrom
jaeone/models-metadata-only

Conversation

@jaeone94

@jaeone94 jaeone94 commented Jun 19, 2026

Copy link
Copy Markdown
Collaborator

Summary

This PR intentionally narrows workflow-embedded model metadata handling so root-level models[] and node-level embedded model metadata can enrich existing missing-model candidates, but can no longer create new candidates by themselves.

Why this PR exists

ADR 0009, Subgraph promoted widgets use linked inputs, changes promoted value ownership for subgraphs. That design was implemented by #12197, Subgraph Link Only Promotion (ADR 0009).

Under ADR 0009, a promoted widget is represented as a standard linked SubgraphInput on the host SubgraphNode. The host boundary owns the promoted value identity through the host node locator plus SubgraphInput.name. The interior source widget remains the provider of schema, type, options, tooltip, defaults, diagnostics, and migration metadata, but it is not the persistence owner of the promoted value.

This PR is a preparatory cleanup discovered while working on the missing model detection follow-up required by that ADR 0009 / #12197 behavior. The follow-up needs missing model detection to respect the new subgraph promoted-widget ownership model. While reviewing that path, we found that the existing embedded model metadata fallback in enrichWithEmbeddedMetadata was doing more than metadata enrichment.

The important finding was that this fallback was not just attaching metadata to candidates that had already been detected from live node widgets. It could also synthesize brand-new MissingModelCandidate entries from workflow JSON metadata, including root-level models[] entries, when no live candidate existed.

That behavior is inaccurate for the missing model system for two reasons.

First, the normal missing model lifecycle is anchored to a real node/widget binding. A candidate found from a COMBO or asset widget has a concrete nodeId + widgetName reference. That reference is what lets the UI surface the error, cache it as a pending warning, and later clear or resolve it when the underlying node/widget value is fixed. A root-level models[] entry does not reliably provide that anchor. If metadata-only fallback creates a candidate without a real live widget reference, the resulting error can be detected but cannot reliably travel through the existing clearing path. In practice, that can become an effectively unremovable missing model warning unless the user downloads exactly the same model referenced by the stale metadata.

Second, a missing model error is meant to mean that a model-selecting widget on an active node references a value that is not available. Workflow JSON metadata by itself is not the same source of truth. If a model only appears in root workflow metadata, or appears in node metadata that is not represented by an active COMBO or asset widget candidate, that is a different kind of state from the existing missing model error model. Treating that metadata as a candidate creates a second, less reliable detector that is not aligned with the scan/clear lifecycle.

This is especially important before the ADR 0009 missing-model follow-up. With linked-input promoted widgets, the host promoted value is the value that matters. The interior source widget may still carry stale or default metadata, and it must not become a second source of truth for missing model errors. A detection path that can create candidates directly from workflow metadata would make it harder to reason about which value actually produced the warning.

For those reasons, this PR removes metadata-only candidate synthesis and keeps embedded metadata in the role it can perform safely: metadata enrichment. If the live widget/asset scan produces a candidate, embedded metadata may fill in directory, url, hash, and hashType. If no live candidate exists, the metadata is not enough to create a missing model warning.

This PR is intended to land before the child PR that updates runtime missing model detection for ADR 0009 linked-input promoted widgets.

Changes

  • What: Restrict enrichWithEmbeddedMetadata to enriching existing candidates instead of creating fallback candidates from unmatched root models[] or embedded model metadata.
  • What: Remove the now-unused installed-model check callback and asset-support callback from enrichWithEmbeddedMetadata.
  • What: Remove the now-unnecessary modelStore.loadModelFolders() path from the missing model pipeline, since embedded metadata no longer performs installed-model fallback detection.
  • What: Remove dead source-tracking metadata (EmbeddedModelWithSource, source node/widget fields, and widget-name lookup) that only existed to support metadata-only synthesis.
  • What: Update missing model tests so they assert the new contract: metadata enriches live candidates, but does not create candidates without a live scan result.
  • What: Delete obsolete fixtures that only covered the removed metadata-only synthesis path.
  • Breaking: None expected. This is an intentional narrowing of an inaccurate fallback detector, not a public API change.
  • Dependencies: None.

Review Focus

Please focus on whether the candidate lifecycle now has a single source of truth: live COMBO/asset widget scanning creates candidates, while workflow metadata only enriches those candidates.

The intended behavioral change is that a model present only in workflow-level metadata, with no active node widget candidate referencing it, no longer appears as a missing model. This avoids surfacing warnings that cannot be cleared through the normal nodeId + widgetName path.

The expected retained behavior is that active widget-referenced missing models are still detected by scanAllModelCandidates, and metadata from root models[] or node properties.models still supplies download-related fields for those live candidates.

Screenshots (if applicable)

Not applicable. This is a detection/pipeline behavior change covered by unit tests.

Validation

  • pnpm test:unit src/platform/missingModel/missingModelScan.test.ts src/platform/missingModel/missingModelPipeline.test.ts
  • pnpm exec eslint src/platform/missingModel/missingModelScan.ts src/platform/missingModel/missingModelScan.test.ts src/platform/missingModel/missingModelPipeline.ts src/platform/missingModel/missingModelPipeline.test.ts src/platform/missingModel/types.ts
  • pnpm exec oxfmt --check src/platform/missingModel/missingModelScan.ts src/platform/missingModel/missingModelScan.test.ts src/platform/missingModel/missingModelPipeline.ts src/platform/missingModel/missingModelPipeline.test.ts src/platform/missingModel/types.ts
  • pnpm typecheck
  • pre-push hook: knip --cache

@coderabbitai

coderabbitai Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: 793104e1-d72c-4a7c-8b66-add2bd2f30c1

📥 Commits

Reviewing files that changed from the base of the PR and between e452895 and 490cfd7.

📒 Files selected for processing (9)
  • browser_tests/fixtures/helpers/WorkflowHelper.ts
  • browser_tests/tests/propertiesPanel/errorsTabMissingModels.spec.ts
  • src/platform/missingModel/__fixtures__/activeSubgraphUnmatchedModel.json
  • src/platform/missingModel/__fixtures__/bypassedSubgraphUnmatchedModel.json
  • src/platform/missingModel/missingModelPipeline.test.ts
  • src/platform/missingModel/missingModelPipeline.ts
  • src/platform/missingModel/missingModelScan.test.ts
  • src/platform/missingModel/missingModelScan.ts
  • src/platform/missingModel/types.ts
💤 Files with no reviewable changes (2)
  • src/platform/missingModel/fixtures/activeSubgraphUnmatchedModel.json
  • src/platform/missingModel/fixtures/bypassedSubgraphUnmatchedModel.json
🚧 Files skipped from review as they are similar to previous changes (5)
  • src/platform/missingModel/missingModelPipeline.ts
  • src/platform/missingModel/types.ts
  • src/platform/missingModel/missingModelPipeline.test.ts
  • src/platform/missingModel/missingModelScan.ts
  • src/platform/missingModel/missingModelScan.test.ts

📝 Walkthrough

Walkthrough

enrichWithEmbeddedMetadata is simplified from an async function with checkModelInstalled/isAssetSupported parameters to a synchronous (candidates, graphData) function. The EmbeddedModelWithSource type is removed, collectEmbeddedModels now returns plain ModelFile[] filtered by an isInactiveMode helper, and missingModelPipeline drops the useModelStore dependency. Tests and subgraph fixtures are updated to match, and browser test imports are realigned.

Changes

Missing Model Enrichment Simplification

Layer / File(s) Summary
Remove EmbeddedModelWithSource type
src/platform/missingModel/types.ts, src/platform/missingModel/missingModelScan.ts
Removes the EmbeddedModelWithSource interface from types.ts, drops ModelFile import from types.ts, and removes the now-unused EmbeddedModelWithSource import from missingModelScan.ts.
Refactor enrichWithEmbeddedMetadata to sync
src/platform/missingModel/missingModelScan.ts
Converts enrichWithEmbeddedMetadata from async with three/four parameters to a sync two-parameter function. Adds isInactiveMode helper to centralize NEVER/BYPASS mode checks. Replaces source-aware deduplication with plain ModelFile[]. Rewrites enrichment loop to match candidates by exact name+directory then fallback name, filling missing directory, url, hash, and hashType. Simplifies collectEmbeddedModels to push raw ModelFile entries, append graphData.models, and filter by isNodeAndAncestorsActive.
Pipeline: remove model-store loading
src/platform/missingModel/missingModelPipeline.ts
Removes useModelStore import and the await loadModelFolders() block from runMissingModelPipeline, replacing the async enrichment call with a direct synchronous enrichWithEmbeddedMetadata(candidates, graphData) call.
Pipeline tests: remove modelStore mock
src/platform/missingModel/missingModelPipeline.test.ts
Removes modelStore mock handles and beforeEach initialization; removes vi.mock for modelStore; updates enrichWithEmbeddedMetadata mock wiring to invoke with only (candidates, graphData); adjusts all call assertions to remove extra trailing arguments.
Scan tests: align to sync signature
src/platform/missingModel/missingModelScan.test.ts
Removes fixture imports for activeSubgraphUnmatchedModel and bypassedSubgraphUnmatchedModel; rewrites all enrichWithEmbeddedMetadata test cases to use the synchronous two-argument call without async/await. Updates OSS-path tests to expect no enrichment from empty candidates. Refactors OSS dialog filtering test to filter by isMissing === true && url. Adjusts all enrichment assertions to check synchronized field outputs (url, directory, hash, hashType, isMissing shape).
Browser test updates
browser_tests/fixtures/helpers/WorkflowHelper.ts, browser_tests/tests/propertiesPanel/errorsTabMissingModels.spec.ts
Updates WorkflowHelper type import source for AppMode from @/composables/useAppMode to @/utils/appMode; simplifies missing model refresh test to remove /experiment/models network wait and uses FAKE_MODEL_NAME constant for the mocked checkpoint name.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Poem

🐇 Hoppity-hop, I trimmed the queue,
No async awaits, just sync will do!
The model store check? Gone with a snip,
Two params only on this lean little trip.
The candidates flow, clean and bright—
This rabbit cleaned up the code just right! ✨

🚥 Pre-merge checks | ✅ 6 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 11.11% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (6 passed)
Check name Status Explanation
Title check ✅ Passed The title 'fix: limit workflow models to metadata enrichment' accurately reflects the main change: restricting embedded metadata to enriching existing candidates rather than creating new ones.
Description check ✅ Passed The PR description comprehensively covers all required sections: a clear summary, detailed changes with 'What' entries and explicit notes on breaking changes (none) and dependencies (none), review focus guidance, and validation steps.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
End-To-End Regression Coverage For Fixes ✅ Passed PR changes src/ files (missingModel pipeline) and includes browser_tests/ updates (errorsTabMissingModels.spec.ts test alignment), satisfying condition 2 requirement; additionally, no bug-fix langu...
Adr Compliance For Entity/Litegraph Changes ✅ Passed Check applies only to changes in src/lib/litegraph/, src/ecs/, or graph entity-related files. This PR modifies src/platform/missingModel/ and browser_tests/ only—unrelated to litegraph, ECS, or gra...

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch jaeone/models-metadata-only

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions

github-actions Bot commented Jun 19, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 06/19/2026, 08:34:22 AM UTC

Links

🎭 Playwright: ❌ 1665 passed, 1 failed · 3 flaky

❌ Failed Tests

📊 Browser Reports
  • chromium: View Report (✅ 1644 / ❌ 1 / ⚠️ 3 / ⏭️ 5)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 18 / ❌ 0 / ⚠️ 0 / ⏭️ 0)

📦 Bundle: 7.45 MB gzip 🟢 -705 B

Details

Summary

  • Raw size: 31.3 MB baseline 31.3 MB — 🟢 -2.75 kB
  • Gzip: 7.45 MB baseline 7.45 MB — 🟢 -705 B
  • Brotli: 5.1 MB baseline 5.1 MB — 🟢 -636 B
  • Bundles: 280 current • 280 baseline • 126 added / 126 removed

Category Glance
Utilities & Hooks 🟢 -2.75 kB (3.32 MB) · Vendor & Third-Party ⚪ 0 B (15.3 MB) · Other ⚪ 0 B (10.4 MB) · Graph Workspace ⚪ 0 B (1.25 MB) · Panels & Settings ⚪ 0 B (525 kB) · Data & Services ⚪ 0 B (266 kB) · + 5 more

App Entry Points — 46.7 kB (baseline 46.7 kB) • ⚪ 0 B

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-BhXFWVpi.js (new) 46.7 kB 🔴 +46.7 kB 🔴 +13.7 kB 🔴 +11.9 kB
assets/index-BQDF3mft.js (removed) 46.7 kB 🟢 -46.7 kB 🟢 -13.7 kB 🟢 -11.8 kB

Status: 1 added / 1 removed

Graph Workspace — 1.25 MB (baseline 1.25 MB) • ⚪ 0 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-CONKEBt9.js (removed) 1.25 MB 🟢 -1.25 MB 🟢 -266 kB 🟢 -200 kB
assets/GraphView-PhRQsfEU.js (new) 1.25 MB 🔴 +1.25 MB 🔴 +266 kB 🔴 +201 kB

Status: 1 added / 1 removed

Views & Navigation — 95.3 kB (baseline 95.3 kB) • ⚪ 0 B

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-B6BsnpYa.js (removed) 19.5 kB 🟢 -19.5 kB 🟢 -5.06 kB 🟢 -4.48 kB
assets/CloudSurveyView-CL7Hf_5A.js (new) 19.5 kB 🔴 +19.5 kB 🔴 +5.06 kB 🔴 +4.48 kB
assets/CloudLoginView-B4X-RFcj.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.06 kB 🟢 -2.69 kB
assets/CloudLoginView-C_yzXR3i.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.06 kB 🔴 +2.68 kB
assets/CloudSignupView-BLio0yh0.js (new) 9.7 kB 🔴 +9.7 kB 🔴 +2.71 kB 🔴 +2.37 kB
assets/CloudSignupView-jxcKMp6s.js (removed) 9.7 kB 🟢 -9.7 kB 🟢 -2.71 kB 🟢 -2.38 kB
assets/CloudLayoutView-BDOl-dTr.js (new) 9.36 kB 🔴 +9.36 kB 🔴 +2.34 kB 🔴 +2.02 kB
assets/CloudLayoutView-Ce2vOI3l.js (removed) 9.36 kB 🟢 -9.36 kB 🟢 -2.34 kB 🟢 -2.03 kB
assets/UserCheckView-4JbEeGhl.js (removed) 8.8 kB 🟢 -8.8 kB 🟢 -2.22 kB 🟢 -1.93 kB
assets/UserCheckView-TKAvWAAO.js (new) 8.8 kB 🔴 +8.8 kB 🔴 +2.22 kB 🔴 +1.93 kB
assets/UserSelectView-BaYPwU8b.js (removed) 6 kB 🟢 -6 kB 🟢 -2.15 kB 🟢 -1.88 kB
assets/UserSelectView-CiBcBDR9.js (new) 6 kB 🔴 +6 kB 🔴 +2.15 kB 🔴 +1.88 kB
assets/CloudForgotPasswordView-BAO-v5uz.js (new) 5.15 kB 🔴 +5.15 kB 🔴 +1.76 kB 🔴 +1.53 kB
assets/CloudForgotPasswordView-C2xpHbtQ.js (removed) 5.15 kB 🟢 -5.15 kB 🟢 -1.76 kB 🟢 -1.53 kB
assets/CloudAuthTimeoutView-CE4l01oZ.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.57 kB 🔴 +1.37 kB
assets/CloudAuthTimeoutView-DH-z89YY.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.57 kB 🟢 -1.37 kB
assets/CloudSubscriptionRedirectView-BuPkxJvY.js (new) 4.3 kB 🔴 +4.3 kB 🔴 +1.57 kB 🔴 +1.38 kB
assets/CloudSubscriptionRedirectView-C2Efnw6H.js (removed) 4.3 kB 🟢 -4.3 kB 🟢 -1.57 kB 🟢 -1.38 kB

Status: 9 added / 9 removed / 3 unchanged

Panels & Settings — 525 kB (baseline 525 kB) • ⚪ 0 B

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-BgVF1Gao.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.96 kB 🟢 -8.82 kB
assets/KeybindingPanel-CggwpGSs.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.96 kB 🔴 +8.83 kB
assets/SecretsPanel-B01a9es8.js (removed) 24.2 kB 🟢 -24.2 kB 🟢 -5.76 kB 🟢 -5.06 kB
assets/SecretsPanel-F6i5y1zR.js (new) 24.2 kB 🔴 +24.2 kB 🔴 +5.76 kB 🔴 +5.06 kB
assets/LegacyCreditsPanel-BouAcKaO.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +5.51 kB 🔴 +4.84 kB
assets/LegacyCreditsPanel-D8AoqeH9.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -5.52 kB 🟢 -4.84 kB
assets/SubscriptionPanel-5G-ywUCr.js (new) 19.2 kB 🔴 +19.2 kB 🔴 +5.03 kB 🔴 +4.4 kB
assets/SubscriptionPanel-Dyl1TUnG.js (removed) 19.2 kB 🟢 -19.2 kB 🟢 -5.03 kB 🟢 -4.42 kB
assets/AboutPanel-Cw4L_-ZR.js (removed) 11.7 kB 🟢 -11.7 kB 🟢 -3.22 kB 🟢 -2.88 kB
assets/AboutPanel-CX33obo1.js (new) 11.7 kB 🔴 +11.7 kB 🔴 +3.22 kB 🔴 +2.88 kB
assets/ExtensionPanel-CnTWbSwU.js (new) 9.03 kB 🔴 +9.03 kB 🔴 +2.49 kB 🔴 +2.2 kB
assets/ExtensionPanel-fqAb95La.js (removed) 9.03 kB 🟢 -9.03 kB 🟢 -2.49 kB 🟢 -2.2 kB
assets/ServerConfigPanel-4zUv8xwG.js (new) 6.15 kB 🔴 +6.15 kB 🔴 +1.98 kB 🔴 +1.76 kB
assets/ServerConfigPanel-Bb3gORQH.js (removed) 6.15 kB 🟢 -6.15 kB 🟢 -1.98 kB 🟢 -1.77 kB
assets/UserPanel-C7aO2T8Q.js (new) 5.78 kB 🔴 +5.78 kB 🔴 +1.82 kB 🔴 +1.58 kB
assets/UserPanel-Cep1OGfK.js (removed) 5.78 kB 🟢 -5.78 kB 🟢 -1.82 kB 🟢 -1.58 kB
assets/refreshRemoteConfig-6CDSMWCs.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.06 kB 🟢 -941 B
assets/refreshRemoteConfig-Dldfe3Tb.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.06 kB 🔴 +941 B
assets/cloudRemoteConfig-CeyjPMps.js (removed) 990 B 🟢 -990 B 🟢 -540 B 🟢 -462 B
assets/cloudRemoteConfig-Cl4P8Q2L.js (new) 990 B 🔴 +990 B 🔴 +540 B 🔴 +450 B
assets/refreshRemoteConfig-NXjZNmzr.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -86 B
assets/refreshRemoteConfig-wX5b93qV.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +86 B

Status: 11 added / 11 removed / 15 unchanged

User & Accounts — 19.9 kB (baseline 19.9 kB) • ⚪ 0 B

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-CVYBWbWy.js (removed) 3.69 kB 🟢 -3.69 kB 🟢 -1.3 kB 🟢 -1.13 kB
assets/auth-D0Kl14Yn.js (new) 3.69 kB 🔴 +3.69 kB 🔴 +1.3 kB 🔴 +1.12 kB
assets/usePostAuthRedirect-D0KMoZCH.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.28 kB 🔴 +1.12 kB
assets/usePostAuthRedirect-WWWgOkIA.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.28 kB 🟢 -1.11 kB
assets/SignUpForm-B-iT1czI.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/SignUpForm-Iq88HREK.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/UpdatePasswordContent-D-PDw6GB.js (new) 1.92 kB 🔴 +1.92 kB 🔴 +877 B 🔴 +765 B
assets/UpdatePasswordContent-xGRNOtGW.js (removed) 1.92 kB 🟢 -1.92 kB 🟢 -878 B 🟢 -768 B
assets/authStore-B_OnAbSY.js (new) 130 B 🔴 +130 B 🔴 +109 B 🔴 +119 B
assets/authStore-CS4MOmOF.js (removed) 130 B 🟢 -130 B 🟢 -109 B 🟢 -107 B
assets/auth-3lSCfpxj.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -83 B
assets/auth-CjqsAeSG.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +84 B

Status: 6 added / 6 removed / 3 unchanged

Editors & Dialogs — 112 kB (baseline 112 kB) • ⚪ 0 B

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-CMtzuohk.js (new) 86 kB 🔴 +86 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/ComfyHubPublishDialog-tL_8hxd3.js (removed) 86 kB 🟢 -86 kB 🟢 -18.6 kB 🟢 -15.8 kB
assets/useShareDialog-DEVexsgP.js (new) 23.4 kB 🔴 +23.4 kB 🔴 +5.54 kB 🔴 +4.91 kB
assets/useShareDialog-DLWwPbJw.js (removed) 23.4 kB 🟢 -23.4 kB 🟢 -5.54 kB 🟢 -4.93 kB
assets/ComfyHubPublishDialog-CN-zFda2.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -88 B
assets/ComfyHubPublishDialog-CQltkaR9.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +92 B
assets/useSubscriptionDialog-8gaQavl3.js (removed) 110 B 🟢 -110 B 🟢 -102 B 🟢 -90 B
assets/useSubscriptionDialog-BxwuPrhO.js (new) 110 B 🔴 +110 B 🔴 +102 B 🔴 +90 B

Status: 4 added / 4 removed / 1 unchanged

UI Components — 57.2 kB (baseline 57.2 kB) • ⚪ 0 B

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-BY1EEYaz.js (new) 13.6 kB 🔴 +13.6 kB 🔴 +3.82 kB 🔴 +3.42 kB
assets/ComfyQueueButton-EbhUgBw8.js (removed) 13.6 kB 🟢 -13.6 kB 🟢 -3.83 kB 🟢 -3.42 kB
assets/useTerminalTabs-BpBIh84o.js (new) 12.1 kB 🔴 +12.1 kB 🔴 +3.84 kB 🔴 +3.39 kB
assets/useTerminalTabs-Qr0JcbYL.js (removed) 12.1 kB 🟢 -12.1 kB 🟢 -3.84 kB 🟢 -3.39 kB
assets/SubscribeButton-2I_N11md.js (removed) 2.44 kB 🟢 -2.44 kB 🟢 -1.05 kB 🟢 -946 B
assets/SubscribeButton-BXc8-mOH.js (new) 2.44 kB 🔴 +2.44 kB 🔴 +1.05 kB 🔴 +943 B
assets/cloudFeedbackTopbarButton-BC49b9Wb.js (new) 829 B 🔴 +829 B 🔴 +497 B 🔴 +421 B
assets/cloudFeedbackTopbarButton-C9kBJB-I.js (removed) 829 B 🟢 -829 B 🟢 -497 B 🟢 -454 B
assets/ComfyQueueButton-BNXHjN1K.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +89 B
assets/ComfyQueueButton-Cc8Z7zP3.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -91 B

Status: 5 added / 5 removed / 8 unchanged

Data & Services — 266 kB (baseline 266 kB) • ⚪ 0 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/load3dService-B5mtnKio.js (new) 125 kB 🔴 +125 kB 🔴 +27.7 kB 🔴 +23.4 kB
assets/load3dService-D4yX-XH6.js (removed) 125 kB 🟢 -125 kB 🟢 -27.7 kB 🟢 -23.4 kB
assets/api-BbCCrtWI.js (removed) 83.9 kB 🟢 -83.9 kB 🟢 -22.5 kB 🟢 -19.4 kB
assets/api-BOtthqn9.js (new) 83.9 kB 🔴 +83.9 kB 🔴 +22.5 kB 🔴 +19.4 kB
assets/workflowShareService-C9z1_qFt.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.91 kB 🔴 +4.35 kB
assets/workflowShareService-DooVKjyP.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.91 kB 🟢 -4.35 kB
assets/keybindingService-C7shbn0L.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.22 kB
assets/keybindingService-CoIbGr0V.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.67 kB 🔴 +3.22 kB
assets/releaseStore-DUtmOfly.js (new) 8.29 kB 🔴 +8.29 kB 🔴 +2.33 kB 🔴 +2.05 kB
assets/releaseStore-DVMl0PI0.js (removed) 8.29 kB 🟢 -8.29 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/extensionStore-CDDignD7.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.58 kB
assets/extensionStore-duuPXkd3.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.57 kB
assets/userStore-BNCMOsTp.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +928 B 🔴 +826 B
assets/userStore-g9-HfZ6u.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -931 B 🟢 -829 B
assets/audioService-9nB47N31.js (removed) 1.76 kB 🟢 -1.76 kB 🟢 -864 B 🟢 -748 B
assets/audioService-CCewiQrz.js (new) 1.76 kB 🔴 +1.76 kB 🔴 +861 B 🔴 +747 B
assets/dialogService-C-RQxfKI.js (new) 100 B 🔴 +100 B 🔴 +99 B 🔴 +93 B
assets/dialogService-DJyZDAxr.js (removed) 100 B 🟢 -100 B 🟢 -99 B 🟢 -93 B
assets/settingStore-CxSi1tQC.js (new) 98 B 🔴 +98 B 🔴 +98 B 🔴 +91 B
assets/settingStore-DHaD5PLt.js (removed) 98 B 🟢 -98 B 🟢 -98 B 🟢 -92 B
assets/assetsStore-CLynahOk.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +99 B
assets/assetsStore-DgdvT4DW.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -88 B
assets/releaseStore-CtGNJSKs.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -87 B
assets/releaseStore-DCI8ZlTU.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +86 B
assets/api-Bu6uLGRy.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B
assets/api-CzWByj24.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B

Status: 13 added / 13 removed / 3 unchanged

Utilities & Hooks — 3.32 MB (baseline 3.32 MB) • 🟢 -2.75 kB

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/promotionUtils-CdOzvHE_.js (removed) 2.97 MB 🟢 -2.97 MB 🟢 -686 kB 🟢 -517 kB
assets/promotionUtils-CCpV2oc2.js (new) 2.97 MB 🔴 +2.97 MB 🔴 +685 kB 🔴 +517 kB
assets/useConflictDetection-Bym2wMQz.js (removed) 233 kB 🟢 -233 kB 🟢 -52 kB 🟢 -42.4 kB
assets/useConflictDetection-lbWkhEgM.js (new) 233 kB 🔴 +233 kB 🔴 +52 kB 🔴 +42.3 kB
assets/useLoad3d-aHGnCf9k.js (new) 25.5 kB 🔴 +25.5 kB 🔴 +5.75 kB 🔴 +5.09 kB
assets/useLoad3d-B33m1pUD.js (removed) 25.5 kB 🟢 -25.5 kB 🟢 -5.76 kB 🟢 -5.1 kB
assets/useLoad3dViewer-Bv9aPGXY.js (removed) 21.1 kB 🟢 -21.1 kB 🟢 -4.98 kB 🟢 -4.35 kB
assets/useLoad3dViewer-Phb_1Gnw.js (new) 21.1 kB 🔴 +21.1 kB 🔴 +4.98 kB 🔴 +4.37 kB
assets/useFeatureFlags-D9AFTH-8.js (new) 5.37 kB 🔴 +5.37 kB 🔴 +1.65 kB 🔴 +1.41 kB
assets/useFeatureFlags-skQegh-m.js (removed) 5.37 kB 🟢 -5.37 kB 🟢 -1.65 kB 🟢 -1.4 kB
assets/useSessionCookie-CRI79PsG.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.15 kB 🔴 +978 B
assets/useSessionCookie-r2bpP_Uy.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.14 kB 🟢 -976 B
assets/subscriptionCheckoutUtil-D2Eenyc0.js (removed) 3.31 kB 🟢 -3.31 kB 🟢 -1.36 kB 🟢 -1.19 kB
assets/subscriptionCheckoutUtil-SamevbQF.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.36 kB 🔴 +1.19 kB
assets/assetPreviewUtil-BYiUjV8_.js (new) 2.41 kB 🔴 +2.41 kB 🔴 +1 kB 🔴 +880 B
assets/assetPreviewUtil-DgJqLYIs.js (removed) 2.41 kB 🟢 -2.41 kB 🟢 -1.01 kB 🟢 -881 B
assets/useUpstreamValue-C1yuH0Fk.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -797 B 🟢 -701 B
assets/useUpstreamValue-DRrJNgg2.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +793 B 🔴 +703 B
assets/useWorkspaceSwitch-CJPl3U7i.js (new) 748 B 🔴 +748 B 🔴 +384 B 🔴 +337 B
assets/useWorkspaceSwitch-DQ765L6B.js (removed) 748 B 🟢 -748 B 🟢 -387 B 🟢 -339 B
assets/useLoad3d-BeV8VZ_N.js (removed) 311 B 🟢 -311 B 🟢 -163 B 🟢 -147 B
assets/useLoad3d-DKgjmOIz.js (new) 311 B 🔴 +311 B 🔴 +164 B 🔴 +150 B
assets/useSessionCookie-B4VEfGG_.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -80 B
assets/useSessionCookie-CkngHHsG.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +84 B
assets/useLoad3dViewer-CBDwFacu.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -83 B
assets/useLoad3dViewer-DdniVDoh.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +86 B
assets/useCurrentUser-BCnnDr1L.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -84 B
assets/useCurrentUser-CPD0yCOs.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +85 B

Status: 14 added / 14 removed / 16 unchanged

Vendor & Third-Party — 15.3 MB (baseline 15.3 MB) • ⚪ 0 B

External libraries and shared vendor chunks

Status: 16 unchanged

Other — 10.4 MB (baseline 10.4 MB) • ⚪ 0 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-DnWjJV5F.js (new) 118 kB 🔴 +118 kB 🔴 +30.4 kB 🔴 +25.8 kB
assets/core-DPEB8skn.js (removed) 118 kB 🟢 -118 kB 🟢 -30.5 kB 🟢 -25.8 kB
assets/WidgetSelect-BL2jBp98.js (new) 82.6 kB 🔴 +82.6 kB 🔴 +18.1 kB 🔴 +15.6 kB
assets/WidgetSelect-Td3xziTk.js (removed) 82.6 kB 🟢 -82.6 kB 🟢 -18.1 kB 🟢 -15.6 kB
assets/SubscriptionRequiredDialogContentWorkspace-CdxupNE4.js (removed) 47.8 kB 🟢 -47.8 kB 🟢 -9.08 kB 🟢 -7.84 kB
assets/SubscriptionRequiredDialogContentWorkspace-qn1BoLGO.js (new) 47.8 kB 🔴 +47.8 kB 🔴 +9.08 kB 🔴 +7.85 kB
assets/Load3DControls-CxV5PQZt.js (new) 46.8 kB 🔴 +46.8 kB 🔴 +7.57 kB 🔴 +6.63 kB
assets/Load3DControls-DCCULXFH.js (removed) 46.8 kB 🟢 -46.8 kB 🟢 -7.57 kB 🟢 -6.62 kB
assets/WorkspacePanelContent-Behpepbp.js (removed) 33.3 kB 🟢 -33.3 kB 🟢 -6.96 kB 🟢 -6.17 kB
assets/WorkspacePanelContent-DYPRjwi3.js (new) 33.3 kB 🔴 +33.3 kB 🔴 +6.96 kB 🔴 +6.17 kB
assets/WidgetPainter-BY-z4Wa1.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.86 kB 🟢 -6.97 kB
assets/WidgetPainter-uFAzEdeW.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.86 kB 🔴 +6.99 kB
assets/Load3dViewerContent-DNsyVBTZ.js (new) 30.9 kB 🔴 +30.9 kB 🔴 +6.3 kB 🔴 +5.47 kB
assets/Load3dViewerContent-SbI8DjRu.js (removed) 30.9 kB 🟢 -30.9 kB 🟢 -6.3 kB 🟢 -5.47 kB
assets/SubscriptionRequiredDialogContent-BO-U417T.js (removed) 26.6 kB 🟢 -26.6 kB 🟢 -6.56 kB 🟢 -5.79 kB
assets/SubscriptionRequiredDialogContent-COcXWTbr.js (new) 26.6 kB 🔴 +26.6 kB 🔴 +6.56 kB 🔴 +5.79 kB
assets/WidgetImageCrop-BWdiiqBr.js (new) 23.3 kB 🔴 +23.3 kB 🔴 +5.74 kB 🔴 +5.04 kB
assets/WidgetImageCrop-Oi0n24zn.js (removed) 23.3 kB 🟢 -23.3 kB 🟢 -5.75 kB 🟢 -5.05 kB
assets/SubscriptionPanelContentWorkspace-BDVtrL7M.js (removed) 22.1 kB 🟢 -22.1 kB 🟢 -5.16 kB 🟢 -4.55 kB
assets/SubscriptionPanelContentWorkspace-BLqR5ijf.js (new) 22.1 kB 🔴 +22.1 kB 🔴 +5.16 kB 🔴 +4.55 kB
assets/load3d-EgDGR1Sm.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -5.18 kB 🟢 -4.49 kB
assets/load3d-geHXrpGQ.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +5.18 kB 🔴 +4.49 kB
assets/CurrentUserPopoverWorkspace-GENqEhmb.js (removed) 20.5 kB 🟢 -20.5 kB 🟢 -4.68 kB 🟢 -4.18 kB
assets/CurrentUserPopoverWorkspace-zijz_5fP.js (new) 20.5 kB 🔴 +20.5 kB 🔴 +4.68 kB 🔴 +4.18 kB
assets/SignInContent-C7csTbRc.js (removed) 19.9 kB 🟢 -19.9 kB 🟢 -4.99 kB 🟢 -4.36 kB
assets/SignInContent-kaJA9ZvN.js (new) 19.9 kB 🔴 +19.9 kB 🔴 +5 kB 🔴 +4.36 kB
assets/Load3D-CQ1-uXzJ.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.51 kB 🔴 +3.93 kB
assets/Load3D-tgvgPJPT.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.52 kB 🟢 -3.93 kB
assets/WidgetInputNumber-BN8OtXP6.js (removed) 19 kB 🟢 -19 kB 🟢 -4.79 kB 🟢 -4.25 kB
assets/WidgetInputNumber-D-netxwP.js (new) 19 kB 🔴 +19 kB 🔴 +4.79 kB 🔴 +4.25 kB
assets/WidgetRecordAudio-ByhOW51J.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.63 kB 🟢 -4.14 kB
assets/WidgetRecordAudio-Ds8zht_V.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.63 kB 🔴 +4.14 kB
assets/WidgetRange-Dx44kgRq.js (removed) 16.2 kB 🟢 -16.2 kB 🟢 -4.17 kB 🟢 -3.72 kB
assets/WidgetRange-IuiKU-HD.js (new) 16.2 kB 🔴 +16.2 kB 🔴 +4.17 kB 🔴 +3.73 kB
assets/WaveAudioPlayer-CTrRBrrC.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.48 kB 🟢 -3.05 kB
assets/WaveAudioPlayer-DTnszPok.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.48 kB 🔴 +3.05 kB
assets/WidgetCurve-Di2rcVRU.js (new) 11.3 kB 🔴 +11.3 kB 🔴 +3.5 kB 🔴 +3.17 kB
assets/WidgetCurve-rkm_CGEb.js (removed) 11.3 kB 🟢 -11.3 kB 🟢 -3.5 kB 🟢 -3.17 kB
assets/TeamWorkspacesDialogContent-BXFpkVbg.js (removed) 10.4 kB 🟢 -10.4 kB 🟢 -3.01 kB 🟢 -2.68 kB
assets/TeamWorkspacesDialogContent-DI0o9OIB.js (new) 10.4 kB 🔴 +10.4 kB 🔴 +3.01 kB 🔴 +2.68 kB
assets/Load3DConfiguration-qmLthN22.js (removed) 9.02 kB 🟢 -9.02 kB 🟢 -2.67 kB 🟢 -2.35 kB
assets/Load3DConfiguration-rwzTp1Nb.js (new) 9.02 kB 🔴 +9.02 kB 🔴 +2.66 kB 🔴 +2.35 kB
assets/nodeTemplates-BxyRST9t.js (new) 8.33 kB 🔴 +8.33 kB 🔴 +2.88 kB 🔴 +2.54 kB
assets/nodeTemplates-Dcs0o7Jc.js (removed) 8.33 kB 🟢 -8.33 kB 🟢 -2.88 kB 🟢 -2.54 kB
assets/onboardingCloudRoutes-Cj-yd2d1.js (removed) 8.2 kB 🟢 -8.2 kB 🟢 -2.54 kB 🟢 -2.19 kB
assets/onboardingCloudRoutes-D9u2Ml71.js (new) 8.2 kB 🔴 +8.2 kB 🔴 +2.54 kB 🔴 +2.18 kB
assets/NightlySurveyController-C6DetGJ_.js (new) 7.95 kB 🔴 +7.95 kB 🔴 +2.7 kB 🔴 +2.4 kB
assets/NightlySurveyController-CnO__P3W.js (removed) 7.95 kB 🟢 -7.95 kB 🟢 -2.7 kB 🟢 -2.39 kB
assets/InviteMemberDialogContent-CIfvjuRp.js (new) 7.03 kB 🔴 +7.03 kB 🔴 +2.13 kB 🔴 +1.85 kB
assets/InviteMemberDialogContent-JeuhDnsm.js (removed) 7.03 kB 🟢 -7.03 kB 🟢 -2.13 kB 🟢 -1.85 kB
assets/WidgetWithControl-c7M9Zyrr.js (new) 6.3 kB 🔴 +6.3 kB 🔴 +2.54 kB 🔴 +2.25 kB
assets/WidgetWithControl-CWzx10K1.js (removed) 6.3 kB 🟢 -6.3 kB 🟢 -2.53 kB 🟢 -2.27 kB
assets/load3dPreviewExtensions-C0KV0XR_.js (new) 5.38 kB 🔴 +5.38 kB 🔴 +1.75 kB 🔴 +1.55 kB
assets/load3dPreviewExtensions-QImHyhw4.js (removed) 5.38 kB 🟢 -5.38 kB 🟢 -1.75 kB 🟢 -1.55 kB
assets/CreateWorkspaceDialogContent-cTt1cbW1.js (removed) 5.19 kB 🟢 -5.19 kB 🟢 -1.83 kB 🟢 -1.58 kB
assets/CreateWorkspaceDialogContent-DqK90I3v.js (new) 5.19 kB 🔴 +5.19 kB 🔴 +1.83 kB 🔴 +1.59 kB
assets/missingModelDownload-DIjce65m.js (new) 5.07 kB 🔴 +5.07 kB 🔴 +1.98 kB 🔴 +1.72 kB
assets/missingModelDownload-Dqao11EN.js (removed) 5.07 kB 🟢 -5.07 kB 🟢 -1.98 kB 🟢 -1.72 kB
assets/FreeTierDialogContent-BL4YZnLx.js (removed) 5.02 kB 🟢 -5.02 kB 🟢 -1.69 kB 🟢 -1.5 kB
assets/FreeTierDialogContent-X3gV-94u.js (new) 5.02 kB 🔴 +5.02 kB 🔴 +1.69 kB 🔴 +1.5 kB
assets/EditWorkspaceDialogContent-BGTgmQVE.js (new) 5 kB 🔴 +5 kB 🔴 +1.79 kB 🔴 +1.55 kB
assets/EditWorkspaceDialogContent-CSAxdth3.js (removed) 5 kB 🟢 -5 kB 🟢 -1.8 kB 🟢 -1.55 kB
assets/WidgetTextarea-DHJ2uq3c.js (new) 4.86 kB 🔴 +4.86 kB 🔴 +1.89 kB 🔴 +1.66 kB
assets/WidgetTextarea-ixRVNYlZ.js (removed) 4.86 kB 🟢 -4.86 kB 🟢 -1.89 kB 🟢 -1.67 kB
assets/saveMesh-fg-gUnSn.js (new) 4.79 kB 🔴 +4.79 kB 🔴 +1.55 kB 🔴 +1.36 kB
assets/saveMesh-gn_tcbx7.js (removed) 4.79 kB 🟢 -4.79 kB 🟢 -1.55 kB 🟢 -1.36 kB
assets/Preview3d-NC8U9B3e.js (removed) 4.59 kB 🟢 -4.59 kB 🟢 -1.43 kB 🟢 -1.24 kB
assets/Preview3d-wunkVxGy.js (new) 4.59 kB 🔴 +4.59 kB 🔴 +1.43 kB 🔴 +1.23 kB
assets/ValueControlPopover-CUn6CFee.js (new) 4.55 kB 🔴 +4.55 kB 🔴 +1.58 kB 🔴 +1.41 kB
assets/ValueControlPopover-DjeFcIDp.js (removed) 4.55 kB 🟢 -4.55 kB 🟢 -1.59 kB 🟢 -1.42 kB
assets/CancelSubscriptionDialogContent-B2wEwnIN.js (new) 4.54 kB 🔴 +4.54 kB 🔴 +1.66 kB 🔴 +1.44 kB
assets/CancelSubscriptionDialogContent-DnNiNN86.js (removed) 4.54 kB 🟢 -4.54 kB 🟢 -1.65 kB 🟢 -1.44 kB
assets/tierBenefits-Di48HE8K.js (new) 4.46 kB 🔴 +4.46 kB 🔴 +1.58 kB 🔴 +1.37 kB
assets/tierBenefits-W20jP76n.js (removed) 4.46 kB 🟢 -4.46 kB 🟢 -1.58 kB 🟢 -1.36 kB
assets/DeleteWorkspaceDialogContent-Ca22LTS1.js (removed) 3.91 kB 🟢 -3.91 kB 🟢 -1.47 kB 🟢 -1.26 kB
assets/DeleteWorkspaceDialogContent-DzrQ7qno.js (new) 3.91 kB 🔴 +3.91 kB 🔴 +1.47 kB 🔴 +1.26 kB
assets/LeaveWorkspaceDialogContent-DdPGrB3P.js (removed) 3.73 kB 🟢 -3.73 kB 🟢 -1.42 kB 🟢 -1.22 kB
assets/LeaveWorkspaceDialogContent-DxkeyD8M.js (new) 3.73 kB 🔴 +3.73 kB 🔴 +1.42 kB 🔴 +1.22 kB
assets/RemoveMemberDialogContent-B5-EwLtt.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.37 kB 🟢 -1.18 kB
assets/RemoveMemberDialogContent-CnyZutPj.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.37 kB 🔴 +1.18 kB
assets/RevokeInviteDialogContent-BusXVjcl.js (removed) 3.63 kB 🟢 -3.63 kB 🟢 -1.38 kB 🟢 -1.2 kB
assets/RevokeInviteDialogContent-lM7cK_Th.js (new) 3.63 kB 🔴 +3.63 kB 🔴 +1.38 kB 🔴 +1.21 kB
assets/InviteMemberUpsellDialogContent-DcP94J0z.js (new) 3.48 kB 🔴 +3.48 kB 🔴 +1.24 kB 🔴 +1.09 kB
assets/InviteMemberUpsellDialogContent-DfJW1BP6.js (removed) 3.48 kB 🟢 -3.48 kB 🟢 -1.24 kB 🟢 -1.08 kB
assets/Media3DTop-aQ_nHp_G.js (new) 3.26 kB 🔴 +3.26 kB 🔴 +1.3 kB 🔴 +1.13 kB
assets/Media3DTop-CgmwtO7C.js (removed) 3.26 kB 🟢 -3.26 kB 🟢 -1.3 kB 🟢 -1.13 kB
assets/GlobalToast-6ET6RFUH.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.08 kB
assets/GlobalToast-BSTxm8Zr.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.13 kB
assets/load3dAdvanced-COTv1v0D.js (new) 2.85 kB 🔴 +2.85 kB 🔴 +1.12 kB 🔴 +974 B
assets/load3dAdvanced-D1qHP2j7.js (removed) 2.85 kB 🟢 -2.85 kB 🟢 -1.12 kB 🟢 -972 B
assets/SubscribeToRun-CqbeiO3r.js (new) 2.53 kB 🔴 +2.53 kB 🔴 +1.1 kB 🔴 +973 B
assets/SubscribeToRun-Ct6b8Ian.js (removed) 2.53 kB 🟢 -2.53 kB 🟢 -1.1 kB 🟢 -973 B
assets/graphHasMissingNodes-c77Xxy4k.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -909 B 🟢 -790 B
assets/graphHasMissingNodes-Miy89DvA.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +908 B 🔴 +793 B
assets/MediaAudioTop-CdcssY5V.js (removed) 1.67 kB 🟢 -1.67 kB 🟢 -836 B 🟢 -694 B
assets/MediaAudioTop-RfYPbYrf.js (new) 1.67 kB 🔴 +1.67 kB 🔴 +837 B 🔴 +691 B
assets/CloudRunButtonWrapper-7th6LI0q.js (removed) 1.13 kB 🟢 -1.13 kB 🟢 -548 B 🟢 -519 B
assets/CloudRunButtonWrapper-C0oztfLH.js (new) 1.13 kB 🔴 +1.13 kB 🔴 +548 B 🔴 +495 B
assets/cloudSessionCookie-COxV6gD3.js (removed) 991 B 🟢 -991 B 🟢 -469 B 🟢 -417 B
assets/cloudSessionCookie-Dw4cu_ZA.js (new) 991 B 🔴 +991 B 🔴 +468 B 🔴 +411 B
assets/cloudBadges-qg3pPXlw.js (removed) 973 B 🟢 -973 B 🟢 -552 B 🟢 -469 B
assets/cloudBadges-S9amQEst.js (new) 973 B 🔴 +973 B 🔴 +549 B 🔴 +469 B
assets/cloudSubscription-BEp-sWnw.js (new) 820 B 🔴 +820 B 🔴 +450 B 🔴 +362 B
assets/cloudSubscription-CfoyBYd9.js (removed) 820 B 🟢 -820 B 🟢 -453 B 🟢 -363 B
assets/Load3DAdvanced-BRkbhKBG.js (new) 813 B 🔴 +813 B 🔴 +456 B 🔴 +409 B
assets/Load3DAdvanced-DX02OTpZ.js (removed) 813 B 🟢 -813 B 🟢 -456 B 🟢 -407 B
assets/nightlyBadges-CzzEDt3G.js (new) 464 B 🔴 +464 B 🔴 +305 B 🔴 +254 B
assets/nightlyBadges-DUj7EEK9.js (removed) 464 B 🟢 -464 B 🟢 -306 B 🟢 -254 B
assets/missingModelDownload-DiunU71W.js (removed) 228 B 🟢 -228 B 🟢 -148 B 🟢 -128 B
assets/missingModelDownload-DvIhySK3.js (new) 228 B 🔴 +228 B 🔴 +149 B 🔴 +131 B
assets/SubscriptionPanelContentWorkspace-BkUc4Igq.js (new) 179 B 🔴 +179 B 🔴 +117 B 🔴 +90 B
assets/SubscriptionPanelContentWorkspace-CqDz5rh0.js (removed) 179 B 🟢 -179 B 🟢 -117 B 🟢 -92 B
assets/Load3dViewerContent-bC6fnKBs.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +92 B
assets/Load3dViewerContent-CvNKWHlh.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -92 B
assets/Load3DAdvanced-Dj2oK-F9.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +88 B
assets/Load3DAdvanced-K5jpvVcq.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -88 B
assets/WidgetLegacy-BTvkXDCu.js (removed) 119 B 🟢 -119 B 🟢 -108 B 🟢 -96 B
assets/WidgetLegacy-DfHoW83j.js (new) 119 B 🔴 +119 B 🔴 +108 B 🔴 +96 B
assets/workflowDraftStoreV2-Bpigl1i4.js (removed) 113 B 🟢 -113 B 🟢 -105 B 🟢 -111 B
assets/workflowDraftStoreV2-CXo_V1NJ.js (new) 113 B 🔴 +113 B 🔴 +105 B 🔴 +117 B
assets/Load3D-B1Wl8k8r.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -79 B
assets/Load3D-C_y-0Eh9.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +82 B
assets/changeTracker-Buy2eUwi.js (removed) 93 B 🟢 -93 B 🟢 -95 B 🟢 -85 B
assets/changeTracker-D0QwTkwV.js (new) 93 B 🔴 +93 B 🔴 +95 B 🔴 +80 B

Status: 62 added / 62 removed / 89 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 54.2 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 50.5 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.1 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.7 MB heap
large-graph-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 59.3 MB heap
large-graph-pan: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 78.9 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.3 MB heap
minimap-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.3 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 63.2 MB heap
subgraph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.4 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.3 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 146ms TBT · 74.6 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.4 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 162.1 MB heap
vue-large-graph-pan: · 57.1 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 5ms TBT · 155.9 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.3 MB heap

⚠️ 2 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-mouse-sweep: layout duration 3ms 4ms +19% ⚠️ z=2.1
large-graph-pan: style recalc duration 18ms 21ms +14% ⚠️ z=4.4
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=-0.1
canvas-idle: p95 frame time 17ms 17ms -0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 10ms 8ms -18% z=-3.1
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 11 9 -18% z=-3.8
canvas-idle: task duration 359ms 401ms +12% z=0.2
canvas-idle: script duration 20ms 19ms -2% z=-2.6
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 53.8 MB 54.2 MB +1%
canvas-idle: DOM nodes 22 18 -18% z=-3.6
canvas-idle: event listeners 4 5 +25% z=-1.4
canvas-mouse-sweep: avg frame time 17ms 17ms +0% z=-0.4
canvas-mouse-sweep: p95 frame time 17ms 17ms +0%
canvas-mouse-sweep: layout duration 3ms 4ms +19% ⚠️ z=2.1
canvas-mouse-sweep: style recalc duration 35ms 44ms +26% z=0.5
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 73 77 +5% z=-0.9
canvas-mouse-sweep: task duration 728ms 847ms +16% z=-0.3
canvas-mouse-sweep: script duration 122ms 126ms +3% z=-1.5
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 48.9 MB 50.5 MB +3%
canvas-mouse-sweep: DOM nodes 56 -91 -263% z=-59.3
canvas-mouse-sweep: event listeners 4 -98 -2538% z=-25.4
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms +0%
canvas-zoom-sweep: layout duration 1ms 1ms +31% z=1.4
canvas-zoom-sweep: style recalc duration 15ms 17ms +14% z=-1.1
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 31 +0% z=-0.6
canvas-zoom-sweep: task duration 296ms 330ms +11% z=0.1
canvas-zoom-sweep: script duration 18ms 20ms +7% z=-2.5
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 57.4 MB 61.1 MB +6%
canvas-zoom-sweep: DOM nodes 78 -70 -189% z=-187.9
canvas-zoom-sweep: event listeners 19 -83 -534% z=-20.5
dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
dom-widget-clipping: p95 frame time 17ms 17ms -0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 7ms 8ms +9% z=-2.5
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 11 12 +5% z=-3.2
dom-widget-clipping: task duration 326ms 366ms +12% z=0.1
dom-widget-clipping: script duration 56ms 55ms -2% z=-4.0
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 62.6 MB 52.7 MB -16%
dom-widget-clipping: DOM nodes 18 -147 -914% z=-118.9
dom-widget-clipping: event listeners 0 -102 variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=0.2
large-graph-idle: p95 frame time 17ms 17ms +1%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 10ms 9ms -7% z=-3.0
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 11 10 -9% z=-5.1
large-graph-idle: task duration 481ms 538ms +12% z=-0.1
large-graph-idle: script duration 89ms 95ms +6% z=-0.8
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 59.3 MB 59.3 MB -0%
large-graph-idle: DOM nodes 22 20 -9% z=-5.2
large-graph-idle: event listeners 4 4 +0% z=-3.7
large-graph-pan: avg frame time 17ms 17ms +0% z=0.3
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 18ms 21ms +14% ⚠️ z=4.4
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 69 -1% z=-1.7
large-graph-pan: task duration 1028ms 1037ms +1% z=-1.1
large-graph-pan: script duration 385ms 366ms -5% z=-2.1
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 79.2 MB 78.9 MB -0%
large-graph-pan: DOM nodes 20 18 -10% z=-0.6
large-graph-pan: event listeners 6 5 -17% z=0.1
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 7ms 8ms +20%
large-graph-zoom: style recalc duration 18ms 19ms +6%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 66 65 -2%
large-graph-zoom: task duration 1214ms 1292ms +6%
large-graph-zoom: script duration 454ms 496ms +9%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 65.1 MB 64.3 MB -1%
large-graph-zoom: DOM nodes 14 -139 -1089%
large-graph-zoom: event listeners 8 8 +0%
minimap-idle: avg frame time 17ms 17ms -0% z=-0.9
minimap-idle: p95 frame time 17ms 17ms -1%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 8ms 9ms +20% z=-0.3
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 10 +25% z=0.6
minimap-idle: task duration 461ms 505ms +10% z=-0.5
minimap-idle: script duration 81ms 82ms +2% z=-1.6
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 61.0 MB 61.3 MB +0%
minimap-idle: DOM nodes 16 20 +25% z=0.6
minimap-idle: event listeners 4 4 +0% z=-0.9
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=-0.4
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms +1%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 11ms 12ms +12% z=-0.3
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 46 -2% z=-3.3
subgraph-dom-widget-clipping: task duration 348ms 383ms +10% z=0.2
subgraph-dom-widget-clipping: script duration 118ms 128ms +9% z=0.0
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 63.3 MB 63.2 MB -0%
subgraph-dom-widget-clipping: DOM nodes 20 18 -10% z=-3.7
subgraph-dom-widget-clipping: event listeners 6 6 +0% z=-1.7
subgraph-idle: avg frame time 17ms 17ms +0% z=0.4
subgraph-idle: p95 frame time 17ms 17ms +0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 9ms 10ms +5% z=-1.1
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 10 -5% z=-2.1
subgraph-idle: task duration 341ms 369ms +8% z=-0.0
subgraph-idle: script duration 17ms 14ms -16% z=-2.3
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 53.6 MB 53.4 MB -0%
subgraph-idle: DOM nodes 20 19 -5% z=-1.9
subgraph-idle: event listeners 4 4 +0% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms -0% z=-0.5
subgraph-mouse-sweep: p95 frame time 17ms 17ms -1%
subgraph-mouse-sweep: layout duration 4ms 5ms +25% z=-0.3
subgraph-mouse-sweep: style recalc duration 35ms 37ms +7% z=-1.5
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 77 75 -3% z=-2.7
subgraph-mouse-sweep: task duration 650ms 647ms -1% z=-1.7
subgraph-mouse-sweep: script duration 85ms 89ms +5% z=-1.8
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 45.7 MB 65.3 MB +43%
subgraph-mouse-sweep: DOM nodes 64 62 -4% z=-2.4
subgraph-mouse-sweep: event listeners 4 4 +0% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms +0%
subgraph-transition-enter: p95 frame time 17ms 17ms +0%
subgraph-transition-enter: layout duration 14ms 13ms -10%
subgraph-transition-enter: style recalc duration 28ms 29ms +3%
subgraph-transition-enter: layout count 4 4 +0%
subgraph-transition-enter: style recalc count 16 15 -6%
subgraph-transition-enter: task duration 700ms 743ms +6%
subgraph-transition-enter: script duration 26ms 29ms +10%
subgraph-transition-enter: TBT 164ms 146ms -11%
subgraph-transition-enter: heap used 76.2 MB 74.6 MB -2%
subgraph-transition-enter: DOM nodes 13833 13833 +0%
subgraph-transition-enter: event listeners 2527 2527 +0%
viewport-pan-sweep: avg frame time 17ms 17ms +0%
viewport-pan-sweep: p95 frame time 17ms 17ms +0%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 52ms 62ms +20%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 252 +1%
viewport-pan-sweep: task duration 3502ms 3739ms +7%
viewport-pan-sweep: script duration 1174ms 1230ms +5%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 66.8 MB 64.4 MB -4%
viewport-pan-sweep: DOM nodes 22 21 -5%
viewport-pan-sweep: event listeners 20 20 +0%
vue-large-graph-idle: avg frame time 17ms 17ms +0%
vue-large-graph-idle: p95 frame time 17ms 17ms -0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 12228ms 13655ms +12%
vue-large-graph-idle: script duration 580ms 584ms +1%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 160.1 MB 162.1 MB +1%
vue-large-graph-idle: DOM nodes -3310 -3302 -0%
vue-large-graph-idle: event listeners -16473 -16472 -0%
vue-large-graph-pan: avg frame time 17ms 17ms +2%
vue-large-graph-pan: p95 frame time 17ms 17ms +0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 16ms 22ms +39%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 65 84 +28%
vue-large-graph-pan: task duration 14005ms 15982ms +14%
vue-large-graph-pan: script duration 849ms 914ms +8%
vue-large-graph-pan: TBT 0ms 5ms
vue-large-graph-pan: heap used 153.4 MB 155.9 MB +2%
vue-large-graph-pan: DOM nodes -3308 -3301 -0%
vue-large-graph-pan: event listeners -16473 -16471 -0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.6
workflow-execution: p95 frame time 17ms 17ms -1%
workflow-execution: layout duration 1ms 1ms -12% z=-2.3
workflow-execution: style recalc duration 22ms 23ms +5% z=-0.7
workflow-execution: layout count 5 4 -20% z=-1.7
workflow-execution: style recalc count 18 17 -6% z=-0.4
workflow-execution: task duration 115ms 113ms -1% z=-0.9
workflow-execution: script duration 21ms 17ms -18% z=-4.1
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 61.9 MB 65.3 MB +5%
workflow-execution: DOM nodes 159 163 +2% z=0.2
workflow-execution: event listeners 69 69 +0% z=3.9
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-06-19T08:43:44.419Z",
  "gitSha": "398760f07a50f7a52df79d8a776199ba1a526a32",
  "branch": "jaeone/models-metadata-only",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2021.5619999999888,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.219999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 418.12200000000007,
      "heapDeltaBytes": -1689428,
      "heapUsedBytes": 56751764,
      "domNodes": 18,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 22.5,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2050.483999999983,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 7.908999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 383.73799999999994,
      "heapDeltaBytes": -1680016,
      "heapUsedBytes": 56969632,
      "domNodes": 18,
      "jsHeapTotalBytes": 25165824,
      "scriptDurationMs": 16.32,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1996.0820000000012,
      "styleRecalcs": 79,
      "styleRecalcDurationMs": 50.888,
      "layouts": 12,
      "layoutDurationMs": 4.366,
      "taskDurationMs": 943.412,
      "heapDeltaBytes": -13553124,
      "heapUsedBytes": 54774952,
      "domNodes": -239,
      "jsHeapTotalBytes": 21671936,
      "scriptDurationMs": 132.3,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1777.2699999999872,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 37.498000000000005,
      "layouts": 12,
      "layoutDurationMs": 3.6760000000000006,
      "taskDurationMs": 750.9129999999999,
      "heapDeltaBytes": -7384224,
      "heapUsedBytes": 51053300,
      "domNodes": 57,
      "jsHeapTotalBytes": 26738688,
      "scriptDurationMs": 119.01599999999999,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1758.4420000000023,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 18.281,
      "layouts": 6,
      "layoutDurationMs": 0.732,
      "taskDurationMs": 352.67,
      "heapDeltaBytes": 98248,
      "heapUsedBytes": 68134932,
      "domNodes": -216,
      "jsHeapTotalBytes": 13807616,
      "scriptDurationMs": 20.303,
      "eventListeners": -184,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1707.899999999995,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 16.619000000000003,
      "layouts": 6,
      "layoutDurationMs": 0.678,
      "taskDurationMs": 306.64399999999995,
      "heapDeltaBytes": 1586896,
      "heapUsedBytes": 59992188,
      "domNodes": 77,
      "jsHeapTotalBytes": 25952256,
      "scriptDurationMs": 19.201000000000004,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 551.6879999999844,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 6.711999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 339.23199999999997,
      "heapDeltaBytes": 6855716,
      "heapUsedBytes": 65365236,
      "domNodes": 18,
      "jsHeapTotalBytes": 19136512,
      "scriptDurationMs": 55.980000000000004,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 626.7990000000054,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 9.023000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 392.135,
      "heapDeltaBytes": -24150528,
      "heapUsedBytes": 45118632,
      "domNodes": -311,
      "jsHeapTotalBytes": 5681152,
      "scriptDurationMs": 53.467999999999996,
      "eventListeners": -203,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2003.9140000000089,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 9.62,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 510.332,
      "heapDeltaBytes": -9428076,
      "heapUsedBytes": 61927976,
      "domNodes": 22,
      "jsHeapTotalBytes": 9842688,
      "scriptDurationMs": 85.977,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2041.2640000000124,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.555,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 566.5600000000001,
      "heapDeltaBytes": -9385840,
      "heapUsedBytes": 62445820,
      "domNodes": 18,
      "jsHeapTotalBytes": 10104832,
      "scriptDurationMs": 103.1,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2051.8429999999626,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 19.830000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1007.0920000000001,
      "heapDeltaBytes": 10228272,
      "heapUsedBytes": 82898464,
      "domNodes": 18,
      "jsHeapTotalBytes": 12115968,
      "scriptDurationMs": 353.14300000000003,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2110.5380000000196,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 21.744,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1066.6030000000003,
      "heapDeltaBytes": 9597704,
      "heapUsedBytes": 82482332,
      "domNodes": 18,
      "jsHeapTotalBytes": 9494528,
      "scriptDurationMs": 378.672,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3071.7390000000364,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 21.318,
      "layouts": 60,
      "layoutDurationMs": 8.334999999999999,
      "taskDurationMs": 1266.4189999999999,
      "heapDeltaBytes": 12853240,
      "heapUsedBytes": 67510352,
      "domNodes": 16,
      "jsHeapTotalBytes": 6553600,
      "scriptDurationMs": 476.378,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3077.4599999999737,
      "styleRecalcs": 63,
      "styleRecalcDurationMs": 17.434,
      "layouts": 60,
      "layoutDurationMs": 8.165000000000001,
      "taskDurationMs": 1316.904,
      "heapDeltaBytes": 13236700,
      "heapUsedBytes": 67286936,
      "domNodes": -293,
      "jsHeapTotalBytes": 786432,
      "scriptDurationMs": 515.9549999999999,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2001.7879999999764,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.290999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 500.25600000000003,
      "heapDeltaBytes": -9252308,
      "heapUsedBytes": 64313040,
      "domNodes": 20,
      "jsHeapTotalBytes": 7483392,
      "scriptDurationMs": 79.807,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "minimap-idle",
      "durationMs": 2001.9909999999754,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.344999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 510.227,
      "heapDeltaBytes": -9143776,
      "heapUsedBytes": 64248952,
      "domNodes": 20,
      "jsHeapTotalBytes": 7221248,
      "scriptDurationMs": 84.481,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 581.7000000000121,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 13.794,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 387.26099999999997,
      "heapDeltaBytes": 7494056,
      "heapUsedBytes": 66222608,
      "domNodes": 18,
      "jsHeapTotalBytes": 18087936,
      "scriptDurationMs": 125.84299999999999,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 593.9280000000053,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 11.08,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 378.31399999999996,
      "heapDeltaBytes": 7673804,
      "heapUsedBytes": 66245052,
      "domNodes": 18,
      "jsHeapTotalBytes": 19660800,
      "scriptDurationMs": 131.113,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1989.8839999999893,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.908,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 365.47200000000004,
      "heapDeltaBytes": -2717652,
      "heapUsedBytes": 56053352,
      "domNodes": 18,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 13.963999999999997,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2006.0809999999947,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 10.242999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 372.004,
      "heapDeltaBytes": -2748524,
      "heapUsedBytes": 55894560,
      "domNodes": 20,
      "jsHeapTotalBytes": 24641536,
      "scriptDurationMs": 14.185,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1675.7649999999842,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 36.888,
      "layouts": 16,
      "layoutDurationMs": 4.404,
      "taskDurationMs": 640.557,
      "heapDeltaBytes": 15378804,
      "heapUsedBytes": 73926816,
      "domNodes": 60,
      "jsHeapTotalBytes": 25165824,
      "scriptDurationMs": 88.709,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1698.1030000000032,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 37.887,
      "layouts": 16,
      "layoutDurationMs": 4.805,
      "taskDurationMs": 652.6809999999999,
      "heapDeltaBytes": -4997316,
      "heapUsedBytes": 62936412,
      "domNodes": 63,
      "jsHeapTotalBytes": 21757952,
      "scriptDurationMs": 89.749,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 967.2570000000178,
      "styleRecalcs": 15,
      "styleRecalcDurationMs": 29.164,
      "layouts": 4,
      "layoutDurationMs": 12.629000000000001,
      "taskDurationMs": 743.3420000000002,
      "heapDeltaBytes": 2497500,
      "heapUsedBytes": 78186872,
      "domNodes": 13833,
      "jsHeapTotalBytes": 17301504,
      "scriptDurationMs": 29.116000000000003,
      "eventListeners": 2527,
      "totalBlockingTimeMs": 146,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8206.575999999985,
      "styleRecalcs": 253,
      "styleRecalcDurationMs": 62.21900000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3717.556,
      "heapDeltaBytes": -3724300,
      "heapUsedBytes": 67757124,
      "domNodes": 24,
      "jsHeapTotalBytes": 16310272,
      "scriptDurationMs": 1237.7530000000002,
      "eventListeners": 20,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8156.210999999928,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 62.095000000000006,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3760.199,
      "heapDeltaBytes": -4154072,
      "heapUsedBytes": 67328836,
      "domNodes": 18,
      "jsHeapTotalBytes": 16048128,
      "scriptDurationMs": 1222.126,
      "eventListeners": 20,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 13825.283000000014,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13807.479000000001,
      "heapDeltaBytes": -28202920,
      "heapUsedBytes": 169895516,
      "domNodes": -3302,
      "jsHeapTotalBytes": 19632128,
      "scriptDurationMs": 593.337,
      "eventListeners": -16471,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 13516.651999999907,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13501.775000000001,
      "heapDeltaBytes": -30929348,
      "heapUsedBytes": 170000580,
      "domNodes": -3302,
      "jsHeapTotalBytes": 19632128,
      "scriptDurationMs": 574.1820000000001,
      "eventListeners": -16472,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333237,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 16295.200999999963,
      "styleRecalcs": 89,
      "styleRecalcDurationMs": 22.650000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 16272.282000000001,
      "heapDeltaBytes": -39457900,
      "heapUsedBytes": 157154956,
      "domNodes": -3302,
      "jsHeapTotalBytes": 19107840,
      "scriptDurationMs": 909.1870000000001,
      "eventListeners": -16467,
      "totalBlockingTimeMs": 10,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 15714.31300000006,
      "styleRecalcs": 78,
      "styleRecalcDurationMs": 21.581000000000017,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 15692.57,
      "heapDeltaBytes": -39355524,
      "heapUsedBytes": 169797920,
      "domNodes": -3300,
      "jsHeapTotalBytes": 19107840,
      "scriptDurationMs": 918.2470000000001,
      "eventListeners": -16474,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "workflow-execution",
      "durationMs": 449.4109999999978,
      "styleRecalcs": 17,
      "styleRecalcDurationMs": 22.817999999999998,
      "layouts": 4,
      "layoutDurationMs": 1.2239999999999998,
      "taskDurationMs": 113.404,
      "heapDeltaBytes": 5429976,
      "heapUsedBytes": 65216536,
      "domNodes": 168,
      "jsHeapTotalBytes": 3407872,
      "scriptDurationMs": 16.758000000000003,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "workflow-execution",
      "durationMs": 451.21800000003986,
      "styleRecalcs": 17,
      "styleRecalcDurationMs": 22.485,
      "layouts": 4,
      "layoutDurationMs": 1.2030000000000003,
      "taskDurationMs": 112.707,
      "heapDeltaBytes": 4923392,
      "heapUsedBytes": 71786884,
      "domNodes": 157,
      "jsHeapTotalBytes": 4718592,
      "scriptDurationMs": 17.266999999999996,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66666666666665,
      "p95FrameDurationMs": 16.700000000000728
    }
  ]
}

@jaeone94 jaeone94 marked this pull request as ready for review June 19, 2026 04:53
@jaeone94 jaeone94 requested a review from a team June 19, 2026 04:53
@dosubot dosubot Bot added the size:L This PR changes 100-499 lines, ignoring generated files. label Jun 19, 2026
@jaeone94 jaeone94 marked this pull request as draft June 19, 2026 04:57

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
src/platform/missingModel/missingModelScan.test.ts (1)

899-975: ⚡ Quick win

Add an ancestor-bypassed subgraph regression test for enrichment.

Current cases only cover nodes whose own mode is muted/bypassed. Please add a
case where a node is mode 0 but lives under a bypassed/muted container and
shares model name with an active branch; assert that no url/hash enrichment
leaks from the inactive branch.

As per coding guidelines, “Write tests for all changes, especially bug fixes to catch future regressions.”

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/platform/missingModel/missingModelScan.test.ts` around lines 899 - 975,
Add a new test case after the "does not enrich from bypassed node metadata" test
to verify that enrichWithEmbeddedMetadata does not leak metadata from an
ancestor-bypassed subgraph. Create a ComfyWorkflowJSON graph structure with two
branches: one with a muted/bypassed container node that has properties
containing model metadata, and an active node inside that container with mode 0
referencing the same model name. Include a second active branch with a node that
also references the same model name but without the metadata. Call
enrichWithEmbeddedMetadata with candidates matching the model name and assert
that the result[0].url remains undefined, confirming no enrichment occurs from
the bypassed ancestor container.

Source: Coding guidelines

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@src/platform/missingModel/missingModelScan.ts`:
- Around line 219-220: The collectEmbeddedModels function currently includes all
embedded models without checking if they are within inactive ancestor subgraphs,
allowing metadata from muted or bypassed ancestors to be applied to active
candidates during enrichment. Either gate the collectEmbeddedModels collection
to exclude models in inactive ancestor subgraphs by checking ancestor activity
status, or restore source-bound matching using nodeId and widgetName during the
enrichment process (in the enrichment loop around lines 246-257) instead of
relying on global name and directory matching. This will prevent inactive branch
metadata from polluting active candidate download suggestions.

---

Nitpick comments:
In `@src/platform/missingModel/missingModelScan.test.ts`:
- Around line 899-975: Add a new test case after the "does not enrich from
bypassed node metadata" test to verify that enrichWithEmbeddedMetadata does not
leak metadata from an ancestor-bypassed subgraph. Create a ComfyWorkflowJSON
graph structure with two branches: one with a muted/bypassed container node that
has properties containing model metadata, and an active node inside that
container with mode 0 referencing the same model name. Include a second active
branch with a node that also references the same model name but without the
metadata. Call enrichWithEmbeddedMetadata with candidates matching the model
name and assert that the result[0].url remains undefined, confirming no
enrichment occurs from the bypassed ancestor container.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: b93e0791-b20a-4f28-a2f3-5185dbfa0ae6

📥 Commits

Reviewing files that changed from the base of the PR and between 5acd76c and 14befac.

📒 Files selected for processing (7)
  • src/platform/missingModel/__fixtures__/activeSubgraphUnmatchedModel.json
  • src/platform/missingModel/__fixtures__/bypassedSubgraphUnmatchedModel.json
  • src/platform/missingModel/missingModelPipeline.test.ts
  • src/platform/missingModel/missingModelPipeline.ts
  • src/platform/missingModel/missingModelScan.test.ts
  • src/platform/missingModel/missingModelScan.ts
  • src/platform/missingModel/types.ts
💤 Files with no reviewable changes (2)
  • src/platform/missingModel/fixtures/activeSubgraphUnmatchedModel.json
  • src/platform/missingModel/fixtures/bypassedSubgraphUnmatchedModel.json

Comment thread src/platform/missingModel/missingModelScan.ts
@codecov

codecov Bot commented Jun 19, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

@@            Coverage Diff             @@
##             main   #12990      +/-   ##
==========================================
+ Coverage   76.17%   76.27%   +0.09%     
==========================================
  Files        1572     1573       +1     
  Lines       88813   100749   +11936     
  Branches    26647    30380    +3733     
==========================================
+ Hits        67655    76842    +9187     
- Misses      20497    23116    +2619     
- Partials      661      791     +130     
Flag Coverage Δ
unit 62.90% <100.00%> (-0.03%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
src/platform/missingModel/missingModelPipeline.ts 86.04% <100.00%> (+6.25%) ⬆️
src/platform/missingModel/missingModelScan.ts 96.95% <100.00%> (+1.41%) ⬆️

... and 309 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@jaeone94 jaeone94 force-pushed the jaeone/models-metadata-only branch from 14befac to e452895 Compare June 19, 2026 05:05
@vercel

vercel Bot commented Jun 19, 2026

Copy link
Copy Markdown

Deployment failed with the following error:

Resource is limited - try again in 24 hours (more than 100, code: "api-deployments-free-per-day").

Learn More: https://vercel.com/uy-tieu-s-projects?upgradeToPro=build-rate-limit

coderabbitai[bot]
coderabbitai Bot previously approved these changes Jun 19, 2026
@jaeone94 jaeone94 marked this pull request as ready for review June 19, 2026 05:08
@vercel

vercel Bot commented Jun 19, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
comfyui-frontend-node-search-preview Error Error Jun 19, 2026 5:55am

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:L This PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant