[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-boltz-structure-and-binding":3,"mdc-q3n4e8-key":33,"related-repo-openai-boltz-structure-and-binding":1593,"related-org-openai-boltz-structure-and-binding":1716},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"boltz-structure-and-binding","predict protein and ligand binding structures","Predict structures and binding for one defined complex with Boltz. Use when folding a protein, RNA, DNA, or ligand complex, docking one ligand, predicting an interface, or scoring binding. Not for screening libraries or design.",{"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],{"name":13,"slug":14,"type":15},"Research","research","tag",{"name":17,"slug":18,"type":15},"Life Sciences","life-sciences",{"name":20,"slug":21,"type":15},"Bioinformatics","bioinformatics",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fboltz-api-cli\u002Fskills\u002Fboltz-structure-and-binding","---\nname: boltz-structure-and-binding\ndescription: Predict structures and binding for one defined complex with Boltz. Use when folding a protein, RNA, DNA, or ligand complex, docking one ligand, predicting an interface, or scoring binding. Not for screening libraries or design.\n---\n\n## Workflow\n\nIf `boltz-api` is missing from `PATH`, use `boltz-cli-setup` for install\u002Fupdate guidance before retrying.\nIf a command reports missing or expired authentication, use `boltz-cli-setup` to start `boltz-api auth login --device-code` before retrying; do not ask permission first.\nIf the agent host sandbox blocks `boltz-api` install\u002Fauth\u002FAPI calls, use `boltz-cli-setup` to request the host sandbox bypass\u002Fescalation needed for user-wide CLI install, browser login, credential storage, temp files, or API access before retrying.\n\nUse this skill for one defined complex, not a library workflow.\n\n1. Normalize the inputs into `entities`. Each entity is **`{type, chain_ids, value}`** — note plural `chain_ids` (an array, even for one chain) and the field is `value`, **not** `sequence`:\n\n   ```json\n   {\"entities\": [{\"type\": \"protein\", \"chain_ids\": [\"A\"], \"value\": \"MKTAYIAKQRQISFVKSHFSRQ\"}]}\n   ```\n\n   `type` is one of `protein | rna | dna | ligand_smiles | ligand_ccd`. Chain IDs go in entity order (`A`, `B`, `C`, …) unless the user specifies otherwise. Read `references\u002Fapi.md` for per-type field variants (`cyclic`, `modifications`, ligand CCD codes, etc.) **before** authoring your first payload — agent guesses like `sequence:` or `chain_id: \"A\"` (singular) fail with unclear 400 errors.\n2. If the user wants binding metrics, add a flat `binding` block with an explicit `type` field. For ligand-protein binding use:\n\n   ```yaml\n   binding:\n     type: ligand_protein_binding\n     binder_chain_id: B\n   ```\n\n   For protein-protein binding use:\n\n   ```yaml\n   binding:\n     type: protein_protein_binding\n     binder_chain_ids: [B]\n   ```\n\n   Do not nest the variant name under `binding` (for example, no `binding.ligand_protein_binding` object).\n3. Supported optional features include `constraints`, `bonds`, `modifications`, `model_options`, and binding metrics; only add them if the user asks. Read [references\u002Fapi.md](references\u002Fapi.md) for exact shapes and examples.\n4. Author the payload YAML or JSON, run `estimate-cost`, show the USD cost, wait for explicit confirmation.\n5. `start` to submit (synchronous). Capture the ID.\n6. Launch `download-results` with the agent runtime's background\u002Fnon-blocking command facility so polling + download continue without blocking the agent session. In Claude Code, use Bash with `run_in_background: true`. In Codex, run `download-results` as a foreground shell command with `yield_time_ms: 1000`; if Codex returns a `session_id`, keep it for optional same-thread polling, but treat `download-status` plus the run directory as the durable source of truth. In Codex app\u002Fdesktop runtimes that expose same-thread heartbeat automations, create a heartbeat that checks `download-status` periodically and posts a concise completion or failure update when the download reaches a terminal state. After launching the downloader, always report the job ID, run name, and output directory. Include the next check cadence if the heartbeat was created; otherwise include the `download-status` command.\n\n## Command Pattern\n\n```bash\n# Replace placeholders with concrete absolute paths before running.\n# Use a short descriptive run name, for example: sab-\u003Ctarget>-\u003Cligand>-v1\n\n# 1. estimate\nboltz-api predictions:structure-and-binding estimate-cost \\\n  --model boltz-2.1 \\\n  --input @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml\n\n# 2. confirm with user, then submit\nboltz-api predictions:structure-and-binding start \\\n       --model boltz-2.1 \\\n       --idempotency-key \"\u003Crun-name>\" \\\n       --input @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml \\\n       --raw-output --transform id\n\n# 3. Copy the printed job ID into this command, then launch it in the agent\n# runtime's background\u002Fnon-blocking mode.\n# Claude Code: Bash with run_in_background=true.\n# Codex: foreground shell command with yield_time_ms=1000; keep the returned session_id if one is provided.\n# Do not append \"&\" or use nohup in Codex.\nboltz-api download-results \\\n  --id \"\u003Cjob-id-from-start>\" --name \"\u003Crun-name>\" \\\n  --root-dir \"\u002Fabsolute\u002Fpath\u002Fboltz-experiments\" \\\n  --poll-interval-seconds 10\n# -> \u002Fabsolute\u002Fpath\u002Fboltz-experiments\u002F\u003Crun-name>\u002Foutputs\u002Farchive.tar.gz, .boltz-run.json\n```\n\n## Always Do This\n\n- Keep payload field names exactly as the API body names shown in `references\u002Fapi.md`; then pass the merged payload with `--input @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml` or `@json:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.json`. Never use `@.\u002Fpayload.yaml` or `@file:\u002F\u002F` for object-typed payloads.\n- Use absolute paths for the output root, payload files, and embedded structure files. Do not `cd` into the run directory for follow-up commands; pass the same `--root-dir` and use absolute paths so later relative paths do not drift.\n- Residue indices are 0-based wherever the payload asks for residue positions (constraints, modifications, contact tokens).\n- For CIF\u002FPDB bytes embedded in `--target` \u002F `structure.data`, use `@data:\u002F\u002F\u002Fabsolute\u002Fpath\u002Ffile.cif` — it detects binary and base64-encodes. Don't use bare `@path` for binary data.\n- Use the same slug as both `--idempotency-key` at submit time and `--name` at download time so re-runs are idempotent and resume from `.boltz-run.json`.\n- In permission-gated agents such as Claude Code, keep each Boltz call as a top-level command that starts with `boltz-api`. Prefer concrete arguments over `sh -c`, inline environment assignments, aliases, wrapper scripts, loops, or pipelines around the `boltz-api` invocation unless the user already allowed that exact command form. Use `--raw-output --transform id`, read the printed ID, then paste that literal ID into the next `download-results` command.\n- Prefer the agent runtime's background\u002Fnon-blocking command mode for `download-results`. In Codex specifically, keep `download-results` in the foreground and set the shell tool yield to 1000 ms; Codex will return a `session_id` if the command is still running. Do not append `&` or use `nohup` in Codex because the tool runner may clean up shell-backgrounded descendants before `.boltz-run.json` is fully written.\n- After the background\u002Fsession starts, do not manually wait on it or run ad hoc polling loops. `download-results` emits JSONL progress on stderr by default; add `--progress-format text --verbose` only when you explicitly want human-readable logs.\n- In Codex app\u002Fdesktop runtimes with same-thread heartbeat automation support, schedule a heartbeat after launching `download-results`. The heartbeat should run `boltz-api --format json download-status --name \"\u003Crun-name>\" --root-dir \"\u002Fabsolute\u002Fpath\u002Fboltz-experiments\"` on a sensible cadence, post only material status changes or terminal completion\u002Ffailure, and stop once terminal. Poll the saved `session_id` with an empty `write_stdin` only for interactive, user-requested progress checks. Do not loop `retrieve` yourself.\n- If the current host has no heartbeat automation support, do not claim an automatic next check. Report the job ID, run name, output directory, and the command needed to check `download-status`.\n- If detached download needs to be restarted, re-run `boltz-api download-results` with the same `--name \"\u003Crun-name>\"` and the same `--root-dir`.\n- Poll interval: keep `--poll-interval-seconds 10` for SAB — predictions usually finish in under a few minutes.\n- Cost: there is no published per-unit rate to cite for SAB — run `estimate-cost` and state only the figure it returns. Don't estimate or comment on cost.\n\n## Escape Hatch\n\nFor anything not covered in `references\u002Fapi.md`:\n\n- Payload reference: \u003Chttps:\u002F\u002Fapi.boltz.bio\u002Fdocs\u002Fapi\u002Fpython\u002Fresources\u002Fpredictions\u002Fsubresources\u002Fstructure_and_binding\u002Fmethods\u002Fstart>\n- CLI flag names: `boltz-api predictions:structure-and-binding start --help` (schema details aren't there — just flag names and types)\n\nRead [references\u002Fapi.md](references\u002Fapi.md) for entity shapes, binding variants, bonds, constraints, model options, and input examples. Read [references\u002Fresults.md](references\u002Fresults.md) when summarizing downloaded outputs, metrics, or validation quirks.\n\n## Outputs\n\nSummarize `metrics.json` and point the user at the downloaded CIF path. Read [references\u002Fresults.md](references\u002Fresults.md) for the local layout, nested metrics, binding metric variants, and SAB validation quirks.\n\n## SAB 400 validation quirk\n\nIf the server rejects a payload with only `{\"code\":\"VALIDATION_ERROR\",\"message\":\"Request validation failed\"}`, inspect `entities`, `binding`, and `constraints`; read [references\u002Fresults.md](references\u002Fresults.md) for details.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,107,112,708,714,1095,1101,1454,1460,1471,1499,1517,1523,1542,1548,1587],{"type":39,"tag":40,"props":41,"children":43},"element","h2",{"id":42},"workflow",[44],{"type":45,"value":46},"text","Workflow",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51,53,60,62,68,70,76,78,83,85,91,93,98,100,105],{"type":45,"value":52},"If ",{"type":39,"tag":54,"props":55,"children":57},"code",{"className":56},[],[58],{"type":45,"value":59},"boltz-api",{"type":45,"value":61}," is missing from ",{"type":39,"tag":54,"props":63,"children":65},{"className":64},[],[66],{"type":45,"value":67},"PATH",{"type":45,"value":69},", use ",{"type":39,"tag":54,"props":71,"children":73},{"className":72},[],[74],{"type":45,"value":75},"boltz-cli-setup",{"type":45,"value":77}," for install\u002Fupdate guidance before retrying.\nIf a command reports missing or expired authentication, use ",{"type":39,"tag":54,"props":79,"children":81},{"className":80},[],[82],{"type":45,"value":75},{"type":45,"value":84}," to start ",{"type":39,"tag":54,"props":86,"children":88},{"className":87},[],[89],{"type":45,"value":90},"boltz-api auth login --device-code",{"type":45,"value":92}," before retrying; do not ask permission first.\nIf the agent host sandbox blocks ",{"type":39,"tag":54,"props":94,"children":96},{"className":95},[],[97],{"type":45,"value":59},{"type":45,"value":99}," install\u002Fauth\u002FAPI calls, use ",{"type":39,"tag":54,"props":101,"children":103},{"className":102},[],[104],{"type":45,"value":75},{"type":45,"value":106}," to request the host sandbox bypass\u002Fescalation needed for user-wide CLI install, browser login, credential storage, temp files, or API access before retrying.",{"type":39,"tag":48,"props":108,"children":109},{},[110],{"type":45,"value":111},"Use this skill for one defined complex, not a library workflow.",{"type":39,"tag":113,"props":114,"children":115},"ol",{},[116,416,578,618,631,642],{"type":39,"tag":117,"props":118,"children":119},"li",{},[120,122,128,130,140,142,148,150,156,158,163,165,171,173,330,334,339,341,347,349,354,355,361,362,368,370,376,378,384,385,391,393,398,400,406,408,414],{"type":45,"value":121},"Normalize the inputs into ",{"type":39,"tag":54,"props":123,"children":125},{"className":124},[],[126],{"type":45,"value":127},"entities",{"type":45,"value":129},". Each entity is ",{"type":39,"tag":131,"props":132,"children":133},"strong",{},[134],{"type":39,"tag":54,"props":135,"children":137},{"className":136},[],[138],{"type":45,"value":139},"{type, chain_ids, value}",{"type":45,"value":141}," — note plural ",{"type":39,"tag":54,"props":143,"children":145},{"className":144},[],[146],{"type":45,"value":147},"chain_ids",{"type":45,"value":149}," (an array, even for one chain) and the field is ",{"type":39,"tag":54,"props":151,"children":153},{"className":152},[],[154],{"type":45,"value":155},"value",{"type":45,"value":157},", ",{"type":39,"tag":131,"props":159,"children":160},{},[161],{"type":45,"value":162},"not",{"type":45,"value":164}," ",{"type":39,"tag":54,"props":166,"children":168},{"className":167},[],[169],{"type":45,"value":170},"sequence",{"type":45,"value":172},":",{"type":39,"tag":174,"props":175,"children":180},"pre",{"className":176,"code":177,"language":178,"meta":179,"style":179},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\"entities\": [{\"type\": \"protein\", \"chain_ids\": [\"A\"], \"value\": \"MKTAYIAKQRQISFVKSHFSRQ\"}]}\n","json","",[181],{"type":39,"tag":54,"props":182,"children":183},{"__ignoreMap":179},[184],{"type":39,"tag":185,"props":186,"children":189},"span",{"class":187,"line":188},"line",1,[190,196,201,206,210,214,219,223,229,233,237,242,248,252,257,261,265,269,273,278,282,287,291,296,300,304,308,312,316,321,325],{"type":39,"tag":185,"props":191,"children":193},{"style":192},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[194],{"type":45,"value":195},"{",{"type":39,"tag":185,"props":197,"children":198},{"style":192},[199],{"type":45,"value":200},"\"",{"type":39,"tag":185,"props":202,"children":204},{"style":203},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[205],{"type":45,"value":127},{"type":39,"tag":185,"props":207,"children":208},{"style":192},[209],{"type":45,"value":200},{"type":39,"tag":185,"props":211,"children":212},{"style":192},[213],{"type":45,"value":172},{"type":39,"tag":185,"props":215,"children":216},{"style":192},[217],{"type":45,"value":218}," [{",{"type":39,"tag":185,"props":220,"children":221},{"style":192},[222],{"type":45,"value":200},{"type":39,"tag":185,"props":224,"children":226},{"style":225},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[227],{"type":45,"value":228},"type",{"type":39,"tag":185,"props":230,"children":231},{"style":192},[232],{"type":45,"value":200},{"type":39,"tag":185,"props":234,"children":235},{"style":192},[236],{"type":45,"value":172},{"type":39,"tag":185,"props":238,"children":239},{"style":192},[240],{"type":45,"value":241}," \"",{"type":39,"tag":185,"props":243,"children":245},{"style":244},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[246],{"type":45,"value":247},"protein",{"type":39,"tag":185,"props":249,"children":250},{"style":192},[251],{"type":45,"value":200},{"type":39,"tag":185,"props":253,"children":254},{"style":192},[255],{"type":45,"value":256},",",{"type":39,"tag":185,"props":258,"children":259},{"style":192},[260],{"type":45,"value":241},{"type":39,"tag":185,"props":262,"children":263},{"style":225},[264],{"type":45,"value":147},{"type":39,"tag":185,"props":266,"children":267},{"style":192},[268],{"type":45,"value":200},{"type":39,"tag":185,"props":270,"children":271},{"style":192},[272],{"type":45,"value":172},{"type":39,"tag":185,"props":274,"children":275},{"style":192},[276],{"type":45,"value":277}," [",{"type":39,"tag":185,"props":279,"children":280},{"style":192},[281],{"type":45,"value":200},{"type":39,"tag":185,"props":283,"children":284},{"style":244},[285],{"type":45,"value":286},"A",{"type":39,"tag":185,"props":288,"children":289},{"style":192},[290],{"type":45,"value":200},{"type":39,"tag":185,"props":292,"children":293},{"style":192},[294],{"type":45,"value":295},"],",{"type":39,"tag":185,"props":297,"children":298},{"style":192},[299],{"type":45,"value":241},{"type":39,"tag":185,"props":301,"children":302},{"style":225},[303],{"type":45,"value":155},{"type":39,"tag":185,"props":305,"children":306},{"style":192},[307],{"type":45,"value":200},{"type":39,"tag":185,"props":309,"children":310},{"style":192},[311],{"type":45,"value":172},{"type":39,"tag":185,"props":313,"children":314},{"style":192},[315],{"type":45,"value":241},{"type":39,"tag":185,"props":317,"children":318},{"style":244},[319],{"type":45,"value":320},"MKTAYIAKQRQISFVKSHFSRQ",{"type":39,"tag":185,"props":322,"children":323},{"style":192},[324],{"type":45,"value":200},{"type":39,"tag":185,"props":326,"children":327},{"style":192},[328],{"type":45,"value":329},"}]}\n",{"type":39,"tag":331,"props":332,"children":333},"br",{},[],{"type":39,"tag":54,"props":335,"children":337},{"className":336},[],[338],{"type":45,"value":228},{"type":45,"value":340}," is one of ",{"type":39,"tag":54,"props":342,"children":344},{"className":343},[],[345],{"type":45,"value":346},"protein | rna | dna | ligand_smiles | ligand_ccd",{"type":45,"value":348},". Chain IDs go in entity order (",{"type":39,"tag":54,"props":350,"children":352},{"className":351},[],[353],{"type":45,"value":286},{"type":45,"value":157},{"type":39,"tag":54,"props":356,"children":358},{"className":357},[],[359],{"type":45,"value":360},"B",{"type":45,"value":157},{"type":39,"tag":54,"props":363,"children":365},{"className":364},[],[366],{"type":45,"value":367},"C",{"type":45,"value":369},", …) unless the user specifies otherwise. Read ",{"type":39,"tag":54,"props":371,"children":373},{"className":372},[],[374],{"type":45,"value":375},"references\u002Fapi.md",{"type":45,"value":377}," for per-type field variants (",{"type":39,"tag":54,"props":379,"children":381},{"className":380},[],[382],{"type":45,"value":383},"cyclic",{"type":45,"value":157},{"type":39,"tag":54,"props":386,"children":388},{"className":387},[],[389],{"type":45,"value":390},"modifications",{"type":45,"value":392},", ligand CCD codes, etc.) ",{"type":39,"tag":131,"props":394,"children":395},{},[396],{"type":45,"value":397},"before",{"type":45,"value":399}," authoring your first payload — agent guesses like ",{"type":39,"tag":54,"props":401,"children":403},{"className":402},[],[404],{"type":45,"value":405},"sequence:",{"type":45,"value":407}," or ",{"type":39,"tag":54,"props":409,"children":411},{"className":410},[],[412],{"type":45,"value":413},"chain_id: \"A\"",{"type":45,"value":415}," (singular) fail with unclear 400 errors.",{"type":39,"tag":117,"props":417,"children":418},{},[419,421,427,429,434,436,494,497,499,558,561,563,568,570,576],{"type":45,"value":420},"If the user wants binding metrics, add a flat ",{"type":39,"tag":54,"props":422,"children":424},{"className":423},[],[425],{"type":45,"value":426},"binding",{"type":45,"value":428}," block with an explicit ",{"type":39,"tag":54,"props":430,"children":432},{"className":431},[],[433],{"type":45,"value":228},{"type":45,"value":435}," field. For ligand-protein binding use:",{"type":39,"tag":174,"props":437,"children":441},{"className":438,"code":439,"language":440,"meta":179,"style":179},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","binding:\n  type: ligand_protein_binding\n  binder_chain_id: B\n","yaml",[442],{"type":39,"tag":54,"props":443,"children":444},{"__ignoreMap":179},[445,458,476],{"type":39,"tag":185,"props":446,"children":447},{"class":187,"line":188},[448,453],{"type":39,"tag":185,"props":449,"children":451},{"style":450},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[452],{"type":45,"value":426},{"type":39,"tag":185,"props":454,"children":455},{"style":192},[456],{"type":45,"value":457},":\n",{"type":39,"tag":185,"props":459,"children":461},{"class":187,"line":460},2,[462,467,471],{"type":39,"tag":185,"props":463,"children":464},{"style":450},[465],{"type":45,"value":466},"  type",{"type":39,"tag":185,"props":468,"children":469},{"style":192},[470],{"type":45,"value":172},{"type":39,"tag":185,"props":472,"children":473},{"style":244},[474],{"type":45,"value":475}," ligand_protein_binding\n",{"type":39,"tag":185,"props":477,"children":479},{"class":187,"line":478},3,[480,485,489],{"type":39,"tag":185,"props":481,"children":482},{"style":450},[483],{"type":45,"value":484},"  binder_chain_id",{"type":39,"tag":185,"props":486,"children":487},{"style":192},[488],{"type":45,"value":172},{"type":39,"tag":185,"props":490,"children":491},{"style":244},[492],{"type":45,"value":493}," B\n",{"type":39,"tag":331,"props":495,"children":496},{},[],{"type":45,"value":498},"For protein-protein binding use:",{"type":39,"tag":174,"props":500,"children":502},{"className":438,"code":501,"language":440,"meta":179,"style":179},"binding:\n  type: protein_protein_binding\n  binder_chain_ids: [B]\n",[503],{"type":39,"tag":54,"props":504,"children":505},{"__ignoreMap":179},[506,517,533],{"type":39,"tag":185,"props":507,"children":508},{"class":187,"line":188},[509,513],{"type":39,"tag":185,"props":510,"children":511},{"style":450},[512],{"type":45,"value":426},{"type":39,"tag":185,"props":514,"children":515},{"style":192},[516],{"type":45,"value":457},{"type":39,"tag":185,"props":518,"children":519},{"class":187,"line":460},[520,524,528],{"type":39,"tag":185,"props":521,"children":522},{"style":450},[523],{"type":45,"value":466},{"type":39,"tag":185,"props":525,"children":526},{"style":192},[527],{"type":45,"value":172},{"type":39,"tag":185,"props":529,"children":530},{"style":244},[531],{"type":45,"value":532}," protein_protein_binding\n",{"type":39,"tag":185,"props":534,"children":535},{"class":187,"line":478},[536,541,545,549,553],{"type":39,"tag":185,"props":537,"children":538},{"style":450},[539],{"type":45,"value":540},"  binder_chain_ids",{"type":39,"tag":185,"props":542,"children":543},{"style":192},[544],{"type":45,"value":172},{"type":39,"tag":185,"props":546,"children":547},{"style":192},[548],{"type":45,"value":277},{"type":39,"tag":185,"props":550,"children":551},{"style":244},[552],{"type":45,"value":360},{"type":39,"tag":185,"props":554,"children":555},{"style":192},[556],{"type":45,"value":557},"]\n",{"type":39,"tag":331,"props":559,"children":560},{},[],{"type":45,"value":562},"Do not nest the variant name under ",{"type":39,"tag":54,"props":564,"children":566},{"className":565},[],[567],{"type":45,"value":426},{"type":45,"value":569}," (for example, no ",{"type":39,"tag":54,"props":571,"children":573},{"className":572},[],[574],{"type":45,"value":575},"binding.ligand_protein_binding",{"type":45,"value":577}," object).",{"type":39,"tag":117,"props":579,"children":580},{},[581,583,589,590,596,597,602,603,609,611,616],{"type":45,"value":582},"Supported optional features include ",{"type":39,"tag":54,"props":584,"children":586},{"className":585},[],[587],{"type":45,"value":588},"constraints",{"type":45,"value":157},{"type":39,"tag":54,"props":591,"children":593},{"className":592},[],[594],{"type":45,"value":595},"bonds",{"type":45,"value":157},{"type":39,"tag":54,"props":598,"children":600},{"className":599},[],[601],{"type":45,"value":390},{"type":45,"value":157},{"type":39,"tag":54,"props":604,"children":606},{"className":605},[],[607],{"type":45,"value":608},"model_options",{"type":45,"value":610},", and binding metrics; only add them if the user asks. Read ",{"type":39,"tag":612,"props":613,"children":614},"a",{"href":375},[615],{"type":45,"value":375},{"type":45,"value":617}," for exact shapes and examples.",{"type":39,"tag":117,"props":619,"children":620},{},[621,623,629],{"type":45,"value":622},"Author the payload YAML or JSON, run ",{"type":39,"tag":54,"props":624,"children":626},{"className":625},[],[627],{"type":45,"value":628},"estimate-cost",{"type":45,"value":630},", show the USD cost, wait for explicit confirmation.",{"type":39,"tag":117,"props":632,"children":633},{},[634,640],{"type":39,"tag":54,"props":635,"children":637},{"className":636},[],[638],{"type":45,"value":639},"start",{"type":45,"value":641}," to submit (synchronous). Capture the ID.",{"type":39,"tag":117,"props":643,"children":644},{},[645,647,653,655,661,663,668,670,676,678,684,686,692,694,699,701,706],{"type":45,"value":646},"Launch ",{"type":39,"tag":54,"props":648,"children":650},{"className":649},[],[651],{"type":45,"value":652},"download-results",{"type":45,"value":654}," with the agent runtime's background\u002Fnon-blocking command facility so polling + download continue without blocking the agent session. In Claude Code, use Bash with ",{"type":39,"tag":54,"props":656,"children":658},{"className":657},[],[659],{"type":45,"value":660},"run_in_background: true",{"type":45,"value":662},". In Codex, run ",{"type":39,"tag":54,"props":664,"children":666},{"className":665},[],[667],{"type":45,"value":652},{"type":45,"value":669}," as a foreground shell command with ",{"type":39,"tag":54,"props":671,"children":673},{"className":672},[],[674],{"type":45,"value":675},"yield_time_ms: 1000",{"type":45,"value":677},"; if Codex returns a ",{"type":39,"tag":54,"props":679,"children":681},{"className":680},[],[682],{"type":45,"value":683},"session_id",{"type":45,"value":685},", keep it for optional same-thread polling, but treat ",{"type":39,"tag":54,"props":687,"children":689},{"className":688},[],[690],{"type":45,"value":691},"download-status",{"type":45,"value":693}," plus the run directory as the durable source of truth. In Codex app\u002Fdesktop runtimes that expose same-thread heartbeat automations, create a heartbeat that checks ",{"type":39,"tag":54,"props":695,"children":697},{"className":696},[],[698],{"type":45,"value":691},{"type":45,"value":700}," periodically and posts a concise completion or failure update when the download reaches a terminal state. After launching the downloader, always report the job ID, run name, and output directory. Include the next check cadence if the heartbeat was created; otherwise include the ",{"type":39,"tag":54,"props":702,"children":704},{"className":703},[],[705],{"type":45,"value":691},{"type":45,"value":707}," command.",{"type":39,"tag":40,"props":709,"children":711},{"id":710},"command-pattern",[712],{"type":45,"value":713},"Command Pattern",{"type":39,"tag":174,"props":715,"children":719},{"className":716,"code":717,"language":718,"meta":179,"style":179},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Replace placeholders with concrete absolute paths before running.\n# Use a short descriptive run name, for example: sab-\u003Ctarget>-\u003Cligand>-v1\n\n# 1. estimate\nboltz-api predictions:structure-and-binding estimate-cost \\\n  --model boltz-2.1 \\\n  --input @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml\n\n# 2. confirm with user, then submit\nboltz-api predictions:structure-and-binding start \\\n       --model boltz-2.1 \\\n       --idempotency-key \"\u003Crun-name>\" \\\n       --input @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml \\\n       --raw-output --transform id\n\n# 3. Copy the printed job ID into this command, then launch it in the agent\n# runtime's background\u002Fnon-blocking mode.\n# Claude Code: Bash with run_in_background=true.\n# Codex: foreground shell command with yield_time_ms=1000; keep the returned session_id if one is provided.\n# Do not append \"&\" or use nohup in Codex.\nboltz-api download-results \\\n  --id \"\u003Cjob-id-from-start>\" --name \"\u003Crun-name>\" \\\n  --root-dir \"\u002Fabsolute\u002Fpath\u002Fboltz-experiments\" \\\n  --poll-interval-seconds 10\n# -> \u002Fabsolute\u002Fpath\u002Fboltz-experiments\u002F\u003Crun-name>\u002Foutputs\u002Farchive.tar.gz, .boltz-run.json\n","bash",[720],{"type":39,"tag":54,"props":721,"children":722},{"__ignoreMap":179},[723,732,740,749,758,782,800,814,822,831,852,869,895,913,932,940,949,958,967,976,985,1002,1045,1071,1086],{"type":39,"tag":185,"props":724,"children":725},{"class":187,"line":188},[726],{"type":39,"tag":185,"props":727,"children":729},{"style":728},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[730],{"type":45,"value":731},"# Replace placeholders with concrete absolute paths before running.\n",{"type":39,"tag":185,"props":733,"children":734},{"class":187,"line":460},[735],{"type":39,"tag":185,"props":736,"children":737},{"style":728},[738],{"type":45,"value":739},"# Use a short descriptive run name, for example: sab-\u003Ctarget>-\u003Cligand>-v1\n",{"type":39,"tag":185,"props":741,"children":742},{"class":187,"line":478},[743],{"type":39,"tag":185,"props":744,"children":746},{"emptyLinePlaceholder":745},true,[747],{"type":45,"value":748},"\n",{"type":39,"tag":185,"props":750,"children":752},{"class":187,"line":751},4,[753],{"type":39,"tag":185,"props":754,"children":755},{"style":728},[756],{"type":45,"value":757},"# 1. estimate\n",{"type":39,"tag":185,"props":759,"children":761},{"class":187,"line":760},5,[762,766,771,776],{"type":39,"tag":185,"props":763,"children":764},{"style":225},[765],{"type":45,"value":59},{"type":39,"tag":185,"props":767,"children":768},{"style":244},[769],{"type":45,"value":770}," predictions:structure-and-binding",{"type":39,"tag":185,"props":772,"children":773},{"style":244},[774],{"type":45,"value":775}," estimate-cost",{"type":39,"tag":185,"props":777,"children":779},{"style":778},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[780],{"type":45,"value":781}," \\\n",{"type":39,"tag":185,"props":783,"children":785},{"class":187,"line":784},6,[786,791,796],{"type":39,"tag":185,"props":787,"children":788},{"style":244},[789],{"type":45,"value":790},"  --model",{"type":39,"tag":185,"props":792,"children":793},{"style":244},[794],{"type":45,"value":795}," boltz-2.1",{"type":39,"tag":185,"props":797,"children":798},{"style":778},[799],{"type":45,"value":781},{"type":39,"tag":185,"props":801,"children":803},{"class":187,"line":802},7,[804,809],{"type":39,"tag":185,"props":805,"children":806},{"style":244},[807],{"type":45,"value":808},"  --input",{"type":39,"tag":185,"props":810,"children":811},{"style":244},[812],{"type":45,"value":813}," @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml\n",{"type":39,"tag":185,"props":815,"children":817},{"class":187,"line":816},8,[818],{"type":39,"tag":185,"props":819,"children":820},{"emptyLinePlaceholder":745},[821],{"type":45,"value":748},{"type":39,"tag":185,"props":823,"children":825},{"class":187,"line":824},9,[826],{"type":39,"tag":185,"props":827,"children":828},{"style":728},[829],{"type":45,"value":830},"# 2. confirm with user, then submit\n",{"type":39,"tag":185,"props":832,"children":834},{"class":187,"line":833},10,[835,839,843,848],{"type":39,"tag":185,"props":836,"children":837},{"style":225},[838],{"type":45,"value":59},{"type":39,"tag":185,"props":840,"children":841},{"style":244},[842],{"type":45,"value":770},{"type":39,"tag":185,"props":844,"children":845},{"style":244},[846],{"type":45,"value":847}," start",{"type":39,"tag":185,"props":849,"children":850},{"style":778},[851],{"type":45,"value":781},{"type":39,"tag":185,"props":853,"children":855},{"class":187,"line":854},11,[856,861,865],{"type":39,"tag":185,"props":857,"children":858},{"style":244},[859],{"type":45,"value":860},"       --model",{"type":39,"tag":185,"props":862,"children":863},{"style":244},[864],{"type":45,"value":795},{"type":39,"tag":185,"props":866,"children":867},{"style":778},[868],{"type":45,"value":781},{"type":39,"tag":185,"props":870,"children":872},{"class":187,"line":871},12,[873,878,882,887,891],{"type":39,"tag":185,"props":874,"children":875},{"style":244},[876],{"type":45,"value":877},"       --idempotency-key",{"type":39,"tag":185,"props":879,"children":880},{"style":192},[881],{"type":45,"value":241},{"type":39,"tag":185,"props":883,"children":884},{"style":244},[885],{"type":45,"value":886},"\u003Crun-name>",{"type":39,"tag":185,"props":888,"children":889},{"style":192},[890],{"type":45,"value":200},{"type":39,"tag":185,"props":892,"children":893},{"style":778},[894],{"type":45,"value":781},{"type":39,"tag":185,"props":896,"children":898},{"class":187,"line":897},13,[899,904,909],{"type":39,"tag":185,"props":900,"children":901},{"style":244},[902],{"type":45,"value":903},"       --input",{"type":39,"tag":185,"props":905,"children":906},{"style":244},[907],{"type":45,"value":908}," @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml",{"type":39,"tag":185,"props":910,"children":911},{"style":778},[912],{"type":45,"value":781},{"type":39,"tag":185,"props":914,"children":916},{"class":187,"line":915},14,[917,922,927],{"type":39,"tag":185,"props":918,"children":919},{"style":244},[920],{"type":45,"value":921},"       --raw-output",{"type":39,"tag":185,"props":923,"children":924},{"style":244},[925],{"type":45,"value":926}," --transform",{"type":39,"tag":185,"props":928,"children":929},{"style":244},[930],{"type":45,"value":931}," id\n",{"type":39,"tag":185,"props":933,"children":935},{"class":187,"line":934},15,[936],{"type":39,"tag":185,"props":937,"children":938},{"emptyLinePlaceholder":745},[939],{"type":45,"value":748},{"type":39,"tag":185,"props":941,"children":943},{"class":187,"line":942},16,[944],{"type":39,"tag":185,"props":945,"children":946},{"style":728},[947],{"type":45,"value":948},"# 3. Copy the printed job ID into this command, then launch it in the agent\n",{"type":39,"tag":185,"props":950,"children":952},{"class":187,"line":951},17,[953],{"type":39,"tag":185,"props":954,"children":955},{"style":728},[956],{"type":45,"value":957},"# runtime's background\u002Fnon-blocking mode.\n",{"type":39,"tag":185,"props":959,"children":961},{"class":187,"line":960},18,[962],{"type":39,"tag":185,"props":963,"children":964},{"style":728},[965],{"type":45,"value":966},"# Claude Code: Bash with run_in_background=true.\n",{"type":39,"tag":185,"props":968,"children":970},{"class":187,"line":969},19,[971],{"type":39,"tag":185,"props":972,"children":973},{"style":728},[974],{"type":45,"value":975},"# Codex: foreground shell command with yield_time_ms=1000; keep the returned session_id if one is provided.\n",{"type":39,"tag":185,"props":977,"children":979},{"class":187,"line":978},20,[980],{"type":39,"tag":185,"props":981,"children":982},{"style":728},[983],{"type":45,"value":984},"# Do not append \"&\" or use nohup in Codex.\n",{"type":39,"tag":185,"props":986,"children":988},{"class":187,"line":987},21,[989,993,998],{"type":39,"tag":185,"props":990,"children":991},{"style":225},[992],{"type":45,"value":59},{"type":39,"tag":185,"props":994,"children":995},{"style":244},[996],{"type":45,"value":997}," download-results",{"type":39,"tag":185,"props":999,"children":1000},{"style":778},[1001],{"type":45,"value":781},{"type":39,"tag":185,"props":1003,"children":1005},{"class":187,"line":1004},22,[1006,1011,1015,1020,1024,1029,1033,1037,1041],{"type":39,"tag":185,"props":1007,"children":1008},{"style":244},[1009],{"type":45,"value":1010},"  --id",{"type":39,"tag":185,"props":1012,"children":1013},{"style":192},[1014],{"type":45,"value":241},{"type":39,"tag":185,"props":1016,"children":1017},{"style":244},[1018],{"type":45,"value":1019},"\u003Cjob-id-from-start>",{"type":39,"tag":185,"props":1021,"children":1022},{"style":192},[1023],{"type":45,"value":200},{"type":39,"tag":185,"props":1025,"children":1026},{"style":244},[1027],{"type":45,"value":1028}," --name",{"type":39,"tag":185,"props":1030,"children":1031},{"style":192},[1032],{"type":45,"value":241},{"type":39,"tag":185,"props":1034,"children":1035},{"style":244},[1036],{"type":45,"value":886},{"type":39,"tag":185,"props":1038,"children":1039},{"style":192},[1040],{"type":45,"value":200},{"type":39,"tag":185,"props":1042,"children":1043},{"style":778},[1044],{"type":45,"value":781},{"type":39,"tag":185,"props":1046,"children":1048},{"class":187,"line":1047},23,[1049,1054,1058,1063,1067],{"type":39,"tag":185,"props":1050,"children":1051},{"style":244},[1052],{"type":45,"value":1053},"  --root-dir",{"type":39,"tag":185,"props":1055,"children":1056},{"style":192},[1057],{"type":45,"value":241},{"type":39,"tag":185,"props":1059,"children":1060},{"style":244},[1061],{"type":45,"value":1062},"\u002Fabsolute\u002Fpath\u002Fboltz-experiments",{"type":39,"tag":185,"props":1064,"children":1065},{"style":192},[1066],{"type":45,"value":200},{"type":39,"tag":185,"props":1068,"children":1069},{"style":778},[1070],{"type":45,"value":781},{"type":39,"tag":185,"props":1072,"children":1074},{"class":187,"line":1073},24,[1075,1080],{"type":39,"tag":185,"props":1076,"children":1077},{"style":244},[1078],{"type":45,"value":1079},"  --poll-interval-seconds",{"type":39,"tag":185,"props":1081,"children":1083},{"style":1082},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1084],{"type":45,"value":1085}," 10\n",{"type":39,"tag":185,"props":1087,"children":1089},{"class":187,"line":1088},25,[1090],{"type":39,"tag":185,"props":1091,"children":1092},{"style":728},[1093],{"type":45,"value":1094},"# -> \u002Fabsolute\u002Fpath\u002Fboltz-experiments\u002F\u003Crun-name>\u002Foutputs\u002Farchive.tar.gz, .boltz-run.json\n",{"type":39,"tag":40,"props":1096,"children":1098},{"id":1097},"always-do-this",[1099],{"type":45,"value":1100},"Always Do This",{"type":39,"tag":1102,"props":1103,"children":1104},"ul",{},[1105,1147,1168,1173,1209,1238,1279,1328,1348,1391,1402,1429,1442],{"type":39,"tag":117,"props":1106,"children":1107},{},[1108,1110,1115,1117,1123,1124,1130,1132,1138,1139,1145],{"type":45,"value":1109},"Keep payload field names exactly as the API body names shown in ",{"type":39,"tag":54,"props":1111,"children":1113},{"className":1112},[],[1114],{"type":45,"value":375},{"type":45,"value":1116},"; then pass the merged payload with ",{"type":39,"tag":54,"props":1118,"children":1120},{"className":1119},[],[1121],{"type":45,"value":1122},"--input @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml",{"type":45,"value":407},{"type":39,"tag":54,"props":1125,"children":1127},{"className":1126},[],[1128],{"type":45,"value":1129},"@json:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.json",{"type":45,"value":1131},". Never use ",{"type":39,"tag":54,"props":1133,"children":1135},{"className":1134},[],[1136],{"type":45,"value":1137},"@.\u002Fpayload.yaml",{"type":45,"value":407},{"type":39,"tag":54,"props":1140,"children":1142},{"className":1141},[],[1143],{"type":45,"value":1144},"@file:\u002F\u002F",{"type":45,"value":1146}," for object-typed payloads.",{"type":39,"tag":117,"props":1148,"children":1149},{},[1150,1152,1158,1160,1166],{"type":45,"value":1151},"Use absolute paths for the output root, payload files, and embedded structure files. Do not ",{"type":39,"tag":54,"props":1153,"children":1155},{"className":1154},[],[1156],{"type":45,"value":1157},"cd",{"type":45,"value":1159}," into the run directory for follow-up commands; pass the same ",{"type":39,"tag":54,"props":1161,"children":1163},{"className":1162},[],[1164],{"type":45,"value":1165},"--root-dir",{"type":45,"value":1167}," and use absolute paths so later relative paths do not drift.",{"type":39,"tag":117,"props":1169,"children":1170},{},[1171],{"type":45,"value":1172},"Residue indices are 0-based wherever the payload asks for residue positions (constraints, modifications, contact tokens).",{"type":39,"tag":117,"props":1174,"children":1175},{},[1176,1178,1184,1186,1192,1193,1199,1201,1207],{"type":45,"value":1177},"For CIF\u002FPDB bytes embedded in ",{"type":39,"tag":54,"props":1179,"children":1181},{"className":1180},[],[1182],{"type":45,"value":1183},"--target",{"type":45,"value":1185}," \u002F ",{"type":39,"tag":54,"props":1187,"children":1189},{"className":1188},[],[1190],{"type":45,"value":1191},"structure.data",{"type":45,"value":69},{"type":39,"tag":54,"props":1194,"children":1196},{"className":1195},[],[1197],{"type":45,"value":1198},"@data:\u002F\u002F\u002Fabsolute\u002Fpath\u002Ffile.cif",{"type":45,"value":1200}," — it detects binary and base64-encodes. Don't use bare ",{"type":39,"tag":54,"props":1202,"children":1204},{"className":1203},[],[1205],{"type":45,"value":1206},"@path",{"type":45,"value":1208}," for binary data.",{"type":39,"tag":117,"props":1210,"children":1211},{},[1212,1214,1220,1222,1228,1230,1236],{"type":45,"value":1213},"Use the same slug as both ",{"type":39,"tag":54,"props":1215,"children":1217},{"className":1216},[],[1218],{"type":45,"value":1219},"--idempotency-key",{"type":45,"value":1221}," at submit time and ",{"type":39,"tag":54,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":45,"value":1227},"--name",{"type":45,"value":1229}," at download time so re-runs are idempotent and resume from ",{"type":39,"tag":54,"props":1231,"children":1233},{"className":1232},[],[1234],{"type":45,"value":1235},".boltz-run.json",{"type":45,"value":1237},".",{"type":39,"tag":117,"props":1239,"children":1240},{},[1241,1243,1248,1250,1256,1258,1263,1265,1271,1273,1278],{"type":45,"value":1242},"In permission-gated agents such as Claude Code, keep each Boltz call as a top-level command that starts with ",{"type":39,"tag":54,"props":1244,"children":1246},{"className":1245},[],[1247],{"type":45,"value":59},{"type":45,"value":1249},". Prefer concrete arguments over ",{"type":39,"tag":54,"props":1251,"children":1253},{"className":1252},[],[1254],{"type":45,"value":1255},"sh -c",{"type":45,"value":1257},", inline environment assignments, aliases, wrapper scripts, loops, or pipelines around the ",{"type":39,"tag":54,"props":1259,"children":1261},{"className":1260},[],[1262],{"type":45,"value":59},{"type":45,"value":1264}," invocation unless the user already allowed that exact command form. Use ",{"type":39,"tag":54,"props":1266,"children":1268},{"className":1267},[],[1269],{"type":45,"value":1270},"--raw-output --transform id",{"type":45,"value":1272},", read the printed ID, then paste that literal ID into the next ",{"type":39,"tag":54,"props":1274,"children":1276},{"className":1275},[],[1277],{"type":45,"value":652},{"type":45,"value":707},{"type":39,"tag":117,"props":1280,"children":1281},{},[1282,1284,1289,1291,1296,1298,1303,1305,1311,1313,1319,1321,1326],{"type":45,"value":1283},"Prefer the agent runtime's background\u002Fnon-blocking command mode for ",{"type":39,"tag":54,"props":1285,"children":1287},{"className":1286},[],[1288],{"type":45,"value":652},{"type":45,"value":1290},". In Codex specifically, keep ",{"type":39,"tag":54,"props":1292,"children":1294},{"className":1293},[],[1295],{"type":45,"value":652},{"type":45,"value":1297}," in the foreground and set the shell tool yield to 1000 ms; Codex will return a ",{"type":39,"tag":54,"props":1299,"children":1301},{"className":1300},[],[1302],{"type":45,"value":683},{"type":45,"value":1304}," if the command is still running. Do not append ",{"type":39,"tag":54,"props":1306,"children":1308},{"className":1307},[],[1309],{"type":45,"value":1310},"&",{"type":45,"value":1312}," or use ",{"type":39,"tag":54,"props":1314,"children":1316},{"className":1315},[],[1317],{"type":45,"value":1318},"nohup",{"type":45,"value":1320}," in Codex because the tool runner may clean up shell-backgrounded descendants before ",{"type":39,"tag":54,"props":1322,"children":1324},{"className":1323},[],[1325],{"type":45,"value":1235},{"type":45,"value":1327}," is fully written.",{"type":39,"tag":117,"props":1329,"children":1330},{},[1331,1333,1338,1340,1346],{"type":45,"value":1332},"After the background\u002Fsession starts, do not manually wait on it or run ad hoc polling loops. ",{"type":39,"tag":54,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":45,"value":652},{"type":45,"value":1339}," emits JSONL progress on stderr by default; add ",{"type":39,"tag":54,"props":1341,"children":1343},{"className":1342},[],[1344],{"type":45,"value":1345},"--progress-format text --verbose",{"type":45,"value":1347}," only when you explicitly want human-readable logs.",{"type":39,"tag":117,"props":1349,"children":1350},{},[1351,1353,1358,1360,1366,1368,1373,1375,1381,1383,1389],{"type":45,"value":1352},"In Codex app\u002Fdesktop runtimes with same-thread heartbeat automation support, schedule a heartbeat after launching ",{"type":39,"tag":54,"props":1354,"children":1356},{"className":1355},[],[1357],{"type":45,"value":652},{"type":45,"value":1359},". The heartbeat should run ",{"type":39,"tag":54,"props":1361,"children":1363},{"className":1362},[],[1364],{"type":45,"value":1365},"boltz-api --format json download-status --name \"\u003Crun-name>\" --root-dir \"\u002Fabsolute\u002Fpath\u002Fboltz-experiments\"",{"type":45,"value":1367}," on a sensible cadence, post only material status changes or terminal completion\u002Ffailure, and stop once terminal. Poll the saved ",{"type":39,"tag":54,"props":1369,"children":1371},{"className":1370},[],[1372],{"type":45,"value":683},{"type":45,"value":1374}," with an empty ",{"type":39,"tag":54,"props":1376,"children":1378},{"className":1377},[],[1379],{"type":45,"value":1380},"write_stdin",{"type":45,"value":1382}," only for interactive, user-requested progress checks. Do not loop ",{"type":39,"tag":54,"props":1384,"children":1386},{"className":1385},[],[1387],{"type":45,"value":1388},"retrieve",{"type":45,"value":1390}," yourself.",{"type":39,"tag":117,"props":1392,"children":1393},{},[1394,1396,1401],{"type":45,"value":1395},"If the current host has no heartbeat automation support, do not claim an automatic next check. Report the job ID, run name, output directory, and the command needed to check ",{"type":39,"tag":54,"props":1397,"children":1399},{"className":1398},[],[1400],{"type":45,"value":691},{"type":45,"value":1237},{"type":39,"tag":117,"props":1403,"children":1404},{},[1405,1407,1413,1415,1421,1423,1428],{"type":45,"value":1406},"If detached download needs to be restarted, re-run ",{"type":39,"tag":54,"props":1408,"children":1410},{"className":1409},[],[1411],{"type":45,"value":1412},"boltz-api download-results",{"type":45,"value":1414}," with the same ",{"type":39,"tag":54,"props":1416,"children":1418},{"className":1417},[],[1419],{"type":45,"value":1420},"--name \"\u003Crun-name>\"",{"type":45,"value":1422}," and the same ",{"type":39,"tag":54,"props":1424,"children":1426},{"className":1425},[],[1427],{"type":45,"value":1165},{"type":45,"value":1237},{"type":39,"tag":117,"props":1430,"children":1431},{},[1432,1434,1440],{"type":45,"value":1433},"Poll interval: keep ",{"type":39,"tag":54,"props":1435,"children":1437},{"className":1436},[],[1438],{"type":45,"value":1439},"--poll-interval-seconds 10",{"type":45,"value":1441}," for SAB — predictions usually finish in under a few minutes.",{"type":39,"tag":117,"props":1443,"children":1444},{},[1445,1447,1452],{"type":45,"value":1446},"Cost: there is no published per-unit rate to cite for SAB — run ",{"type":39,"tag":54,"props":1448,"children":1450},{"className":1449},[],[1451],{"type":45,"value":628},{"type":45,"value":1453}," and state only the figure it returns. Don't estimate or comment on cost.",{"type":39,"tag":40,"props":1455,"children":1457},{"id":1456},"escape-hatch",[1458],{"type":45,"value":1459},"Escape Hatch",{"type":39,"tag":48,"props":1461,"children":1462},{},[1463,1465,1470],{"type":45,"value":1464},"For anything not covered in ",{"type":39,"tag":54,"props":1466,"children":1468},{"className":1467},[],[1469],{"type":45,"value":375},{"type":45,"value":172},{"type":39,"tag":1102,"props":1472,"children":1473},{},[1474,1486],{"type":39,"tag":117,"props":1475,"children":1476},{},[1477,1479],{"type":45,"value":1478},"Payload reference: ",{"type":39,"tag":612,"props":1480,"children":1484},{"href":1481,"rel":1482},"https:\u002F\u002Fapi.boltz.bio\u002Fdocs\u002Fapi\u002Fpython\u002Fresources\u002Fpredictions\u002Fsubresources\u002Fstructure_and_binding\u002Fmethods\u002Fstart",[1483],"nofollow",[1485],{"type":45,"value":1481},{"type":39,"tag":117,"props":1487,"children":1488},{},[1489,1491,1497],{"type":45,"value":1490},"CLI flag names: ",{"type":39,"tag":54,"props":1492,"children":1494},{"className":1493},[],[1495],{"type":45,"value":1496},"boltz-api predictions:structure-and-binding start --help",{"type":45,"value":1498}," (schema details aren't there — just flag names and types)",{"type":39,"tag":48,"props":1500,"children":1501},{},[1502,1504,1508,1510,1515],{"type":45,"value":1503},"Read ",{"type":39,"tag":612,"props":1505,"children":1506},{"href":375},[1507],{"type":45,"value":375},{"type":45,"value":1509}," for entity shapes, binding variants, bonds, constraints, model options, and input examples. Read ",{"type":39,"tag":612,"props":1511,"children":1513},{"href":1512},"references\u002Fresults.md",[1514],{"type":45,"value":1512},{"type":45,"value":1516}," when summarizing downloaded outputs, metrics, or validation quirks.",{"type":39,"tag":40,"props":1518,"children":1520},{"id":1519},"outputs",[1521],{"type":45,"value":1522},"Outputs",{"type":39,"tag":48,"props":1524,"children":1525},{},[1526,1528,1534,1536,1540],{"type":45,"value":1527},"Summarize ",{"type":39,"tag":54,"props":1529,"children":1531},{"className":1530},[],[1532],{"type":45,"value":1533},"metrics.json",{"type":45,"value":1535}," and point the user at the downloaded CIF path. Read ",{"type":39,"tag":612,"props":1537,"children":1538},{"href":1512},[1539],{"type":45,"value":1512},{"type":45,"value":1541}," for the local layout, nested metrics, binding metric variants, and SAB validation quirks.",{"type":39,"tag":40,"props":1543,"children":1545},{"id":1544},"sab-400-validation-quirk",[1546],{"type":45,"value":1547},"SAB 400 validation quirk",{"type":39,"tag":48,"props":1549,"children":1550},{},[1551,1553,1559,1561,1566,1567,1572,1574,1579,1581,1585],{"type":45,"value":1552},"If the server rejects a payload with only ",{"type":39,"tag":54,"props":1554,"children":1556},{"className":1555},[],[1557],{"type":45,"value":1558},"{\"code\":\"VALIDATION_ERROR\",\"message\":\"Request validation failed\"}",{"type":45,"value":1560},", inspect ",{"type":39,"tag":54,"props":1562,"children":1564},{"className":1563},[],[1565],{"type":45,"value":127},{"type":45,"value":157},{"type":39,"tag":54,"props":1568,"children":1570},{"className":1569},[],[1571],{"type":45,"value":426},{"type":45,"value":1573},", and ",{"type":39,"tag":54,"props":1575,"children":1577},{"className":1576},[],[1578],{"type":45,"value":588},{"type":45,"value":1580},"; read ",{"type":39,"tag":612,"props":1582,"children":1583},{"href":1512},[1584],{"type":45,"value":1512},{"type":45,"value":1586}," for details.",{"type":39,"tag":1588,"props":1589,"children":1590},"style",{},[1591],{"type":45,"value":1592},"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":1594,"total":1715},[1595,1613,1629,1641,1661,1683,1703],{"slug":1596,"name":1596,"fn":1597,"description":1598,"org":1599,"tags":1600,"stars":22,"repoUrl":23,"updatedAt":24},"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},[1601,1604,1607,1610],{"name":1602,"slug":1603,"type":15},"Accessibility","accessibility",{"name":1605,"slug":1606,"type":15},"Charts","charts",{"name":1608,"slug":1609,"type":15},"Data Visualization","data-visualization",{"name":1611,"slug":1612,"type":15},"Design","design",{"slug":1614,"name":1614,"fn":1615,"description":1616,"org":1617,"tags":1618,"stars":22,"repoUrl":23,"updatedAt":1628},"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},[1619,1622,1625],{"name":1620,"slug":1621,"type":15},"Agents","agents",{"name":1623,"slug":1624,"type":15},"Browser Automation","browser-automation",{"name":1626,"slug":1627,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1630,"name":1630,"fn":1631,"description":1632,"org":1633,"tags":1634,"stars":22,"repoUrl":23,"updatedAt":1640},"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},[1635,1636,1639],{"name":1623,"slug":1624,"type":15},{"name":1637,"slug":1638,"type":15},"Local Development","local-development",{"name":1626,"slug":1627,"type":15},"2026-04-06T18:41:17.526867",{"slug":1642,"name":1642,"fn":1643,"description":1644,"org":1645,"tags":1646,"stars":22,"repoUrl":23,"updatedAt":1660},"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},[1647,1648,1651,1654,1657],{"name":1620,"slug":1621,"type":15},{"name":1649,"slug":1650,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1652,"slug":1653,"type":15},"SDK","sdk",{"name":1655,"slug":1656,"type":15},"Serverless","serverless",{"name":1658,"slug":1659,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1662,"name":1662,"fn":1663,"description":1664,"org":1665,"tags":1666,"stars":22,"repoUrl":23,"updatedAt":1682},"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},[1667,1670,1673,1676,1679],{"name":1668,"slug":1669,"type":15},"Frontend","frontend",{"name":1671,"slug":1672,"type":15},"React","react",{"name":1674,"slug":1675,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1677,"slug":1678,"type":15},"UI Components","ui-components",{"name":1680,"slug":1681,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1684,"name":1684,"fn":1685,"description":1686,"org":1687,"tags":1688,"stars":22,"repoUrl":23,"updatedAt":1702},"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},[1689,1692,1695,1698,1701],{"name":1690,"slug":1691,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1693,"slug":1694,"type":15},"Cost Optimization","cost-optimization",{"name":1696,"slug":1697,"type":15},"LLM","llm",{"name":1699,"slug":1700,"type":15},"Performance","performance",{"name":1680,"slug":1681,"type":15},"2026-04-06T18:40:44.377464",{"slug":1704,"name":1704,"fn":1705,"description":1706,"org":1707,"tags":1708,"stars":22,"repoUrl":23,"updatedAt":1714},"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},[1709,1710,1713],{"name":1693,"slug":1694,"type":15},{"name":1711,"slug":1712,"type":15},"Database","database",{"name":1696,"slug":1697,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1717,"total":1914},[1718,1739,1762,1779,1795,1812,1831,1843,1857,1871,1883,1898],{"slug":1719,"name":1719,"fn":1720,"description":1721,"org":1722,"tags":1723,"stars":1736,"repoUrl":1737,"updatedAt":1738},"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},[1724,1727,1730,1733],{"name":1725,"slug":1726,"type":15},"Documents","documents",{"name":1728,"slug":1729,"type":15},"Healthcare","healthcare",{"name":1731,"slug":1732,"type":15},"Insurance","insurance",{"name":1734,"slug":1735,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1740,"name":1740,"fn":1741,"description":1742,"org":1743,"tags":1744,"stars":1759,"repoUrl":1760,"updatedAt":1761},"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},[1745,1748,1750,1753,1756],{"name":1746,"slug":1747,"type":15},".NET","dotnet",{"name":1749,"slug":1740,"type":15},"ASP.NET Core",{"name":1751,"slug":1752,"type":15},"Blazor","blazor",{"name":1754,"slug":1755,"type":15},"C#","csharp",{"name":1757,"slug":1758,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1763,"name":1763,"fn":1764,"description":1765,"org":1766,"tags":1767,"stars":1759,"repoUrl":1760,"updatedAt":1778},"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},[1768,1771,1774,1777],{"name":1769,"slug":1770,"type":15},"Apps SDK","apps-sdk",{"name":1772,"slug":1773,"type":15},"ChatGPT","chatgpt",{"name":1775,"slug":1776,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1780,"name":1780,"fn":1781,"description":1782,"org":1783,"tags":1784,"stars":1759,"repoUrl":1760,"updatedAt":1794},"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},[1785,1788,1791],{"name":1786,"slug":1787,"type":15},"API Development","api-development",{"name":1789,"slug":1790,"type":15},"CLI","cli",{"name":1792,"slug":1793,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1796,"name":1796,"fn":1797,"description":1798,"org":1799,"tags":1800,"stars":1759,"repoUrl":1760,"updatedAt":1811},"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},[1801,1804,1807,1808],{"name":1802,"slug":1803,"type":15},"Cloudflare","cloudflare",{"name":1805,"slug":1806,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1649,"slug":1650,"type":15},{"name":1809,"slug":1810,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1813,"name":1813,"fn":1814,"description":1815,"org":1816,"tags":1817,"stars":1759,"repoUrl":1760,"updatedAt":1830},"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},[1818,1821,1824,1827],{"name":1819,"slug":1820,"type":15},"Productivity","productivity",{"name":1822,"slug":1823,"type":15},"Project Management","project-management",{"name":1825,"slug":1826,"type":15},"Strategy","strategy",{"name":1828,"slug":1829,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1832,"name":1832,"fn":1833,"description":1834,"org":1835,"tags":1836,"stars":1759,"repoUrl":1760,"updatedAt":1842},"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},[1837,1838,1840,1841],{"name":1611,"slug":1612,"type":15},{"name":1839,"slug":1832,"type":15},"Figma",{"name":1668,"slug":1669,"type":15},{"name":1775,"slug":1776,"type":15},"2026-04-12T05:06:47.939943",{"slug":1844,"name":1844,"fn":1845,"description":1846,"org":1847,"tags":1848,"stars":1759,"repoUrl":1760,"updatedAt":1856},"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},[1849,1850,1853,1854,1855],{"name":1611,"slug":1612,"type":15},{"name":1851,"slug":1852,"type":15},"Design System","design-system",{"name":1839,"slug":1832,"type":15},{"name":1668,"slug":1669,"type":15},{"name":1677,"slug":1678,"type":15},"2026-05-10T05:59:52.971881",{"slug":1858,"name":1858,"fn":1859,"description":1860,"org":1861,"tags":1862,"stars":1759,"repoUrl":1760,"updatedAt":1870},"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},[1863,1864,1865,1868,1869],{"name":1611,"slug":1612,"type":15},{"name":1851,"slug":1852,"type":15},{"name":1866,"slug":1867,"type":15},"Documentation","documentation",{"name":1839,"slug":1832,"type":15},{"name":1668,"slug":1669,"type":15},"2026-05-16T06:07:47.821474",{"slug":1872,"name":1872,"fn":1873,"description":1874,"org":1875,"tags":1876,"stars":1759,"repoUrl":1760,"updatedAt":1882},"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},[1877,1878,1879,1880,1881],{"name":1611,"slug":1612,"type":15},{"name":1839,"slug":1832,"type":15},{"name":1668,"slug":1669,"type":15},{"name":1677,"slug":1678,"type":15},{"name":1757,"slug":1758,"type":15},"2026-05-16T06:07:40.583615",{"slug":1884,"name":1884,"fn":1885,"description":1886,"org":1887,"tags":1888,"stars":1759,"repoUrl":1760,"updatedAt":1897},"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},[1889,1892,1893,1896],{"name":1890,"slug":1891,"type":15},"Animation","animation",{"name":1792,"slug":1793,"type":15},{"name":1894,"slug":1895,"type":15},"Creative","creative",{"name":1611,"slug":1612,"type":15},"2026-05-02T05:31:48.48485",{"slug":1899,"name":1899,"fn":1900,"description":1901,"org":1902,"tags":1903,"stars":1759,"repoUrl":1760,"updatedAt":1913},"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},[1904,1905,1906,1909,1912],{"name":1894,"slug":1895,"type":15},{"name":1611,"slug":1612,"type":15},{"name":1907,"slug":1908,"type":15},"Image Generation","image-generation",{"name":1910,"slug":1911,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]