[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-hyperframes-cli":3,"mdc--gxhl49-key":39,"related-repo-openai-hyperframes-cli":1915,"related-org-openai-hyperframes-cli":2039},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"hyperframes-cli","manage HyperFrames projects via CLI","HyperFrames CLI tool — hyperframes init, lint, inspect, preview, render, transcribe, tts, doctor, browser, info, upgrade, compositions, docs, benchmark. Use when scaffolding a project, linting, validating, inspecting visual layout in compositions, previewing in the studio, rendering to video, transcribing audio, generating TTS, or troubleshooting the HyperFrames environment.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"HTML","html","tag",{"name":17,"slug":18,"type":15},"CLI","cli",{"name":20,"slug":21,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},"Engineering","engineering",{"name":26,"slug":27,"type":15},"Video","video",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-24T05:14:23.942839",null,465,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fhyperframes\u002Fskills\u002Fhyperframes-cli","---\nname: hyperframes-cli\ndescription: HyperFrames CLI tool — hyperframes init, lint, inspect, preview, render, transcribe, tts, doctor, browser, info, upgrade, compositions, docs, benchmark. Use when scaffolding a project, linting, validating, inspecting visual layout in compositions, previewing in the studio, rendering to video, transcribing audio, generating TTS, or troubleshooting the HyperFrames environment.\n---\n\n# HyperFrames CLI\n\nEverything runs through `npx hyperframes`. Requires Node.js >= 22 and FFmpeg.\n\n## Workflow\n\n1. **Scaffold** — `npx hyperframes init my-video`\n2. **Write** — author HTML composition (see the `hyperframes` skill)\n3. **Lint** — `npx hyperframes lint`\n4. **Visual inspect** — `npx hyperframes inspect`\n5. **Preview** — `npx hyperframes preview`\n6. **Render** — `npx hyperframes render`\n\nLint and inspect before preview. `lint` catches missing `data-composition-id`, overlapping tracks, and unregistered timelines. `inspect` opens the rendered composition in headless Chrome, seeks through the timeline, and reports text spilling out of bubbles\u002Fcontainers or off the canvas.\n\n## Scaffolding\n\n```bash\nnpx hyperframes init my-video                        # interactive wizard\nnpx hyperframes init my-video --example warm-grain   # pick an example\nnpx hyperframes init my-video --video clip.mp4        # with video file\nnpx hyperframes init my-video --audio track.mp3       # with audio file\nnpx hyperframes init my-video --non-interactive       # skip prompts (CI\u002Fagents)\n```\n\nTemplates: `blank`, `warm-grain`, `play-mode`, `swiss-grid`, `vignelli`, `decision-tree`, `kinetic-type`, `product-promo`, `nyt-graph`.\n\n`init` creates the right file structure, copies media, transcribes audio with Whisper, and installs AI coding skills. Use it instead of creating files by hand.\n\n## Linting\n\n```bash\nnpx hyperframes lint                  # current directory\nnpx hyperframes lint .\u002Fmy-project     # specific project\nnpx hyperframes lint --verbose        # info-level findings\nnpx hyperframes lint --json           # machine-readable\n```\n\nLints `index.html` and all files in `compositions\u002F`. Reports errors (must fix), warnings (should fix), and info (with `--verbose`).\n\n## Visual Inspect\n\n```bash\nnpx hyperframes inspect                 # inspect rendered layout over the timeline\nnpx hyperframes inspect .\u002Fmy-project    # specific project\nnpx hyperframes inspect --json          # agent-readable findings\nnpx hyperframes inspect --samples 15    # denser timeline sweep\nnpx hyperframes inspect --at 1.5,4,7.25 # explicit hero-frame timestamps\n```\n\nUse this after `lint` and `validate`, especially for compositions with speech bubbles, cards, captions, or tight typography. It reports:\n\n- Text extending outside the nearest visual container or bubble\n- Text clipped by its own fixed-width\u002Ffixed-height box\n- Text extending outside the composition canvas\n- Children escaping clipping containers\n\nErrors should be fixed before rendering. Warnings are surfaced for agent review; add `--strict` to fail on warnings too. Repeated static issues are collapsed by default so JSON output stays compact for LLM context windows. If overflow is intentional for an entrance\u002Fexit animation, mark the element or ancestor with `data-layout-allow-overflow`. If a decorative element should never be audited, mark it with `data-layout-ignore`.\n\n`npx hyperframes layout` remains available as a compatibility alias for the same visual inspection pass.\n\n## Previewing\n\n```bash\nnpx hyperframes preview                   # serve current directory\nnpx hyperframes preview --port 4567       # custom port (default 3002)\n```\n\nHot-reloads on file changes. Opens the studio in your browser automatically.\n\nWhen handing a project back to the user, use the Studio project URL, not the\nsource `index.html` path:\n\n```text\nhttp:\u002F\u002Flocalhost:\u003Cport>\u002F#project\u002F\u003Cproject-name>\n```\n\nUse the actual port from the preview output and the project directory name. For\nexample, after `npx hyperframes preview --port 3017` in `codex-openai-video`,\nreport `http:\u002F\u002Flocalhost:3017\u002F#project\u002Fcodex-openai-video`.\n\nTreat `index.html` as source-code context only. It is fine to link it as an\nimplementation file, but do not label it as the project or preview surface.\n\n## Rendering\n\n```bash\nnpx hyperframes render                                # standard MP4\nnpx hyperframes render --output final.mp4             # named output\nnpx hyperframes render --quality draft                # fast iteration\nnpx hyperframes render --fps 60 --quality high        # final delivery\nnpx hyperframes render --format webm                  # transparent WebM\nnpx hyperframes render --docker                       # byte-identical\n```\n\n| Flag           | Options               | Default                    | Notes                       |\n| -------------- | --------------------- | -------------------------- | --------------------------- |\n| `--output`     | path                  | renders\u002Fname_timestamp.mp4 | Output path                 |\n| `--fps`        | 24, 30, 60            | 30                         | 60fps doubles render time   |\n| `--quality`    | draft, standard, high | standard                   | draft for iterating         |\n| `--format`     | mp4, webm             | mp4                        | WebM supports transparency  |\n| `--workers`    | 1-8 or auto           | auto                       | Each spawns Chrome          |\n| `--docker`     | flag                  | off                        | Reproducible output         |\n| `--gpu`        | flag                  | off                        | GPU-accelerated encoding    |\n| `--strict`     | flag                  | off                        | Fail on lint errors         |\n| `--strict-all` | flag                  | off                        | Fail on errors AND warnings |\n\n**Quality guidance:** `draft` while iterating, `standard` for review, `high` for final delivery.\n\n## Transcription\n\n```bash\nnpx hyperframes transcribe audio.mp3\nnpx hyperframes transcribe video.mp4 --model medium.en --language en\nnpx hyperframes transcribe subtitles.srt   # import existing\nnpx hyperframes transcribe subtitles.vtt\nnpx hyperframes transcribe openai-response.json\n```\n\n## Text-to-Speech\n\n```bash\nnpx hyperframes tts \"Text here\" --voice af_nova --output narration.wav\nnpx hyperframes tts script.txt --voice bf_emma\nnpx hyperframes tts --list  # show all voices\n```\n\n## Troubleshooting\n\n```bash\nnpx hyperframes doctor       # check environment (Chrome, FFmpeg, Node, memory)\nnpx hyperframes browser      # manage bundled Chrome\nnpx hyperframes info         # version and environment details\nnpx hyperframes upgrade      # check for updates\n```\n\nRun `doctor` first if rendering fails. Common issues: missing FFmpeg, missing Chrome, low memory.\n\n## Other\n\n```bash\nnpx hyperframes compositions   # list compositions in project\nnpx hyperframes docs           # open documentation\nnpx hyperframes benchmark .    # benchmark render performance\n```\n",{"data":40,"body":41},{"name":4,"description":6},{"type":42,"children":43},"root",[44,52,67,74,174,203,209,389,459,470,476,579,608,614,751,771,795,823,834,840,898,903,915,925,953,965,971,1154,1428,1461,1467,1600,1606,1718,1724,1815,1828,1834,1909],{"type":45,"tag":46,"props":47,"children":48},"element","h1",{"id":4},[49],{"type":50,"value":51},"text","HyperFrames CLI",{"type":45,"tag":53,"props":54,"children":55},"p",{},[56,58,65],{"type":50,"value":57},"Everything runs through ",{"type":45,"tag":59,"props":60,"children":62},"code",{"className":61},[],[63],{"type":50,"value":64},"npx hyperframes",{"type":50,"value":66},". Requires Node.js >= 22 and FFmpeg.",{"type":45,"tag":68,"props":69,"children":71},"h2",{"id":70},"workflow",[72],{"type":50,"value":73},"Workflow",{"type":45,"tag":75,"props":76,"children":77},"ol",{},[78,96,114,129,144,159],{"type":45,"tag":79,"props":80,"children":81},"li",{},[82,88,90],{"type":45,"tag":83,"props":84,"children":85},"strong",{},[86],{"type":50,"value":87},"Scaffold",{"type":50,"value":89}," — ",{"type":45,"tag":59,"props":91,"children":93},{"className":92},[],[94],{"type":50,"value":95},"npx hyperframes init my-video",{"type":45,"tag":79,"props":97,"children":98},{},[99,104,106,112],{"type":45,"tag":83,"props":100,"children":101},{},[102],{"type":50,"value":103},"Write",{"type":50,"value":105}," — author HTML composition (see the ",{"type":45,"tag":59,"props":107,"children":109},{"className":108},[],[110],{"type":50,"value":111},"hyperframes",{"type":50,"value":113}," skill)",{"type":45,"tag":79,"props":115,"children":116},{},[117,122,123],{"type":45,"tag":83,"props":118,"children":119},{},[120],{"type":50,"value":121},"Lint",{"type":50,"value":89},{"type":45,"tag":59,"props":124,"children":126},{"className":125},[],[127],{"type":50,"value":128},"npx hyperframes lint",{"type":45,"tag":79,"props":130,"children":131},{},[132,137,138],{"type":45,"tag":83,"props":133,"children":134},{},[135],{"type":50,"value":136},"Visual inspect",{"type":50,"value":89},{"type":45,"tag":59,"props":139,"children":141},{"className":140},[],[142],{"type":50,"value":143},"npx hyperframes inspect",{"type":45,"tag":79,"props":145,"children":146},{},[147,152,153],{"type":45,"tag":83,"props":148,"children":149},{},[150],{"type":50,"value":151},"Preview",{"type":50,"value":89},{"type":45,"tag":59,"props":154,"children":156},{"className":155},[],[157],{"type":50,"value":158},"npx hyperframes preview",{"type":45,"tag":79,"props":160,"children":161},{},[162,167,168],{"type":45,"tag":83,"props":163,"children":164},{},[165],{"type":50,"value":166},"Render",{"type":50,"value":89},{"type":45,"tag":59,"props":169,"children":171},{"className":170},[],[172],{"type":50,"value":173},"npx hyperframes render",{"type":45,"tag":53,"props":175,"children":176},{},[177,179,185,187,193,195,201],{"type":50,"value":178},"Lint and inspect before preview. ",{"type":45,"tag":59,"props":180,"children":182},{"className":181},[],[183],{"type":50,"value":184},"lint",{"type":50,"value":186}," catches missing ",{"type":45,"tag":59,"props":188,"children":190},{"className":189},[],[191],{"type":50,"value":192},"data-composition-id",{"type":50,"value":194},", overlapping tracks, and unregistered timelines. ",{"type":45,"tag":59,"props":196,"children":198},{"className":197},[],[199],{"type":50,"value":200},"inspect",{"type":50,"value":202}," opens the rendered composition in headless Chrome, seeks through the timeline, and reports text spilling out of bubbles\u002Fcontainers or off the canvas.",{"type":45,"tag":68,"props":204,"children":206},{"id":205},"scaffolding",[207],{"type":50,"value":208},"Scaffolding",{"type":45,"tag":210,"props":211,"children":216},"pre",{"className":212,"code":213,"language":214,"meta":215,"style":215},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx hyperframes init my-video                        # interactive wizard\nnpx hyperframes init my-video --example warm-grain   # pick an example\nnpx hyperframes init my-video --video clip.mp4        # with video file\nnpx hyperframes init my-video --audio track.mp3       # with audio file\nnpx hyperframes init my-video --non-interactive       # skip prompts (CI\u002Fagents)\n","bash","",[217],{"type":45,"tag":59,"props":218,"children":219},{"__ignoreMap":215},[220,254,289,324,359],{"type":45,"tag":221,"props":222,"children":225},"span",{"class":223,"line":224},"line",1,[226,232,238,243,248],{"type":45,"tag":221,"props":227,"children":229},{"style":228},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[230],{"type":50,"value":231},"npx",{"type":45,"tag":221,"props":233,"children":235},{"style":234},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[236],{"type":50,"value":237}," hyperframes",{"type":45,"tag":221,"props":239,"children":240},{"style":234},[241],{"type":50,"value":242}," init",{"type":45,"tag":221,"props":244,"children":245},{"style":234},[246],{"type":50,"value":247}," my-video",{"type":45,"tag":221,"props":249,"children":251},{"style":250},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[252],{"type":50,"value":253},"                        # interactive wizard\n",{"type":45,"tag":221,"props":255,"children":257},{"class":223,"line":256},2,[258,262,266,270,274,279,284],{"type":45,"tag":221,"props":259,"children":260},{"style":228},[261],{"type":50,"value":231},{"type":45,"tag":221,"props":263,"children":264},{"style":234},[265],{"type":50,"value":237},{"type":45,"tag":221,"props":267,"children":268},{"style":234},[269],{"type":50,"value":242},{"type":45,"tag":221,"props":271,"children":272},{"style":234},[273],{"type":50,"value":247},{"type":45,"tag":221,"props":275,"children":276},{"style":234},[277],{"type":50,"value":278}," --example",{"type":45,"tag":221,"props":280,"children":281},{"style":234},[282],{"type":50,"value":283}," warm-grain",{"type":45,"tag":221,"props":285,"children":286},{"style":250},[287],{"type":50,"value":288},"   # pick an example\n",{"type":45,"tag":221,"props":290,"children":292},{"class":223,"line":291},3,[293,297,301,305,309,314,319],{"type":45,"tag":221,"props":294,"children":295},{"style":228},[296],{"type":50,"value":231},{"type":45,"tag":221,"props":298,"children":299},{"style":234},[300],{"type":50,"value":237},{"type":45,"tag":221,"props":302,"children":303},{"style":234},[304],{"type":50,"value":242},{"type":45,"tag":221,"props":306,"children":307},{"style":234},[308],{"type":50,"value":247},{"type":45,"tag":221,"props":310,"children":311},{"style":234},[312],{"type":50,"value":313}," --video",{"type":45,"tag":221,"props":315,"children":316},{"style":234},[317],{"type":50,"value":318}," clip.mp4",{"type":45,"tag":221,"props":320,"children":321},{"style":250},[322],{"type":50,"value":323},"        # with video file\n",{"type":45,"tag":221,"props":325,"children":327},{"class":223,"line":326},4,[328,332,336,340,344,349,354],{"type":45,"tag":221,"props":329,"children":330},{"style":228},[331],{"type":50,"value":231},{"type":45,"tag":221,"props":333,"children":334},{"style":234},[335],{"type":50,"value":237},{"type":45,"tag":221,"props":337,"children":338},{"style":234},[339],{"type":50,"value":242},{"type":45,"tag":221,"props":341,"children":342},{"style":234},[343],{"type":50,"value":247},{"type":45,"tag":221,"props":345,"children":346},{"style":234},[347],{"type":50,"value":348}," --audio",{"type":45,"tag":221,"props":350,"children":351},{"style":234},[352],{"type":50,"value":353}," track.mp3",{"type":45,"tag":221,"props":355,"children":356},{"style":250},[357],{"type":50,"value":358},"       # with audio file\n",{"type":45,"tag":221,"props":360,"children":362},{"class":223,"line":361},5,[363,367,371,375,379,384],{"type":45,"tag":221,"props":364,"children":365},{"style":228},[366],{"type":50,"value":231},{"type":45,"tag":221,"props":368,"children":369},{"style":234},[370],{"type":50,"value":237},{"type":45,"tag":221,"props":372,"children":373},{"style":234},[374],{"type":50,"value":242},{"type":45,"tag":221,"props":376,"children":377},{"style":234},[378],{"type":50,"value":247},{"type":45,"tag":221,"props":380,"children":381},{"style":234},[382],{"type":50,"value":383}," --non-interactive",{"type":45,"tag":221,"props":385,"children":386},{"style":250},[387],{"type":50,"value":388},"       # skip prompts (CI\u002Fagents)\n",{"type":45,"tag":53,"props":390,"children":391},{},[392,394,400,402,408,409,415,416,422,423,429,430,436,437,443,444,450,451,457],{"type":50,"value":393},"Templates: ",{"type":45,"tag":59,"props":395,"children":397},{"className":396},[],[398],{"type":50,"value":399},"blank",{"type":50,"value":401},", ",{"type":45,"tag":59,"props":403,"children":405},{"className":404},[],[406],{"type":50,"value":407},"warm-grain",{"type":50,"value":401},{"type":45,"tag":59,"props":410,"children":412},{"className":411},[],[413],{"type":50,"value":414},"play-mode",{"type":50,"value":401},{"type":45,"tag":59,"props":417,"children":419},{"className":418},[],[420],{"type":50,"value":421},"swiss-grid",{"type":50,"value":401},{"type":45,"tag":59,"props":424,"children":426},{"className":425},[],[427],{"type":50,"value":428},"vignelli",{"type":50,"value":401},{"type":45,"tag":59,"props":431,"children":433},{"className":432},[],[434],{"type":50,"value":435},"decision-tree",{"type":50,"value":401},{"type":45,"tag":59,"props":438,"children":440},{"className":439},[],[441],{"type":50,"value":442},"kinetic-type",{"type":50,"value":401},{"type":45,"tag":59,"props":445,"children":447},{"className":446},[],[448],{"type":50,"value":449},"product-promo",{"type":50,"value":401},{"type":45,"tag":59,"props":452,"children":454},{"className":453},[],[455],{"type":50,"value":456},"nyt-graph",{"type":50,"value":458},".",{"type":45,"tag":53,"props":460,"children":461},{},[462,468],{"type":45,"tag":59,"props":463,"children":465},{"className":464},[],[466],{"type":50,"value":467},"init",{"type":50,"value":469}," creates the right file structure, copies media, transcribes audio with Whisper, and installs AI coding skills. Use it instead of creating files by hand.",{"type":45,"tag":68,"props":471,"children":473},{"id":472},"linting",[474],{"type":50,"value":475},"Linting",{"type":45,"tag":210,"props":477,"children":479},{"className":212,"code":478,"language":214,"meta":215,"style":215},"npx hyperframes lint                  # current directory\nnpx hyperframes lint .\u002Fmy-project     # specific project\nnpx hyperframes lint --verbose        # info-level findings\nnpx hyperframes lint --json           # machine-readable\n",[480],{"type":45,"tag":59,"props":481,"children":482},{"__ignoreMap":215},[483,504,529,554],{"type":45,"tag":221,"props":484,"children":485},{"class":223,"line":224},[486,490,494,499],{"type":45,"tag":221,"props":487,"children":488},{"style":228},[489],{"type":50,"value":231},{"type":45,"tag":221,"props":491,"children":492},{"style":234},[493],{"type":50,"value":237},{"type":45,"tag":221,"props":495,"children":496},{"style":234},[497],{"type":50,"value":498}," lint",{"type":45,"tag":221,"props":500,"children":501},{"style":250},[502],{"type":50,"value":503},"                  # current directory\n",{"type":45,"tag":221,"props":505,"children":506},{"class":223,"line":256},[507,511,515,519,524],{"type":45,"tag":221,"props":508,"children":509},{"style":228},[510],{"type":50,"value":231},{"type":45,"tag":221,"props":512,"children":513},{"style":234},[514],{"type":50,"value":237},{"type":45,"tag":221,"props":516,"children":517},{"style":234},[518],{"type":50,"value":498},{"type":45,"tag":221,"props":520,"children":521},{"style":234},[522],{"type":50,"value":523}," .\u002Fmy-project",{"type":45,"tag":221,"props":525,"children":526},{"style":250},[527],{"type":50,"value":528},"     # specific project\n",{"type":45,"tag":221,"props":530,"children":531},{"class":223,"line":291},[532,536,540,544,549],{"type":45,"tag":221,"props":533,"children":534},{"style":228},[535],{"type":50,"value":231},{"type":45,"tag":221,"props":537,"children":538},{"style":234},[539],{"type":50,"value":237},{"type":45,"tag":221,"props":541,"children":542},{"style":234},[543],{"type":50,"value":498},{"type":45,"tag":221,"props":545,"children":546},{"style":234},[547],{"type":50,"value":548}," --verbose",{"type":45,"tag":221,"props":550,"children":551},{"style":250},[552],{"type":50,"value":553},"        # info-level findings\n",{"type":45,"tag":221,"props":555,"children":556},{"class":223,"line":326},[557,561,565,569,574],{"type":45,"tag":221,"props":558,"children":559},{"style":228},[560],{"type":50,"value":231},{"type":45,"tag":221,"props":562,"children":563},{"style":234},[564],{"type":50,"value":237},{"type":45,"tag":221,"props":566,"children":567},{"style":234},[568],{"type":50,"value":498},{"type":45,"tag":221,"props":570,"children":571},{"style":234},[572],{"type":50,"value":573}," --json",{"type":45,"tag":221,"props":575,"children":576},{"style":250},[577],{"type":50,"value":578},"           # machine-readable\n",{"type":45,"tag":53,"props":580,"children":581},{},[582,584,590,592,598,600,606],{"type":50,"value":583},"Lints ",{"type":45,"tag":59,"props":585,"children":587},{"className":586},[],[588],{"type":50,"value":589},"index.html",{"type":50,"value":591}," and all files in ",{"type":45,"tag":59,"props":593,"children":595},{"className":594},[],[596],{"type":50,"value":597},"compositions\u002F",{"type":50,"value":599},". Reports errors (must fix), warnings (should fix), and info (with ",{"type":45,"tag":59,"props":601,"children":603},{"className":602},[],[604],{"type":50,"value":605},"--verbose",{"type":50,"value":607},").",{"type":45,"tag":68,"props":609,"children":611},{"id":610},"visual-inspect",[612],{"type":50,"value":613},"Visual Inspect",{"type":45,"tag":210,"props":615,"children":617},{"className":212,"code":616,"language":214,"meta":215,"style":215},"npx hyperframes inspect                 # inspect rendered layout over the timeline\nnpx hyperframes inspect .\u002Fmy-project    # specific project\nnpx hyperframes inspect --json          # agent-readable findings\nnpx hyperframes inspect --samples 15    # denser timeline sweep\nnpx hyperframes inspect --at 1.5,4,7.25 # explicit hero-frame timestamps\n",[618],{"type":45,"tag":59,"props":619,"children":620},{"__ignoreMap":215},[621,642,666,690,721],{"type":45,"tag":221,"props":622,"children":623},{"class":223,"line":224},[624,628,632,637],{"type":45,"tag":221,"props":625,"children":626},{"style":228},[627],{"type":50,"value":231},{"type":45,"tag":221,"props":629,"children":630},{"style":234},[631],{"type":50,"value":237},{"type":45,"tag":221,"props":633,"children":634},{"style":234},[635],{"type":50,"value":636}," inspect",{"type":45,"tag":221,"props":638,"children":639},{"style":250},[640],{"type":50,"value":641},"                 # inspect rendered layout over the timeline\n",{"type":45,"tag":221,"props":643,"children":644},{"class":223,"line":256},[645,649,653,657,661],{"type":45,"tag":221,"props":646,"children":647},{"style":228},[648],{"type":50,"value":231},{"type":45,"tag":221,"props":650,"children":651},{"style":234},[652],{"type":50,"value":237},{"type":45,"tag":221,"props":654,"children":655},{"style":234},[656],{"type":50,"value":636},{"type":45,"tag":221,"props":658,"children":659},{"style":234},[660],{"type":50,"value":523},{"type":45,"tag":221,"props":662,"children":663},{"style":250},[664],{"type":50,"value":665},"    # specific project\n",{"type":45,"tag":221,"props":667,"children":668},{"class":223,"line":291},[669,673,677,681,685],{"type":45,"tag":221,"props":670,"children":671},{"style":228},[672],{"type":50,"value":231},{"type":45,"tag":221,"props":674,"children":675},{"style":234},[676],{"type":50,"value":237},{"type":45,"tag":221,"props":678,"children":679},{"style":234},[680],{"type":50,"value":636},{"type":45,"tag":221,"props":682,"children":683},{"style":234},[684],{"type":50,"value":573},{"type":45,"tag":221,"props":686,"children":687},{"style":250},[688],{"type":50,"value":689},"          # agent-readable findings\n",{"type":45,"tag":221,"props":691,"children":692},{"class":223,"line":326},[693,697,701,705,710,716],{"type":45,"tag":221,"props":694,"children":695},{"style":228},[696],{"type":50,"value":231},{"type":45,"tag":221,"props":698,"children":699},{"style":234},[700],{"type":50,"value":237},{"type":45,"tag":221,"props":702,"children":703},{"style":234},[704],{"type":50,"value":636},{"type":45,"tag":221,"props":706,"children":707},{"style":234},[708],{"type":50,"value":709}," --samples",{"type":45,"tag":221,"props":711,"children":713},{"style":712},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[714],{"type":50,"value":715}," 15",{"type":45,"tag":221,"props":717,"children":718},{"style":250},[719],{"type":50,"value":720},"    # denser timeline sweep\n",{"type":45,"tag":221,"props":722,"children":723},{"class":223,"line":361},[724,728,732,736,741,746],{"type":45,"tag":221,"props":725,"children":726},{"style":228},[727],{"type":50,"value":231},{"type":45,"tag":221,"props":729,"children":730},{"style":234},[731],{"type":50,"value":237},{"type":45,"tag":221,"props":733,"children":734},{"style":234},[735],{"type":50,"value":636},{"type":45,"tag":221,"props":737,"children":738},{"style":234},[739],{"type":50,"value":740}," --at",{"type":45,"tag":221,"props":742,"children":743},{"style":234},[744],{"type":50,"value":745}," 1.5,4,7.25",{"type":45,"tag":221,"props":747,"children":748},{"style":250},[749],{"type":50,"value":750}," # explicit hero-frame timestamps\n",{"type":45,"tag":53,"props":752,"children":753},{},[754,756,761,763,769],{"type":50,"value":755},"Use this after ",{"type":45,"tag":59,"props":757,"children":759},{"className":758},[],[760],{"type":50,"value":184},{"type":50,"value":762}," and ",{"type":45,"tag":59,"props":764,"children":766},{"className":765},[],[767],{"type":50,"value":768},"validate",{"type":50,"value":770},", especially for compositions with speech bubbles, cards, captions, or tight typography. It reports:",{"type":45,"tag":772,"props":773,"children":774},"ul",{},[775,780,785,790],{"type":45,"tag":79,"props":776,"children":777},{},[778],{"type":50,"value":779},"Text extending outside the nearest visual container or bubble",{"type":45,"tag":79,"props":781,"children":782},{},[783],{"type":50,"value":784},"Text clipped by its own fixed-width\u002Ffixed-height box",{"type":45,"tag":79,"props":786,"children":787},{},[788],{"type":50,"value":789},"Text extending outside the composition canvas",{"type":45,"tag":79,"props":791,"children":792},{},[793],{"type":50,"value":794},"Children escaping clipping containers",{"type":45,"tag":53,"props":796,"children":797},{},[798,800,806,808,814,816,822],{"type":50,"value":799},"Errors should be fixed before rendering. Warnings are surfaced for agent review; add ",{"type":45,"tag":59,"props":801,"children":803},{"className":802},[],[804],{"type":50,"value":805},"--strict",{"type":50,"value":807}," to fail on warnings too. Repeated static issues are collapsed by default so JSON output stays compact for LLM context windows. If overflow is intentional for an entrance\u002Fexit animation, mark the element or ancestor with ",{"type":45,"tag":59,"props":809,"children":811},{"className":810},[],[812],{"type":50,"value":813},"data-layout-allow-overflow",{"type":50,"value":815},". If a decorative element should never be audited, mark it with ",{"type":45,"tag":59,"props":817,"children":819},{"className":818},[],[820],{"type":50,"value":821},"data-layout-ignore",{"type":50,"value":458},{"type":45,"tag":53,"props":824,"children":825},{},[826,832],{"type":45,"tag":59,"props":827,"children":829},{"className":828},[],[830],{"type":50,"value":831},"npx hyperframes layout",{"type":50,"value":833}," remains available as a compatibility alias for the same visual inspection pass.",{"type":45,"tag":68,"props":835,"children":837},{"id":836},"previewing",[838],{"type":50,"value":839},"Previewing",{"type":45,"tag":210,"props":841,"children":843},{"className":212,"code":842,"language":214,"meta":215,"style":215},"npx hyperframes preview                   # serve current directory\nnpx hyperframes preview --port 4567       # custom port (default 3002)\n",[844],{"type":45,"tag":59,"props":845,"children":846},{"__ignoreMap":215},[847,868],{"type":45,"tag":221,"props":848,"children":849},{"class":223,"line":224},[850,854,858,863],{"type":45,"tag":221,"props":851,"children":852},{"style":228},[853],{"type":50,"value":231},{"type":45,"tag":221,"props":855,"children":856},{"style":234},[857],{"type":50,"value":237},{"type":45,"tag":221,"props":859,"children":860},{"style":234},[861],{"type":50,"value":862}," preview",{"type":45,"tag":221,"props":864,"children":865},{"style":250},[866],{"type":50,"value":867},"                   # serve current directory\n",{"type":45,"tag":221,"props":869,"children":870},{"class":223,"line":256},[871,875,879,883,888,893],{"type":45,"tag":221,"props":872,"children":873},{"style":228},[874],{"type":50,"value":231},{"type":45,"tag":221,"props":876,"children":877},{"style":234},[878],{"type":50,"value":237},{"type":45,"tag":221,"props":880,"children":881},{"style":234},[882],{"type":50,"value":862},{"type":45,"tag":221,"props":884,"children":885},{"style":234},[886],{"type":50,"value":887}," --port",{"type":45,"tag":221,"props":889,"children":890},{"style":712},[891],{"type":50,"value":892}," 4567",{"type":45,"tag":221,"props":894,"children":895},{"style":250},[896],{"type":50,"value":897},"       # custom port (default 3002)\n",{"type":45,"tag":53,"props":899,"children":900},{},[901],{"type":50,"value":902},"Hot-reloads on file changes. Opens the studio in your browser automatically.",{"type":45,"tag":53,"props":904,"children":905},{},[906,908,913],{"type":50,"value":907},"When handing a project back to the user, use the Studio project URL, not the\nsource ",{"type":45,"tag":59,"props":909,"children":911},{"className":910},[],[912],{"type":50,"value":589},{"type":50,"value":914}," path:",{"type":45,"tag":210,"props":916,"children":920},{"className":917,"code":919,"language":50,"meta":215},[918],"language-text","http:\u002F\u002Flocalhost:\u003Cport>\u002F#project\u002F\u003Cproject-name>\n",[921],{"type":45,"tag":59,"props":922,"children":923},{"__ignoreMap":215},[924],{"type":50,"value":919},{"type":45,"tag":53,"props":926,"children":927},{},[928,930,936,938,944,946,952],{"type":50,"value":929},"Use the actual port from the preview output and the project directory name. For\nexample, after ",{"type":45,"tag":59,"props":931,"children":933},{"className":932},[],[934],{"type":50,"value":935},"npx hyperframes preview --port 3017",{"type":50,"value":937}," in ",{"type":45,"tag":59,"props":939,"children":941},{"className":940},[],[942],{"type":50,"value":943},"codex-openai-video",{"type":50,"value":945},",\nreport ",{"type":45,"tag":59,"props":947,"children":949},{"className":948},[],[950],{"type":50,"value":951},"http:\u002F\u002Flocalhost:3017\u002F#project\u002Fcodex-openai-video",{"type":50,"value":458},{"type":45,"tag":53,"props":954,"children":955},{},[956,958,963],{"type":50,"value":957},"Treat ",{"type":45,"tag":59,"props":959,"children":961},{"className":960},[],[962],{"type":50,"value":589},{"type":50,"value":964}," as source-code context only. It is fine to link it as an\nimplementation file, but do not label it as the project or preview surface.",{"type":45,"tag":68,"props":966,"children":968},{"id":967},"rendering",[969],{"type":50,"value":970},"Rendering",{"type":45,"tag":210,"props":972,"children":974},{"className":212,"code":973,"language":214,"meta":215,"style":215},"npx hyperframes render                                # standard MP4\nnpx hyperframes render --output final.mp4             # named output\nnpx hyperframes render --quality draft                # fast iteration\nnpx hyperframes render --fps 60 --quality high        # final delivery\nnpx hyperframes render --format webm                  # transparent WebM\nnpx hyperframes render --docker                       # byte-identical\n",[975],{"type":45,"tag":59,"props":976,"children":977},{"__ignoreMap":215},[978,999,1029,1059,1098,1128],{"type":45,"tag":221,"props":979,"children":980},{"class":223,"line":224},[981,985,989,994],{"type":45,"tag":221,"props":982,"children":983},{"style":228},[984],{"type":50,"value":231},{"type":45,"tag":221,"props":986,"children":987},{"style":234},[988],{"type":50,"value":237},{"type":45,"tag":221,"props":990,"children":991},{"style":234},[992],{"type":50,"value":993}," render",{"type":45,"tag":221,"props":995,"children":996},{"style":250},[997],{"type":50,"value":998},"                                # standard MP4\n",{"type":45,"tag":221,"props":1000,"children":1001},{"class":223,"line":256},[1002,1006,1010,1014,1019,1024],{"type":45,"tag":221,"props":1003,"children":1004},{"style":228},[1005],{"type":50,"value":231},{"type":45,"tag":221,"props":1007,"children":1008},{"style":234},[1009],{"type":50,"value":237},{"type":45,"tag":221,"props":1011,"children":1012},{"style":234},[1013],{"type":50,"value":993},{"type":45,"tag":221,"props":1015,"children":1016},{"style":234},[1017],{"type":50,"value":1018}," --output",{"type":45,"tag":221,"props":1020,"children":1021},{"style":234},[1022],{"type":50,"value":1023}," final.mp4",{"type":45,"tag":221,"props":1025,"children":1026},{"style":250},[1027],{"type":50,"value":1028},"             # named output\n",{"type":45,"tag":221,"props":1030,"children":1031},{"class":223,"line":291},[1032,1036,1040,1044,1049,1054],{"type":45,"tag":221,"props":1033,"children":1034},{"style":228},[1035],{"type":50,"value":231},{"type":45,"tag":221,"props":1037,"children":1038},{"style":234},[1039],{"type":50,"value":237},{"type":45,"tag":221,"props":1041,"children":1042},{"style":234},[1043],{"type":50,"value":993},{"type":45,"tag":221,"props":1045,"children":1046},{"style":234},[1047],{"type":50,"value":1048}," --quality",{"type":45,"tag":221,"props":1050,"children":1051},{"style":234},[1052],{"type":50,"value":1053}," draft",{"type":45,"tag":221,"props":1055,"children":1056},{"style":250},[1057],{"type":50,"value":1058},"                # fast iteration\n",{"type":45,"tag":221,"props":1060,"children":1061},{"class":223,"line":326},[1062,1066,1070,1074,1079,1084,1088,1093],{"type":45,"tag":221,"props":1063,"children":1064},{"style":228},[1065],{"type":50,"value":231},{"type":45,"tag":221,"props":1067,"children":1068},{"style":234},[1069],{"type":50,"value":237},{"type":45,"tag":221,"props":1071,"children":1072},{"style":234},[1073],{"type":50,"value":993},{"type":45,"tag":221,"props":1075,"children":1076},{"style":234},[1077],{"type":50,"value":1078}," --fps",{"type":45,"tag":221,"props":1080,"children":1081},{"style":712},[1082],{"type":50,"value":1083}," 60",{"type":45,"tag":221,"props":1085,"children":1086},{"style":234},[1087],{"type":50,"value":1048},{"type":45,"tag":221,"props":1089,"children":1090},{"style":234},[1091],{"type":50,"value":1092}," high",{"type":45,"tag":221,"props":1094,"children":1095},{"style":250},[1096],{"type":50,"value":1097},"        # final delivery\n",{"type":45,"tag":221,"props":1099,"children":1100},{"class":223,"line":361},[1101,1105,1109,1113,1118,1123],{"type":45,"tag":221,"props":1102,"children":1103},{"style":228},[1104],{"type":50,"value":231},{"type":45,"tag":221,"props":1106,"children":1107},{"style":234},[1108],{"type":50,"value":237},{"type":45,"tag":221,"props":1110,"children":1111},{"style":234},[1112],{"type":50,"value":993},{"type":45,"tag":221,"props":1114,"children":1115},{"style":234},[1116],{"type":50,"value":1117}," --format",{"type":45,"tag":221,"props":1119,"children":1120},{"style":234},[1121],{"type":50,"value":1122}," webm",{"type":45,"tag":221,"props":1124,"children":1125},{"style":250},[1126],{"type":50,"value":1127},"                  # transparent WebM\n",{"type":45,"tag":221,"props":1129,"children":1131},{"class":223,"line":1130},6,[1132,1136,1140,1144,1149],{"type":45,"tag":221,"props":1133,"children":1134},{"style":228},[1135],{"type":50,"value":231},{"type":45,"tag":221,"props":1137,"children":1138},{"style":234},[1139],{"type":50,"value":237},{"type":45,"tag":221,"props":1141,"children":1142},{"style":234},[1143],{"type":50,"value":993},{"type":45,"tag":221,"props":1145,"children":1146},{"style":234},[1147],{"type":50,"value":1148}," --docker",{"type":45,"tag":221,"props":1150,"children":1151},{"style":250},[1152],{"type":50,"value":1153},"                       # byte-identical\n",{"type":45,"tag":1155,"props":1156,"children":1157},"table",{},[1158,1187],{"type":45,"tag":1159,"props":1160,"children":1161},"thead",{},[1162],{"type":45,"tag":1163,"props":1164,"children":1165},"tr",{},[1166,1172,1177,1182],{"type":45,"tag":1167,"props":1168,"children":1169},"th",{},[1170],{"type":50,"value":1171},"Flag",{"type":45,"tag":1167,"props":1173,"children":1174},{},[1175],{"type":50,"value":1176},"Options",{"type":45,"tag":1167,"props":1178,"children":1179},{},[1180],{"type":50,"value":1181},"Default",{"type":45,"tag":1167,"props":1183,"children":1184},{},[1185],{"type":50,"value":1186},"Notes",{"type":45,"tag":1188,"props":1189,"children":1190},"tbody",{},[1191,1219,1246,1273,1300,1327,1354,1379,1403],{"type":45,"tag":1163,"props":1192,"children":1193},{},[1194,1204,1209,1214],{"type":45,"tag":1195,"props":1196,"children":1197},"td",{},[1198],{"type":45,"tag":59,"props":1199,"children":1201},{"className":1200},[],[1202],{"type":50,"value":1203},"--output",{"type":45,"tag":1195,"props":1205,"children":1206},{},[1207],{"type":50,"value":1208},"path",{"type":45,"tag":1195,"props":1210,"children":1211},{},[1212],{"type":50,"value":1213},"renders\u002Fname_timestamp.mp4",{"type":45,"tag":1195,"props":1215,"children":1216},{},[1217],{"type":50,"value":1218},"Output path",{"type":45,"tag":1163,"props":1220,"children":1221},{},[1222,1231,1236,1241],{"type":45,"tag":1195,"props":1223,"children":1224},{},[1225],{"type":45,"tag":59,"props":1226,"children":1228},{"className":1227},[],[1229],{"type":50,"value":1230},"--fps",{"type":45,"tag":1195,"props":1232,"children":1233},{},[1234],{"type":50,"value":1235},"24, 30, 60",{"type":45,"tag":1195,"props":1237,"children":1238},{},[1239],{"type":50,"value":1240},"30",{"type":45,"tag":1195,"props":1242,"children":1243},{},[1244],{"type":50,"value":1245},"60fps doubles render time",{"type":45,"tag":1163,"props":1247,"children":1248},{},[1249,1258,1263,1268],{"type":45,"tag":1195,"props":1250,"children":1251},{},[1252],{"type":45,"tag":59,"props":1253,"children":1255},{"className":1254},[],[1256],{"type":50,"value":1257},"--quality",{"type":45,"tag":1195,"props":1259,"children":1260},{},[1261],{"type":50,"value":1262},"draft, standard, high",{"type":45,"tag":1195,"props":1264,"children":1265},{},[1266],{"type":50,"value":1267},"standard",{"type":45,"tag":1195,"props":1269,"children":1270},{},[1271],{"type":50,"value":1272},"draft for iterating",{"type":45,"tag":1163,"props":1274,"children":1275},{},[1276,1285,1290,1295],{"type":45,"tag":1195,"props":1277,"children":1278},{},[1279],{"type":45,"tag":59,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":50,"value":1284},"--format",{"type":45,"tag":1195,"props":1286,"children":1287},{},[1288],{"type":50,"value":1289},"mp4, webm",{"type":45,"tag":1195,"props":1291,"children":1292},{},[1293],{"type":50,"value":1294},"mp4",{"type":45,"tag":1195,"props":1296,"children":1297},{},[1298],{"type":50,"value":1299},"WebM supports transparency",{"type":45,"tag":1163,"props":1301,"children":1302},{},[1303,1312,1317,1322],{"type":45,"tag":1195,"props":1304,"children":1305},{},[1306],{"type":45,"tag":59,"props":1307,"children":1309},{"className":1308},[],[1310],{"type":50,"value":1311},"--workers",{"type":45,"tag":1195,"props":1313,"children":1314},{},[1315],{"type":50,"value":1316},"1-8 or auto",{"type":45,"tag":1195,"props":1318,"children":1319},{},[1320],{"type":50,"value":1321},"auto",{"type":45,"tag":1195,"props":1323,"children":1324},{},[1325],{"type":50,"value":1326},"Each spawns Chrome",{"type":45,"tag":1163,"props":1328,"children":1329},{},[1330,1339,1344,1349],{"type":45,"tag":1195,"props":1331,"children":1332},{},[1333],{"type":45,"tag":59,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":50,"value":1338},"--docker",{"type":45,"tag":1195,"props":1340,"children":1341},{},[1342],{"type":50,"value":1343},"flag",{"type":45,"tag":1195,"props":1345,"children":1346},{},[1347],{"type":50,"value":1348},"off",{"type":45,"tag":1195,"props":1350,"children":1351},{},[1352],{"type":50,"value":1353},"Reproducible output",{"type":45,"tag":1163,"props":1355,"children":1356},{},[1357,1366,1370,1374],{"type":45,"tag":1195,"props":1358,"children":1359},{},[1360],{"type":45,"tag":59,"props":1361,"children":1363},{"className":1362},[],[1364],{"type":50,"value":1365},"--gpu",{"type":45,"tag":1195,"props":1367,"children":1368},{},[1369],{"type":50,"value":1343},{"type":45,"tag":1195,"props":1371,"children":1372},{},[1373],{"type":50,"value":1348},{"type":45,"tag":1195,"props":1375,"children":1376},{},[1377],{"type":50,"value":1378},"GPU-accelerated encoding",{"type":45,"tag":1163,"props":1380,"children":1381},{},[1382,1390,1394,1398],{"type":45,"tag":1195,"props":1383,"children":1384},{},[1385],{"type":45,"tag":59,"props":1386,"children":1388},{"className":1387},[],[1389],{"type":50,"value":805},{"type":45,"tag":1195,"props":1391,"children":1392},{},[1393],{"type":50,"value":1343},{"type":45,"tag":1195,"props":1395,"children":1396},{},[1397],{"type":50,"value":1348},{"type":45,"tag":1195,"props":1399,"children":1400},{},[1401],{"type":50,"value":1402},"Fail on lint errors",{"type":45,"tag":1163,"props":1404,"children":1405},{},[1406,1415,1419,1423],{"type":45,"tag":1195,"props":1407,"children":1408},{},[1409],{"type":45,"tag":59,"props":1410,"children":1412},{"className":1411},[],[1413],{"type":50,"value":1414},"--strict-all",{"type":45,"tag":1195,"props":1416,"children":1417},{},[1418],{"type":50,"value":1343},{"type":45,"tag":1195,"props":1420,"children":1421},{},[1422],{"type":50,"value":1348},{"type":45,"tag":1195,"props":1424,"children":1425},{},[1426],{"type":50,"value":1427},"Fail on errors AND warnings",{"type":45,"tag":53,"props":1429,"children":1430},{},[1431,1436,1438,1444,1446,1451,1453,1459],{"type":45,"tag":83,"props":1432,"children":1433},{},[1434],{"type":50,"value":1435},"Quality guidance:",{"type":50,"value":1437}," ",{"type":45,"tag":59,"props":1439,"children":1441},{"className":1440},[],[1442],{"type":50,"value":1443},"draft",{"type":50,"value":1445}," while iterating, ",{"type":45,"tag":59,"props":1447,"children":1449},{"className":1448},[],[1450],{"type":50,"value":1267},{"type":50,"value":1452}," for review, ",{"type":45,"tag":59,"props":1454,"children":1456},{"className":1455},[],[1457],{"type":50,"value":1458},"high",{"type":50,"value":1460}," for final delivery.",{"type":45,"tag":68,"props":1462,"children":1464},{"id":1463},"transcription",[1465],{"type":50,"value":1466},"Transcription",{"type":45,"tag":210,"props":1468,"children":1470},{"className":212,"code":1469,"language":214,"meta":215,"style":215},"npx hyperframes transcribe audio.mp3\nnpx hyperframes transcribe video.mp4 --model medium.en --language en\nnpx hyperframes transcribe subtitles.srt   # import existing\nnpx hyperframes transcribe subtitles.vtt\nnpx hyperframes transcribe openai-response.json\n",[1471],{"type":45,"tag":59,"props":1472,"children":1473},{"__ignoreMap":215},[1474,1495,1535,1560,1580],{"type":45,"tag":221,"props":1475,"children":1476},{"class":223,"line":224},[1477,1481,1485,1490],{"type":45,"tag":221,"props":1478,"children":1479},{"style":228},[1480],{"type":50,"value":231},{"type":45,"tag":221,"props":1482,"children":1483},{"style":234},[1484],{"type":50,"value":237},{"type":45,"tag":221,"props":1486,"children":1487},{"style":234},[1488],{"type":50,"value":1489}," transcribe",{"type":45,"tag":221,"props":1491,"children":1492},{"style":234},[1493],{"type":50,"value":1494}," audio.mp3\n",{"type":45,"tag":221,"props":1496,"children":1497},{"class":223,"line":256},[1498,1502,1506,1510,1515,1520,1525,1530],{"type":45,"tag":221,"props":1499,"children":1500},{"style":228},[1501],{"type":50,"value":231},{"type":45,"tag":221,"props":1503,"children":1504},{"style":234},[1505],{"type":50,"value":237},{"type":45,"tag":221,"props":1507,"children":1508},{"style":234},[1509],{"type":50,"value":1489},{"type":45,"tag":221,"props":1511,"children":1512},{"style":234},[1513],{"type":50,"value":1514}," video.mp4",{"type":45,"tag":221,"props":1516,"children":1517},{"style":234},[1518],{"type":50,"value":1519}," --model",{"type":45,"tag":221,"props":1521,"children":1522},{"style":234},[1523],{"type":50,"value":1524}," medium.en",{"type":45,"tag":221,"props":1526,"children":1527},{"style":234},[1528],{"type":50,"value":1529}," --language",{"type":45,"tag":221,"props":1531,"children":1532},{"style":234},[1533],{"type":50,"value":1534}," en\n",{"type":45,"tag":221,"props":1536,"children":1537},{"class":223,"line":291},[1538,1542,1546,1550,1555],{"type":45,"tag":221,"props":1539,"children":1540},{"style":228},[1541],{"type":50,"value":231},{"type":45,"tag":221,"props":1543,"children":1544},{"style":234},[1545],{"type":50,"value":237},{"type":45,"tag":221,"props":1547,"children":1548},{"style":234},[1549],{"type":50,"value":1489},{"type":45,"tag":221,"props":1551,"children":1552},{"style":234},[1553],{"type":50,"value":1554}," subtitles.srt",{"type":45,"tag":221,"props":1556,"children":1557},{"style":250},[1558],{"type":50,"value":1559},"   # import existing\n",{"type":45,"tag":221,"props":1561,"children":1562},{"class":223,"line":326},[1563,1567,1571,1575],{"type":45,"tag":221,"props":1564,"children":1565},{"style":228},[1566],{"type":50,"value":231},{"type":45,"tag":221,"props":1568,"children":1569},{"style":234},[1570],{"type":50,"value":237},{"type":45,"tag":221,"props":1572,"children":1573},{"style":234},[1574],{"type":50,"value":1489},{"type":45,"tag":221,"props":1576,"children":1577},{"style":234},[1578],{"type":50,"value":1579}," subtitles.vtt\n",{"type":45,"tag":221,"props":1581,"children":1582},{"class":223,"line":361},[1583,1587,1591,1595],{"type":45,"tag":221,"props":1584,"children":1585},{"style":228},[1586],{"type":50,"value":231},{"type":45,"tag":221,"props":1588,"children":1589},{"style":234},[1590],{"type":50,"value":237},{"type":45,"tag":221,"props":1592,"children":1593},{"style":234},[1594],{"type":50,"value":1489},{"type":45,"tag":221,"props":1596,"children":1597},{"style":234},[1598],{"type":50,"value":1599}," openai-response.json\n",{"type":45,"tag":68,"props":1601,"children":1603},{"id":1602},"text-to-speech",[1604],{"type":50,"value":1605},"Text-to-Speech",{"type":45,"tag":210,"props":1607,"children":1609},{"className":212,"code":1608,"language":214,"meta":215,"style":215},"npx hyperframes tts \"Text here\" --voice af_nova --output narration.wav\nnpx hyperframes tts script.txt --voice bf_emma\nnpx hyperframes tts --list  # show all voices\n",[1610],{"type":45,"tag":59,"props":1611,"children":1612},{"__ignoreMap":215},[1613,1664,1693],{"type":45,"tag":221,"props":1614,"children":1615},{"class":223,"line":224},[1616,1620,1624,1629,1635,1640,1645,1650,1655,1659],{"type":45,"tag":221,"props":1617,"children":1618},{"style":228},[1619],{"type":50,"value":231},{"type":45,"tag":221,"props":1621,"children":1622},{"style":234},[1623],{"type":50,"value":237},{"type":45,"tag":221,"props":1625,"children":1626},{"style":234},[1627],{"type":50,"value":1628}," tts",{"type":45,"tag":221,"props":1630,"children":1632},{"style":1631},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1633],{"type":50,"value":1634}," \"",{"type":45,"tag":221,"props":1636,"children":1637},{"style":234},[1638],{"type":50,"value":1639},"Text here",{"type":45,"tag":221,"props":1641,"children":1642},{"style":1631},[1643],{"type":50,"value":1644},"\"",{"type":45,"tag":221,"props":1646,"children":1647},{"style":234},[1648],{"type":50,"value":1649}," --voice",{"type":45,"tag":221,"props":1651,"children":1652},{"style":234},[1653],{"type":50,"value":1654}," af_nova",{"type":45,"tag":221,"props":1656,"children":1657},{"style":234},[1658],{"type":50,"value":1018},{"type":45,"tag":221,"props":1660,"children":1661},{"style":234},[1662],{"type":50,"value":1663}," narration.wav\n",{"type":45,"tag":221,"props":1665,"children":1666},{"class":223,"line":256},[1667,1671,1675,1679,1684,1688],{"type":45,"tag":221,"props":1668,"children":1669},{"style":228},[1670],{"type":50,"value":231},{"type":45,"tag":221,"props":1672,"children":1673},{"style":234},[1674],{"type":50,"value":237},{"type":45,"tag":221,"props":1676,"children":1677},{"style":234},[1678],{"type":50,"value":1628},{"type":45,"tag":221,"props":1680,"children":1681},{"style":234},[1682],{"type":50,"value":1683}," script.txt",{"type":45,"tag":221,"props":1685,"children":1686},{"style":234},[1687],{"type":50,"value":1649},{"type":45,"tag":221,"props":1689,"children":1690},{"style":234},[1691],{"type":50,"value":1692}," bf_emma\n",{"type":45,"tag":221,"props":1694,"children":1695},{"class":223,"line":291},[1696,1700,1704,1708,1713],{"type":45,"tag":221,"props":1697,"children":1698},{"style":228},[1699],{"type":50,"value":231},{"type":45,"tag":221,"props":1701,"children":1702},{"style":234},[1703],{"type":50,"value":237},{"type":45,"tag":221,"props":1705,"children":1706},{"style":234},[1707],{"type":50,"value":1628},{"type":45,"tag":221,"props":1709,"children":1710},{"style":234},[1711],{"type":50,"value":1712}," --list",{"type":45,"tag":221,"props":1714,"children":1715},{"style":250},[1716],{"type":50,"value":1717},"  # show all voices\n",{"type":45,"tag":68,"props":1719,"children":1721},{"id":1720},"troubleshooting",[1722],{"type":50,"value":1723},"Troubleshooting",{"type":45,"tag":210,"props":1725,"children":1727},{"className":212,"code":1726,"language":214,"meta":215,"style":215},"npx hyperframes doctor       # check environment (Chrome, FFmpeg, Node, memory)\nnpx hyperframes browser      # manage bundled Chrome\nnpx hyperframes info         # version and environment details\nnpx hyperframes upgrade      # check for updates\n",[1728],{"type":45,"tag":59,"props":1729,"children":1730},{"__ignoreMap":215},[1731,1752,1773,1794],{"type":45,"tag":221,"props":1732,"children":1733},{"class":223,"line":224},[1734,1738,1742,1747],{"type":45,"tag":221,"props":1735,"children":1736},{"style":228},[1737],{"type":50,"value":231},{"type":45,"tag":221,"props":1739,"children":1740},{"style":234},[1741],{"type":50,"value":237},{"type":45,"tag":221,"props":1743,"children":1744},{"style":234},[1745],{"type":50,"value":1746}," doctor",{"type":45,"tag":221,"props":1748,"children":1749},{"style":250},[1750],{"type":50,"value":1751},"       # check environment (Chrome, FFmpeg, Node, memory)\n",{"type":45,"tag":221,"props":1753,"children":1754},{"class":223,"line":256},[1755,1759,1763,1768],{"type":45,"tag":221,"props":1756,"children":1757},{"style":228},[1758],{"type":50,"value":231},{"type":45,"tag":221,"props":1760,"children":1761},{"style":234},[1762],{"type":50,"value":237},{"type":45,"tag":221,"props":1764,"children":1765},{"style":234},[1766],{"type":50,"value":1767}," browser",{"type":45,"tag":221,"props":1769,"children":1770},{"style":250},[1771],{"type":50,"value":1772},"      # manage bundled Chrome\n",{"type":45,"tag":221,"props":1774,"children":1775},{"class":223,"line":291},[1776,1780,1784,1789],{"type":45,"tag":221,"props":1777,"children":1778},{"style":228},[1779],{"type":50,"value":231},{"type":45,"tag":221,"props":1781,"children":1782},{"style":234},[1783],{"type":50,"value":237},{"type":45,"tag":221,"props":1785,"children":1786},{"style":234},[1787],{"type":50,"value":1788}," info",{"type":45,"tag":221,"props":1790,"children":1791},{"style":250},[1792],{"type":50,"value":1793},"         # version and environment details\n",{"type":45,"tag":221,"props":1795,"children":1796},{"class":223,"line":326},[1797,1801,1805,1810],{"type":45,"tag":221,"props":1798,"children":1799},{"style":228},[1800],{"type":50,"value":231},{"type":45,"tag":221,"props":1802,"children":1803},{"style":234},[1804],{"type":50,"value":237},{"type":45,"tag":221,"props":1806,"children":1807},{"style":234},[1808],{"type":50,"value":1809}," upgrade",{"type":45,"tag":221,"props":1811,"children":1812},{"style":250},[1813],{"type":50,"value":1814},"      # check for updates\n",{"type":45,"tag":53,"props":1816,"children":1817},{},[1818,1820,1826],{"type":50,"value":1819},"Run ",{"type":45,"tag":59,"props":1821,"children":1823},{"className":1822},[],[1824],{"type":50,"value":1825},"doctor",{"type":50,"value":1827}," first if rendering fails. Common issues: missing FFmpeg, missing Chrome, low memory.",{"type":45,"tag":68,"props":1829,"children":1831},{"id":1830},"other",[1832],{"type":50,"value":1833},"Other",{"type":45,"tag":210,"props":1835,"children":1837},{"className":212,"code":1836,"language":214,"meta":215,"style":215},"npx hyperframes compositions   # list compositions in project\nnpx hyperframes docs           # open documentation\nnpx hyperframes benchmark .    # benchmark render performance\n",[1838],{"type":45,"tag":59,"props":1839,"children":1840},{"__ignoreMap":215},[1841,1862,1883],{"type":45,"tag":221,"props":1842,"children":1843},{"class":223,"line":224},[1844,1848,1852,1857],{"type":45,"tag":221,"props":1845,"children":1846},{"style":228},[1847],{"type":50,"value":231},{"type":45,"tag":221,"props":1849,"children":1850},{"style":234},[1851],{"type":50,"value":237},{"type":45,"tag":221,"props":1853,"children":1854},{"style":234},[1855],{"type":50,"value":1856}," compositions",{"type":45,"tag":221,"props":1858,"children":1859},{"style":250},[1860],{"type":50,"value":1861},"   # list compositions in project\n",{"type":45,"tag":221,"props":1863,"children":1864},{"class":223,"line":256},[1865,1869,1873,1878],{"type":45,"tag":221,"props":1866,"children":1867},{"style":228},[1868],{"type":50,"value":231},{"type":45,"tag":221,"props":1870,"children":1871},{"style":234},[1872],{"type":50,"value":237},{"type":45,"tag":221,"props":1874,"children":1875},{"style":234},[1876],{"type":50,"value":1877}," docs",{"type":45,"tag":221,"props":1879,"children":1880},{"style":250},[1881],{"type":50,"value":1882},"           # open documentation\n",{"type":45,"tag":221,"props":1884,"children":1885},{"class":223,"line":291},[1886,1890,1894,1899,1904],{"type":45,"tag":221,"props":1887,"children":1888},{"style":228},[1889],{"type":50,"value":231},{"type":45,"tag":221,"props":1891,"children":1892},{"style":234},[1893],{"type":50,"value":237},{"type":45,"tag":221,"props":1895,"children":1896},{"style":234},[1897],{"type":50,"value":1898}," benchmark",{"type":45,"tag":221,"props":1900,"children":1901},{"style":234},[1902],{"type":50,"value":1903}," .",{"type":45,"tag":221,"props":1905,"children":1906},{"style":250},[1907],{"type":50,"value":1908},"    # benchmark render performance\n",{"type":45,"tag":1910,"props":1911,"children":1912},"style",{},[1913],{"type":50,"value":1914},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1916,"total":2038},[1917,1936,1952,1964,1984,2006,2026],{"slug":1918,"name":1918,"fn":1919,"description":1920,"org":1921,"tags":1922,"stars":28,"repoUrl":29,"updatedAt":1935},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1923,1926,1929,1932],{"name":1924,"slug":1925,"type":15},"Accessibility","accessibility",{"name":1927,"slug":1928,"type":15},"Charts","charts",{"name":1930,"slug":1931,"type":15},"Data Visualization","data-visualization",{"name":1933,"slug":1934,"type":15},"Design","design","2026-06-30T19:00:57.102",{"slug":1937,"name":1937,"fn":1938,"description":1939,"org":1940,"tags":1941,"stars":28,"repoUrl":29,"updatedAt":1951},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1942,1945,1948],{"name":1943,"slug":1944,"type":15},"Agents","agents",{"name":1946,"slug":1947,"type":15},"Browser Automation","browser-automation",{"name":1949,"slug":1950,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1953,"name":1953,"fn":1954,"description":1955,"org":1956,"tags":1957,"stars":28,"repoUrl":29,"updatedAt":1963},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1958,1959,1962],{"name":1946,"slug":1947,"type":15},{"name":1960,"slug":1961,"type":15},"Local Development","local-development",{"name":1949,"slug":1950,"type":15},"2026-04-06T18:41:17.526867",{"slug":1965,"name":1965,"fn":1966,"description":1967,"org":1968,"tags":1969,"stars":28,"repoUrl":29,"updatedAt":1983},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1970,1971,1974,1977,1980],{"name":1943,"slug":1944,"type":15},{"name":1972,"slug":1973,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1975,"slug":1976,"type":15},"SDK","sdk",{"name":1978,"slug":1979,"type":15},"Serverless","serverless",{"name":1981,"slug":1982,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1985,"name":1985,"fn":1986,"description":1987,"org":1988,"tags":1989,"stars":28,"repoUrl":29,"updatedAt":2005},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1990,1993,1996,1999,2002],{"name":1991,"slug":1992,"type":15},"Frontend","frontend",{"name":1994,"slug":1995,"type":15},"React","react",{"name":1997,"slug":1998,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":2000,"slug":2001,"type":15},"UI Components","ui-components",{"name":2003,"slug":2004,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":2007,"name":2007,"fn":2008,"description":2009,"org":2010,"tags":2011,"stars":28,"repoUrl":29,"updatedAt":2025},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2012,2015,2018,2021,2024],{"name":2013,"slug":2014,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2016,"slug":2017,"type":15},"Cost Optimization","cost-optimization",{"name":2019,"slug":2020,"type":15},"LLM","llm",{"name":2022,"slug":2023,"type":15},"Performance","performance",{"name":2003,"slug":2004,"type":15},"2026-04-06T18:40:44.377464",{"slug":2027,"name":2027,"fn":2028,"description":2029,"org":2030,"tags":2031,"stars":28,"repoUrl":29,"updatedAt":2037},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2032,2033,2036],{"name":2016,"slug":2017,"type":15},{"name":2034,"slug":2035,"type":15},"Database","database",{"name":2019,"slug":2020,"type":15},"2026-04-06T18:41:08.513425",600,{"items":2040,"total":2233},[2041,2062,2085,2102,2116,2131,2150,2162,2176,2190,2202,2217],{"slug":2042,"name":2042,"fn":2043,"description":2044,"org":2045,"tags":2046,"stars":2059,"repoUrl":2060,"updatedAt":2061},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2047,2050,2053,2056],{"name":2048,"slug":2049,"type":15},"Documents","documents",{"name":2051,"slug":2052,"type":15},"Healthcare","healthcare",{"name":2054,"slug":2055,"type":15},"Insurance","insurance",{"name":2057,"slug":2058,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":2063,"name":2063,"fn":2064,"description":2065,"org":2066,"tags":2067,"stars":2082,"repoUrl":2083,"updatedAt":2084},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2068,2071,2073,2076,2079],{"name":2069,"slug":2070,"type":15},".NET","dotnet",{"name":2072,"slug":2063,"type":15},"ASP.NET Core",{"name":2074,"slug":2075,"type":15},"Blazor","blazor",{"name":2077,"slug":2078,"type":15},"C#","csharp",{"name":2080,"slug":2081,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":2086,"name":2086,"fn":2087,"description":2088,"org":2089,"tags":2090,"stars":2082,"repoUrl":2083,"updatedAt":2101},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2091,2094,2097,2100],{"name":2092,"slug":2093,"type":15},"Apps SDK","apps-sdk",{"name":2095,"slug":2096,"type":15},"ChatGPT","chatgpt",{"name":2098,"slug":2099,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":2103,"name":2103,"fn":2104,"description":2105,"org":2106,"tags":2107,"stars":2082,"repoUrl":2083,"updatedAt":2115},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2108,2111,2112],{"name":2109,"slug":2110,"type":15},"API Development","api-development",{"name":17,"slug":18,"type":15},{"name":2113,"slug":2114,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":2117,"name":2117,"fn":2118,"description":2119,"org":2120,"tags":2121,"stars":2082,"repoUrl":2083,"updatedAt":2130},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2122,2125,2128,2129],{"name":2123,"slug":2124,"type":15},"Cloudflare","cloudflare",{"name":2126,"slug":2127,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1972,"slug":1973,"type":15},{"name":20,"slug":21,"type":15},"2026-04-12T05:07:14.275118",{"slug":2132,"name":2132,"fn":2133,"description":2134,"org":2135,"tags":2136,"stars":2082,"repoUrl":2083,"updatedAt":2149},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2137,2140,2143,2146],{"name":2138,"slug":2139,"type":15},"Productivity","productivity",{"name":2141,"slug":2142,"type":15},"Project Management","project-management",{"name":2144,"slug":2145,"type":15},"Strategy","strategy",{"name":2147,"slug":2148,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2151,"name":2151,"fn":2152,"description":2153,"org":2154,"tags":2155,"stars":2082,"repoUrl":2083,"updatedAt":2161},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2156,2157,2159,2160],{"name":1933,"slug":1934,"type":15},{"name":2158,"slug":2151,"type":15},"Figma",{"name":1991,"slug":1992,"type":15},{"name":2098,"slug":2099,"type":15},"2026-04-12T05:06:47.939943",{"slug":2163,"name":2163,"fn":2164,"description":2165,"org":2166,"tags":2167,"stars":2082,"repoUrl":2083,"updatedAt":2175},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2168,2169,2172,2173,2174],{"name":1933,"slug":1934,"type":15},{"name":2170,"slug":2171,"type":15},"Design System","design-system",{"name":2158,"slug":2151,"type":15},{"name":1991,"slug":1992,"type":15},{"name":2000,"slug":2001,"type":15},"2026-05-10T05:59:52.971881",{"slug":2177,"name":2177,"fn":2178,"description":2179,"org":2180,"tags":2181,"stars":2082,"repoUrl":2083,"updatedAt":2189},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2182,2183,2184,2187,2188],{"name":1933,"slug":1934,"type":15},{"name":2170,"slug":2171,"type":15},{"name":2185,"slug":2186,"type":15},"Documentation","documentation",{"name":2158,"slug":2151,"type":15},{"name":1991,"slug":1992,"type":15},"2026-05-16T06:07:47.821474",{"slug":2191,"name":2191,"fn":2192,"description":2193,"org":2194,"tags":2195,"stars":2082,"repoUrl":2083,"updatedAt":2201},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2196,2197,2198,2199,2200],{"name":1933,"slug":1934,"type":15},{"name":2158,"slug":2151,"type":15},{"name":1991,"slug":1992,"type":15},{"name":2000,"slug":2001,"type":15},{"name":2080,"slug":2081,"type":15},"2026-05-16T06:07:40.583615",{"slug":2203,"name":2203,"fn":2204,"description":2205,"org":2206,"tags":2207,"stars":2082,"repoUrl":2083,"updatedAt":2216},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2208,2211,2212,2215],{"name":2209,"slug":2210,"type":15},"Animation","animation",{"name":2113,"slug":2114,"type":15},{"name":2213,"slug":2214,"type":15},"Creative","creative",{"name":1933,"slug":1934,"type":15},"2026-05-02T05:31:48.48485",{"slug":2218,"name":2218,"fn":2219,"description":2220,"org":2221,"tags":2222,"stars":2082,"repoUrl":2083,"updatedAt":2232},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2223,2224,2225,2228,2231],{"name":2213,"slug":2214,"type":15},{"name":1933,"slug":1934,"type":15},{"name":2226,"slug":2227,"type":15},"Image Generation","image-generation",{"name":2229,"slug":2230,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]