fix: address QA report P0-P2 issues for 10/10 agent experience#208
Merged
miguel-heygen merged 2 commits intomainfrom Apr 6, 2026
Merged
fix: address QA report P0-P2 issues for 10/10 agent experience#208miguel-heygen merged 2 commits intomainfrom
miguel-heygen merged 2 commits intomainfrom
Conversation
22d97a6 to
3d1cc87
Compare
P0: Remove broken captions sub-composition from blank template (caused 404s for 10/10 agents), add clear animation pattern comment showing clip + inner wrapper structure, make compositions command introspect sub-compositions via data-composition-src. P1: Font mapping warnings now list all mapped fonts and suggest alternatives (including local install), browser 404s prefixed with [non-blocking] instead of [Browser:ERROR], default render concurrency increased from cores/2 (max 4) to cores*3/4 (max 6) with --concurrency alias. P2: gsap_css_transform_conflict lint rule now suggests exact GSAP property replacements (e.g. xPercent: -50), upgrade --yes actually runs the install instead of just printing the command. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
3d1cc87 to
c3bd8b7
Compare
8 tasks
Collaborator
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
- Remove --concurrency alias — --workers is the only flag - Remove the 1-8 worker cap — let users set any positive number, the engine's parallelCoordinator handles CPU/memory scaling - Keep the auto default (3/4 of cores, max 6) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
c7ca658 to
645f89f
Compare
vanceingalls
approved these changes
Apr 6, 2026
Collaborator
Author
Merge activity
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Addresses all 8 issues from the QA report to improve agent and user experience.
P0 — Must Fix
compositions/captions.htmland its reference from the blank template. Every agent (10/10) hit 404 errors during render.class="clip"+ inner wrapper pattern.hyperframes compositionsnow reads external HTML files referenced viadata-composition-srcand shows their real duration/element count instead of0.0s / 0 elements.P1 — Fix Soon
[non-blocking]instead of[Browser:ERROR].cores/2(max 4) tocores*3/4(max 6). Added--concurrencyalias.P2 — Nice to Have
gsap_css_transform_conflictnow suggests exact GSAP property replacements (e.g.,xPercent: -50, yPercent: -50).Before / After
Font mapping warning
Before:
After:
Browser 404s during render
Before:
[Browser:ERROR] Failed to load resource: the server responded with a status of 404After:
[non-blocking] Failed to load resource: the server responded with a status of 404Transform conflict lint
Before:
Fix: Remove the transform from CSS and use tl.fromTo...After:
Fix: Remove transform: translate(-50%, -50%) from CSS and replace with GSAP properties: xPercent: -50, yPercent: -50Compositions command
Before:
After:
Test plan
hyperframes init --template blankships without broken captions reference