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