[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-boltz-small-molecule-design":3,"mdc-hmtp13-key":33,"related-repo-openai-boltz-small-molecule-design":1273,"related-org-openai-boltz-small-molecule-design":1396},{"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-small-molecule-design","design small-molecule binders with Boltz","Design new small-molecule binders with Boltz. Use when generating novel ligands or hits for a target without a fixed compound library. Not for screening existing molecules or one-off docking.",{"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},"Chemistry","chemistry",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-small-molecule-design","---\nname: boltz-small-molecule-design\ndescription: Design new small-molecule binders with Boltz. Use when generating novel ligands or hits for a target without a fixed compound library. Not for screening existing molecules or one-off docking.\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 when the user wants de novo small-molecule binders (no existing library).\n\n1. Normalize the target: one or more protein sequences into `target.entities`, plus optional `pocket_residues` (0-based) and\u002For `reference_ligands` (known binders to help locate the pocket).\n2. Pick `num_molecules` — valid range **10 to 1,000,000** (server rejects outside it). If the user says fewer than 10, explain the floor and propose 10.\n3. Only add `chemical_space` (e.g. `\"enamine_real\"`) if the user explicitly wants generation restricted to synthesizable molecules within that library.\n4. Supported optional features include `chemical_space` and `molecule_filters`; only add them on explicit request. Read [references\u002Fapi.md](references\u002Fapi.md) for exact shapes and filter options.\n5. Author the payload YAML or JSON, run `estimate-cost`, show the USD cost, wait for explicit confirmation. Cost is a flat $0.025 per molecule (size-independent); still quote `estimated_cost_usd` from the response as the authoritative total.\n6. `start` to submit (synchronous). Capture the ID.\n7. Launch `download-results` with the agent runtime's background\u002Fnon-blocking command facility; it polls, paginates, downloads per-hit structures, and exits when terminal. 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.\n8. Rank hits from `\u003Coutput-root>\u002F\u003Crun-name>\u002Fresults\u002Findex.jsonl` by `binding_confidence` for hit discovery or `optimization_score` for lead optimization. Each generated molecule also carries a free `adme` block (`solubility`, `permeability`, `lipophilicity`) — surface it for developability triage when the user cares about ADME, or when a top hit looks risky. Read [references\u002Fresults.md](references\u002Fresults.md) for output layout and metric details.\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: sm-design-\u003Ctarget>-\u003Cbatch>-v1\n\nboltz-api small-molecule:design estimate-cost \\\n  --input @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml\n\nboltz-api small-molecule:design start \\\n       --idempotency-key \"\u003Crun-name>\" \\\n       --input @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml \\\n       --raw-output --transform id\n\n# 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 60\n# -> \u002Fabsolute\u002Fpath\u002Fboltz-experiments\u002F\u003Crun-name>\u002Fresults\u002F\u003Cpres_*>\u002F...\n```\n\nPayload keys are `num_molecules`, `target`, `chemical_space`, `molecule_filters` — the API body field names.\n\n## Always Do This\n\n- Enforce `10 \u003C= num_molecules \u003C= 1,000,000` before calling `estimate-cost`. The server rejects values outside that range.\n- Cost is a flat $0.025 per molecule (size-independent). `estimate-cost` returns the authoritative total.\n- Treat pocket residue indices as 0-based.\n- Keep payload field names exactly as the API body names shown in `references\u002Fapi.md`.\n- Use absolute paths for the output root, payload files, and embedded target 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- Prefer one merged top-level payload via `--input @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml` or `@json:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.json` for `estimate-cost` and `start`. Keep `--idempotency-key` and `--workspace-id` top-level; if they also appear inside `--input`, the top-level flags win.\n- Direct object flags still work as overrides: for example `--target @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Ftarget.yaml` or `--molecule-filters @json:\u002F\u002F\u002Fabsolute\u002Fpath\u002Ffilters.json`. Piped YAML \u002F JSON on stdin also works, but it must use API body field names. Never use `@file:\u002F\u002F`.\n- Use the same slug as both `--idempotency-key` at submit and `--name` on `download-results`.\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. Wall-clock time scales roughly with `num_molecules`: under 100 often finishes in a few minutes, 100-1,000 may take several minutes to tens of minutes, and larger runs can take longer or hours depending on inputs and system load. Don't quote a fixed duration. `--poll-interval-seconds 60` is a sensible default for the downloader. `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\"` and stop once terminal. Choose cadence by `num_molecules`: under 100 -> every 1-2 minutes; 100-1,000 -> every 5 minutes; over 1,000 -> every 15 minutes. Post only material status changes or terminal completion\u002Ffailure. Poll the saved `session_id` with an empty `write_stdin` only for interactive, user-requested progress checks. Never run a manual poll loop in the current turn.\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- Do not invent filters; only add `molecule_filters` on user request.\n\n## Escape Hatch\n\n- Payload reference: \u003Chttps:\u002F\u002Fapi.boltz.bio\u002Fdocs\u002Fapi\u002Fpython\u002Fresources\u002Fsmall_molecule\u002Fsubresources\u002Fdesign\u002Fmethods\u002Fstart>\n- CLI flag names: `boltz-api small-molecule:design start --help`\n\nRead [references\u002Fapi.md](references\u002Fapi.md) for the `target`, `chemical_space`, and `molecule_filters` shapes (filter catalog matches the screen endpoint). Read [references\u002Fresults.md](references\u002Fresults.md) after download when ranking generated molecules or explaining outputs.\n\n## Outputs\n\nRank from `results\u002Findex.jsonl` after `download-results`; use [references\u002Fresults.md](references\u002Fresults.md) for local file layout and metric meanings.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,107,112,381,387,727,758,764,1166,1172,1198,1235,1241,1267],{"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 when the user wants de novo small-molecule binders (no existing library).",{"type":39,"tag":113,"props":114,"children":115},"ol",{},[116,146,167,188,216,237,248,314],{"type":39,"tag":117,"props":118,"children":119},"li",{},[120,122,128,130,136,138,144],{"type":45,"value":121},"Normalize the target: one or more protein sequences into ",{"type":39,"tag":54,"props":123,"children":125},{"className":124},[],[126],{"type":45,"value":127},"target.entities",{"type":45,"value":129},", plus optional ",{"type":39,"tag":54,"props":131,"children":133},{"className":132},[],[134],{"type":45,"value":135},"pocket_residues",{"type":45,"value":137}," (0-based) and\u002For ",{"type":39,"tag":54,"props":139,"children":141},{"className":140},[],[142],{"type":45,"value":143},"reference_ligands",{"type":45,"value":145}," (known binders to help locate the pocket).",{"type":39,"tag":117,"props":147,"children":148},{},[149,151,157,159,165],{"type":45,"value":150},"Pick ",{"type":39,"tag":54,"props":152,"children":154},{"className":153},[],[155],{"type":45,"value":156},"num_molecules",{"type":45,"value":158}," — valid range ",{"type":39,"tag":160,"props":161,"children":162},"strong",{},[163],{"type":45,"value":164},"10 to 1,000,000",{"type":45,"value":166}," (server rejects outside it). If the user says fewer than 10, explain the floor and propose 10.",{"type":39,"tag":117,"props":168,"children":169},{},[170,172,178,180,186],{"type":45,"value":171},"Only add ",{"type":39,"tag":54,"props":173,"children":175},{"className":174},[],[176],{"type":45,"value":177},"chemical_space",{"type":45,"value":179}," (e.g. ",{"type":39,"tag":54,"props":181,"children":183},{"className":182},[],[184],{"type":45,"value":185},"\"enamine_real\"",{"type":45,"value":187},") if the user explicitly wants generation restricted to synthesizable molecules within that library.",{"type":39,"tag":117,"props":189,"children":190},{},[191,193,198,200,206,208,214],{"type":45,"value":192},"Supported optional features include ",{"type":39,"tag":54,"props":194,"children":196},{"className":195},[],[197],{"type":45,"value":177},{"type":45,"value":199}," and ",{"type":39,"tag":54,"props":201,"children":203},{"className":202},[],[204],{"type":45,"value":205},"molecule_filters",{"type":45,"value":207},"; only add them on explicit request. Read ",{"type":39,"tag":209,"props":210,"children":212},"a",{"href":211},"references\u002Fapi.md",[213],{"type":45,"value":211},{"type":45,"value":215}," for exact shapes and filter options.",{"type":39,"tag":117,"props":217,"children":218},{},[219,221,227,229,235],{"type":45,"value":220},"Author the payload YAML or JSON, run ",{"type":39,"tag":54,"props":222,"children":224},{"className":223},[],[225],{"type":45,"value":226},"estimate-cost",{"type":45,"value":228},", show the USD cost, wait for explicit confirmation. Cost is a flat $0.025 per molecule (size-independent); still quote ",{"type":39,"tag":54,"props":230,"children":232},{"className":231},[],[233],{"type":45,"value":234},"estimated_cost_usd",{"type":45,"value":236}," from the response as the authoritative total.",{"type":39,"tag":117,"props":238,"children":239},{},[240,246],{"type":39,"tag":54,"props":241,"children":243},{"className":242},[],[244],{"type":45,"value":245},"start",{"type":45,"value":247}," to submit (synchronous). Capture the ID.",{"type":39,"tag":117,"props":249,"children":250},{},[251,253,259,261,267,269,274,276,282,284,290,292,298,300,305,307,312],{"type":45,"value":252},"Launch ",{"type":39,"tag":54,"props":254,"children":256},{"className":255},[],[257],{"type":45,"value":258},"download-results",{"type":45,"value":260}," with the agent runtime's background\u002Fnon-blocking command facility; it polls, paginates, downloads per-hit structures, and exits when terminal. In Claude Code, use Bash with ",{"type":39,"tag":54,"props":262,"children":264},{"className":263},[],[265],{"type":45,"value":266},"run_in_background: true",{"type":45,"value":268},". In Codex, run ",{"type":39,"tag":54,"props":270,"children":272},{"className":271},[],[273],{"type":45,"value":258},{"type":45,"value":275}," as a foreground shell command with ",{"type":39,"tag":54,"props":277,"children":279},{"className":278},[],[280],{"type":45,"value":281},"yield_time_ms: 1000",{"type":45,"value":283},"; if Codex returns a ",{"type":39,"tag":54,"props":285,"children":287},{"className":286},[],[288],{"type":45,"value":289},"session_id",{"type":45,"value":291},", keep it for optional same-thread polling, but treat ",{"type":39,"tag":54,"props":293,"children":295},{"className":294},[],[296],{"type":45,"value":297},"download-status",{"type":45,"value":299}," 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":301,"children":303},{"className":302},[],[304],{"type":45,"value":297},{"type":45,"value":306}," 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":308,"children":310},{"className":309},[],[311],{"type":45,"value":297},{"type":45,"value":313}," command.",{"type":39,"tag":117,"props":315,"children":316},{},[317,319,325,327,333,335,341,343,349,351,357,359,365,366,372,374,379],{"type":45,"value":318},"Rank hits from ",{"type":39,"tag":54,"props":320,"children":322},{"className":321},[],[323],{"type":45,"value":324},"\u003Coutput-root>\u002F\u003Crun-name>\u002Fresults\u002Findex.jsonl",{"type":45,"value":326}," by ",{"type":39,"tag":54,"props":328,"children":330},{"className":329},[],[331],{"type":45,"value":332},"binding_confidence",{"type":45,"value":334}," for hit discovery or ",{"type":39,"tag":54,"props":336,"children":338},{"className":337},[],[339],{"type":45,"value":340},"optimization_score",{"type":45,"value":342}," for lead optimization. Each generated molecule also carries a free ",{"type":39,"tag":54,"props":344,"children":346},{"className":345},[],[347],{"type":45,"value":348},"adme",{"type":45,"value":350}," block (",{"type":39,"tag":54,"props":352,"children":354},{"className":353},[],[355],{"type":45,"value":356},"solubility",{"type":45,"value":358},", ",{"type":39,"tag":54,"props":360,"children":362},{"className":361},[],[363],{"type":45,"value":364},"permeability",{"type":45,"value":358},{"type":39,"tag":54,"props":367,"children":369},{"className":368},[],[370],{"type":45,"value":371},"lipophilicity",{"type":45,"value":373},") — surface it for developability triage when the user cares about ADME, or when a top hit looks risky. Read ",{"type":39,"tag":209,"props":375,"children":377},{"href":376},"references\u002Fresults.md",[378],{"type":45,"value":376},{"type":45,"value":380}," for output layout and metric details.",{"type":39,"tag":40,"props":382,"children":384},{"id":383},"command-pattern",[385],{"type":45,"value":386},"Command Pattern",{"type":39,"tag":388,"props":389,"children":394},"pre",{"className":390,"code":391,"language":392,"meta":393,"style":393},"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: sm-design-\u003Ctarget>-\u003Cbatch>-v1\n\nboltz-api small-molecule:design estimate-cost \\\n  --input @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml\n\nboltz-api small-molecule:design start \\\n       --idempotency-key \"\u003Crun-name>\" \\\n       --input @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml \\\n       --raw-output --transform id\n\n# 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 60\n# -> \u002Fabsolute\u002Fpath\u002Fboltz-experiments\u002F\u003Crun-name>\u002Fresults\u002F\u003Cpres_*>\u002F...\n","bash","",[395],{"type":39,"tag":54,"props":396,"children":397},{"__ignoreMap":393},[398,410,419,429,455,469,477,498,527,545,564,572,581,590,599,608,617,634,677,703,718],{"type":39,"tag":399,"props":400,"children":403},"span",{"class":401,"line":402},"line",1,[404],{"type":39,"tag":399,"props":405,"children":407},{"style":406},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[408],{"type":45,"value":409},"# Replace placeholders with concrete absolute paths before running.\n",{"type":39,"tag":399,"props":411,"children":413},{"class":401,"line":412},2,[414],{"type":39,"tag":399,"props":415,"children":416},{"style":406},[417],{"type":45,"value":418},"# Use a short descriptive run name, for example: sm-design-\u003Ctarget>-\u003Cbatch>-v1\n",{"type":39,"tag":399,"props":420,"children":422},{"class":401,"line":421},3,[423],{"type":39,"tag":399,"props":424,"children":426},{"emptyLinePlaceholder":425},true,[427],{"type":45,"value":428},"\n",{"type":39,"tag":399,"props":430,"children":432},{"class":401,"line":431},4,[433,438,444,449],{"type":39,"tag":399,"props":434,"children":436},{"style":435},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[437],{"type":45,"value":59},{"type":39,"tag":399,"props":439,"children":441},{"style":440},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[442],{"type":45,"value":443}," small-molecule:design",{"type":39,"tag":399,"props":445,"children":446},{"style":440},[447],{"type":45,"value":448}," estimate-cost",{"type":39,"tag":399,"props":450,"children":452},{"style":451},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[453],{"type":45,"value":454}," \\\n",{"type":39,"tag":399,"props":456,"children":458},{"class":401,"line":457},5,[459,464],{"type":39,"tag":399,"props":460,"children":461},{"style":440},[462],{"type":45,"value":463},"  --input",{"type":39,"tag":399,"props":465,"children":466},{"style":440},[467],{"type":45,"value":468}," @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml\n",{"type":39,"tag":399,"props":470,"children":472},{"class":401,"line":471},6,[473],{"type":39,"tag":399,"props":474,"children":475},{"emptyLinePlaceholder":425},[476],{"type":45,"value":428},{"type":39,"tag":399,"props":478,"children":480},{"class":401,"line":479},7,[481,485,489,494],{"type":39,"tag":399,"props":482,"children":483},{"style":435},[484],{"type":45,"value":59},{"type":39,"tag":399,"props":486,"children":487},{"style":440},[488],{"type":45,"value":443},{"type":39,"tag":399,"props":490,"children":491},{"style":440},[492],{"type":45,"value":493}," start",{"type":39,"tag":399,"props":495,"children":496},{"style":451},[497],{"type":45,"value":454},{"type":39,"tag":399,"props":499,"children":501},{"class":401,"line":500},8,[502,507,513,518,523],{"type":39,"tag":399,"props":503,"children":504},{"style":440},[505],{"type":45,"value":506},"       --idempotency-key",{"type":39,"tag":399,"props":508,"children":510},{"style":509},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[511],{"type":45,"value":512}," \"",{"type":39,"tag":399,"props":514,"children":515},{"style":440},[516],{"type":45,"value":517},"\u003Crun-name>",{"type":39,"tag":399,"props":519,"children":520},{"style":509},[521],{"type":45,"value":522},"\"",{"type":39,"tag":399,"props":524,"children":525},{"style":451},[526],{"type":45,"value":454},{"type":39,"tag":399,"props":528,"children":530},{"class":401,"line":529},9,[531,536,541],{"type":39,"tag":399,"props":532,"children":533},{"style":440},[534],{"type":45,"value":535},"       --input",{"type":39,"tag":399,"props":537,"children":538},{"style":440},[539],{"type":45,"value":540}," @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml",{"type":39,"tag":399,"props":542,"children":543},{"style":451},[544],{"type":45,"value":454},{"type":39,"tag":399,"props":546,"children":548},{"class":401,"line":547},10,[549,554,559],{"type":39,"tag":399,"props":550,"children":551},{"style":440},[552],{"type":45,"value":553},"       --raw-output",{"type":39,"tag":399,"props":555,"children":556},{"style":440},[557],{"type":45,"value":558}," --transform",{"type":39,"tag":399,"props":560,"children":561},{"style":440},[562],{"type":45,"value":563}," id\n",{"type":39,"tag":399,"props":565,"children":567},{"class":401,"line":566},11,[568],{"type":39,"tag":399,"props":569,"children":570},{"emptyLinePlaceholder":425},[571],{"type":45,"value":428},{"type":39,"tag":399,"props":573,"children":575},{"class":401,"line":574},12,[576],{"type":39,"tag":399,"props":577,"children":578},{"style":406},[579],{"type":45,"value":580},"# Copy the printed job ID into this command, then launch it in the agent\n",{"type":39,"tag":399,"props":582,"children":584},{"class":401,"line":583},13,[585],{"type":39,"tag":399,"props":586,"children":587},{"style":406},[588],{"type":45,"value":589},"# runtime's background\u002Fnon-blocking mode.\n",{"type":39,"tag":399,"props":591,"children":593},{"class":401,"line":592},14,[594],{"type":39,"tag":399,"props":595,"children":596},{"style":406},[597],{"type":45,"value":598},"# Claude Code: Bash with run_in_background=true.\n",{"type":39,"tag":399,"props":600,"children":602},{"class":401,"line":601},15,[603],{"type":39,"tag":399,"props":604,"children":605},{"style":406},[606],{"type":45,"value":607},"# Codex: foreground shell command with yield_time_ms=1000; keep the returned session_id if one is provided.\n",{"type":39,"tag":399,"props":609,"children":611},{"class":401,"line":610},16,[612],{"type":39,"tag":399,"props":613,"children":614},{"style":406},[615],{"type":45,"value":616},"# Do not append \"&\" or use nohup in Codex.\n",{"type":39,"tag":399,"props":618,"children":620},{"class":401,"line":619},17,[621,625,630],{"type":39,"tag":399,"props":622,"children":623},{"style":435},[624],{"type":45,"value":59},{"type":39,"tag":399,"props":626,"children":627},{"style":440},[628],{"type":45,"value":629}," download-results",{"type":39,"tag":399,"props":631,"children":632},{"style":451},[633],{"type":45,"value":454},{"type":39,"tag":399,"props":635,"children":637},{"class":401,"line":636},18,[638,643,647,652,656,661,665,669,673],{"type":39,"tag":399,"props":639,"children":640},{"style":440},[641],{"type":45,"value":642},"  --id",{"type":39,"tag":399,"props":644,"children":645},{"style":509},[646],{"type":45,"value":512},{"type":39,"tag":399,"props":648,"children":649},{"style":440},[650],{"type":45,"value":651},"\u003Cjob-id-from-start>",{"type":39,"tag":399,"props":653,"children":654},{"style":509},[655],{"type":45,"value":522},{"type":39,"tag":399,"props":657,"children":658},{"style":440},[659],{"type":45,"value":660}," --name",{"type":39,"tag":399,"props":662,"children":663},{"style":509},[664],{"type":45,"value":512},{"type":39,"tag":399,"props":666,"children":667},{"style":440},[668],{"type":45,"value":517},{"type":39,"tag":399,"props":670,"children":671},{"style":509},[672],{"type":45,"value":522},{"type":39,"tag":399,"props":674,"children":675},{"style":451},[676],{"type":45,"value":454},{"type":39,"tag":399,"props":678,"children":680},{"class":401,"line":679},19,[681,686,690,695,699],{"type":39,"tag":399,"props":682,"children":683},{"style":440},[684],{"type":45,"value":685},"  --root-dir",{"type":39,"tag":399,"props":687,"children":688},{"style":509},[689],{"type":45,"value":512},{"type":39,"tag":399,"props":691,"children":692},{"style":440},[693],{"type":45,"value":694},"\u002Fabsolute\u002Fpath\u002Fboltz-experiments",{"type":39,"tag":399,"props":696,"children":697},{"style":509},[698],{"type":45,"value":522},{"type":39,"tag":399,"props":700,"children":701},{"style":451},[702],{"type":45,"value":454},{"type":39,"tag":399,"props":704,"children":706},{"class":401,"line":705},20,[707,712],{"type":39,"tag":399,"props":708,"children":709},{"style":440},[710],{"type":45,"value":711},"  --poll-interval-seconds",{"type":39,"tag":399,"props":713,"children":715},{"style":714},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[716],{"type":45,"value":717}," 60\n",{"type":39,"tag":399,"props":719,"children":721},{"class":401,"line":720},21,[722],{"type":39,"tag":399,"props":723,"children":724},{"style":406},[725],{"type":45,"value":726},"# -> \u002Fabsolute\u002Fpath\u002Fboltz-experiments\u002F\u003Crun-name>\u002Fresults\u002F\u003Cpres_*>\u002F...\n",{"type":39,"tag":48,"props":728,"children":729},{},[730,732,737,738,744,745,750,751,756],{"type":45,"value":731},"Payload keys are ",{"type":39,"tag":54,"props":733,"children":735},{"className":734},[],[736],{"type":45,"value":156},{"type":45,"value":358},{"type":39,"tag":54,"props":739,"children":741},{"className":740},[],[742],{"type":45,"value":743},"target",{"type":45,"value":358},{"type":39,"tag":54,"props":746,"children":748},{"className":747},[],[749],{"type":45,"value":177},{"type":45,"value":358},{"type":39,"tag":54,"props":752,"children":754},{"className":753},[],[755],{"type":45,"value":205},{"type":45,"value":757}," — the API body field names.",{"type":39,"tag":40,"props":759,"children":761},{"id":760},"always-do-this",[762],{"type":45,"value":763},"Always Do This",{"type":39,"tag":765,"props":766,"children":767},"ul",{},[768,788,800,805,817,838,895,922,948,989,1039,1074,1116,1127,1154],{"type":39,"tag":117,"props":769,"children":770},{},[771,773,779,781,786],{"type":45,"value":772},"Enforce ",{"type":39,"tag":54,"props":774,"children":776},{"className":775},[],[777],{"type":45,"value":778},"10 \u003C= num_molecules \u003C= 1,000,000",{"type":45,"value":780}," before calling ",{"type":39,"tag":54,"props":782,"children":784},{"className":783},[],[785],{"type":45,"value":226},{"type":45,"value":787},". The server rejects values outside that range.",{"type":39,"tag":117,"props":789,"children":790},{},[791,793,798],{"type":45,"value":792},"Cost is a flat $0.025 per molecule (size-independent). ",{"type":39,"tag":54,"props":794,"children":796},{"className":795},[],[797],{"type":45,"value":226},{"type":45,"value":799}," returns the authoritative total.",{"type":39,"tag":117,"props":801,"children":802},{},[803],{"type":45,"value":804},"Treat pocket residue indices as 0-based.",{"type":39,"tag":117,"props":806,"children":807},{},[808,810,815],{"type":45,"value":809},"Keep payload field names exactly as the API body names shown in ",{"type":39,"tag":54,"props":811,"children":813},{"className":812},[],[814],{"type":45,"value":211},{"type":45,"value":816},".",{"type":39,"tag":117,"props":818,"children":819},{},[820,822,828,830,836],{"type":45,"value":821},"Use absolute paths for the output root, payload files, and embedded target files. Do not ",{"type":39,"tag":54,"props":823,"children":825},{"className":824},[],[826],{"type":45,"value":827},"cd",{"type":45,"value":829}," into the run directory for follow-up commands; pass the same ",{"type":39,"tag":54,"props":831,"children":833},{"className":832},[],[834],{"type":45,"value":835},"--root-dir",{"type":45,"value":837}," and use absolute paths so later relative paths do not drift.",{"type":39,"tag":117,"props":839,"children":840},{},[841,843,849,851,857,859,864,865,870,872,878,879,885,887,893],{"type":45,"value":842},"Prefer one merged top-level payload via ",{"type":39,"tag":54,"props":844,"children":846},{"className":845},[],[847],{"type":45,"value":848},"--input @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.yaml",{"type":45,"value":850}," or ",{"type":39,"tag":54,"props":852,"children":854},{"className":853},[],[855],{"type":45,"value":856},"@json:\u002F\u002F\u002Fabsolute\u002Fpath\u002Fpayload.json",{"type":45,"value":858}," for ",{"type":39,"tag":54,"props":860,"children":862},{"className":861},[],[863],{"type":45,"value":226},{"type":45,"value":199},{"type":39,"tag":54,"props":866,"children":868},{"className":867},[],[869],{"type":45,"value":245},{"type":45,"value":871},". Keep ",{"type":39,"tag":54,"props":873,"children":875},{"className":874},[],[876],{"type":45,"value":877},"--idempotency-key",{"type":45,"value":199},{"type":39,"tag":54,"props":880,"children":882},{"className":881},[],[883],{"type":45,"value":884},"--workspace-id",{"type":45,"value":886}," top-level; if they also appear inside ",{"type":39,"tag":54,"props":888,"children":890},{"className":889},[],[891],{"type":45,"value":892},"--input",{"type":45,"value":894},", the top-level flags win.",{"type":39,"tag":117,"props":896,"children":897},{},[898,900,906,907,913,915,921],{"type":45,"value":899},"Direct object flags still work as overrides: for example ",{"type":39,"tag":54,"props":901,"children":903},{"className":902},[],[904],{"type":45,"value":905},"--target @yaml:\u002F\u002F\u002Fabsolute\u002Fpath\u002Ftarget.yaml",{"type":45,"value":850},{"type":39,"tag":54,"props":908,"children":910},{"className":909},[],[911],{"type":45,"value":912},"--molecule-filters @json:\u002F\u002F\u002Fabsolute\u002Fpath\u002Ffilters.json",{"type":45,"value":914},". Piped YAML \u002F JSON on stdin also works, but it must use API body field names. Never use ",{"type":39,"tag":54,"props":916,"children":918},{"className":917},[],[919],{"type":45,"value":920},"@file:\u002F\u002F",{"type":45,"value":816},{"type":39,"tag":117,"props":923,"children":924},{},[925,927,932,934,940,942,947],{"type":45,"value":926},"Use the same slug as both ",{"type":39,"tag":54,"props":928,"children":930},{"className":929},[],[931],{"type":45,"value":877},{"type":45,"value":933}," at submit and ",{"type":39,"tag":54,"props":935,"children":937},{"className":936},[],[938],{"type":45,"value":939},"--name",{"type":45,"value":941}," on ",{"type":39,"tag":54,"props":943,"children":945},{"className":944},[],[946],{"type":45,"value":258},{"type":45,"value":816},{"type":39,"tag":117,"props":949,"children":950},{},[951,953,958,960,966,968,973,975,981,983,988],{"type":45,"value":952},"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":954,"children":956},{"className":955},[],[957],{"type":45,"value":59},{"type":45,"value":959},". Prefer concrete arguments over ",{"type":39,"tag":54,"props":961,"children":963},{"className":962},[],[964],{"type":45,"value":965},"sh -c",{"type":45,"value":967},", inline environment assignments, aliases, wrapper scripts, loops, or pipelines around the ",{"type":39,"tag":54,"props":969,"children":971},{"className":970},[],[972],{"type":45,"value":59},{"type":45,"value":974}," invocation unless the user already allowed that exact command form. Use ",{"type":39,"tag":54,"props":976,"children":978},{"className":977},[],[979],{"type":45,"value":980},"--raw-output --transform id",{"type":45,"value":982},", read the printed ID, then paste that literal ID into the next ",{"type":39,"tag":54,"props":984,"children":986},{"className":985},[],[987],{"type":45,"value":258},{"type":45,"value":313},{"type":39,"tag":117,"props":990,"children":991},{},[992,994,999,1001,1006,1008,1013,1015,1021,1023,1029,1031,1037],{"type":45,"value":993},"Prefer the agent runtime's background\u002Fnon-blocking command mode for ",{"type":39,"tag":54,"props":995,"children":997},{"className":996},[],[998],{"type":45,"value":258},{"type":45,"value":1000},". In Codex specifically, keep ",{"type":39,"tag":54,"props":1002,"children":1004},{"className":1003},[],[1005],{"type":45,"value":258},{"type":45,"value":1007}," in the foreground and set the shell tool yield to 1000 ms; Codex will return a ",{"type":39,"tag":54,"props":1009,"children":1011},{"className":1010},[],[1012],{"type":45,"value":289},{"type":45,"value":1014}," if the command is still running. Do not append ",{"type":39,"tag":54,"props":1016,"children":1018},{"className":1017},[],[1019],{"type":45,"value":1020},"&",{"type":45,"value":1022}," or use ",{"type":39,"tag":54,"props":1024,"children":1026},{"className":1025},[],[1027],{"type":45,"value":1028},"nohup",{"type":45,"value":1030}," in Codex because the tool runner may clean up shell-backgrounded descendants before ",{"type":39,"tag":54,"props":1032,"children":1034},{"className":1033},[],[1035],{"type":45,"value":1036},".boltz-run.json",{"type":45,"value":1038}," is fully written.",{"type":39,"tag":117,"props":1040,"children":1041},{},[1042,1044,1049,1051,1057,1059,1064,1066,1072],{"type":45,"value":1043},"After the background\u002Fsession starts, do not manually wait on it or run ad hoc polling loops. Wall-clock time scales roughly with ",{"type":39,"tag":54,"props":1045,"children":1047},{"className":1046},[],[1048],{"type":45,"value":156},{"type":45,"value":1050},": under 100 often finishes in a few minutes, 100-1,000 may take several minutes to tens of minutes, and larger runs can take longer or hours depending on inputs and system load. Don't quote a fixed duration. ",{"type":39,"tag":54,"props":1052,"children":1054},{"className":1053},[],[1055],{"type":45,"value":1056},"--poll-interval-seconds 60",{"type":45,"value":1058}," is a sensible default for the downloader. ",{"type":39,"tag":54,"props":1060,"children":1062},{"className":1061},[],[1063],{"type":45,"value":258},{"type":45,"value":1065}," emits JSONL progress on stderr by default; add ",{"type":39,"tag":54,"props":1067,"children":1069},{"className":1068},[],[1070],{"type":45,"value":1071},"--progress-format text --verbose",{"type":45,"value":1073}," only when you explicitly want human-readable logs.",{"type":39,"tag":117,"props":1075,"children":1076},{},[1077,1079,1084,1086,1092,1094,1099,1101,1106,1108,1114],{"type":45,"value":1078},"In Codex app\u002Fdesktop runtimes with same-thread heartbeat automation support, schedule a heartbeat after launching ",{"type":39,"tag":54,"props":1080,"children":1082},{"className":1081},[],[1083],{"type":45,"value":258},{"type":45,"value":1085},". The heartbeat should run ",{"type":39,"tag":54,"props":1087,"children":1089},{"className":1088},[],[1090],{"type":45,"value":1091},"boltz-api --format json download-status --name \"\u003Crun-name>\" --root-dir \"\u002Fabsolute\u002Fpath\u002Fboltz-experiments\"",{"type":45,"value":1093}," and stop once terminal. Choose cadence by ",{"type":39,"tag":54,"props":1095,"children":1097},{"className":1096},[],[1098],{"type":45,"value":156},{"type":45,"value":1100},": under 100 -> every 1-2 minutes; 100-1,000 -> every 5 minutes; over 1,000 -> every 15 minutes. Post only material status changes or terminal completion\u002Ffailure. Poll the saved ",{"type":39,"tag":54,"props":1102,"children":1104},{"className":1103},[],[1105],{"type":45,"value":289},{"type":45,"value":1107}," with an empty ",{"type":39,"tag":54,"props":1109,"children":1111},{"className":1110},[],[1112],{"type":45,"value":1113},"write_stdin",{"type":45,"value":1115}," only for interactive, user-requested progress checks. Never run a manual poll loop in the current turn.",{"type":39,"tag":117,"props":1117,"children":1118},{},[1119,1121,1126],{"type":45,"value":1120},"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":1122,"children":1124},{"className":1123},[],[1125],{"type":45,"value":297},{"type":45,"value":816},{"type":39,"tag":117,"props":1128,"children":1129},{},[1130,1132,1138,1140,1146,1148,1153],{"type":45,"value":1131},"If detached download needs to be restarted, re-run ",{"type":39,"tag":54,"props":1133,"children":1135},{"className":1134},[],[1136],{"type":45,"value":1137},"boltz-api download-results",{"type":45,"value":1139}," with the same ",{"type":39,"tag":54,"props":1141,"children":1143},{"className":1142},[],[1144],{"type":45,"value":1145},"--name \"\u003Crun-name>\"",{"type":45,"value":1147}," and the same ",{"type":39,"tag":54,"props":1149,"children":1151},{"className":1150},[],[1152],{"type":45,"value":835},{"type":45,"value":816},{"type":39,"tag":117,"props":1155,"children":1156},{},[1157,1159,1164],{"type":45,"value":1158},"Do not invent filters; only add ",{"type":39,"tag":54,"props":1160,"children":1162},{"className":1161},[],[1163],{"type":45,"value":205},{"type":45,"value":1165}," on user request.",{"type":39,"tag":40,"props":1167,"children":1169},{"id":1168},"escape-hatch",[1170],{"type":45,"value":1171},"Escape Hatch",{"type":39,"tag":765,"props":1173,"children":1174},{},[1175,1187],{"type":39,"tag":117,"props":1176,"children":1177},{},[1178,1180],{"type":45,"value":1179},"Payload reference: ",{"type":39,"tag":209,"props":1181,"children":1185},{"href":1182,"rel":1183},"https:\u002F\u002Fapi.boltz.bio\u002Fdocs\u002Fapi\u002Fpython\u002Fresources\u002Fsmall_molecule\u002Fsubresources\u002Fdesign\u002Fmethods\u002Fstart",[1184],"nofollow",[1186],{"type":45,"value":1182},{"type":39,"tag":117,"props":1188,"children":1189},{},[1190,1192],{"type":45,"value":1191},"CLI flag names: ",{"type":39,"tag":54,"props":1193,"children":1195},{"className":1194},[],[1196],{"type":45,"value":1197},"boltz-api small-molecule:design start --help",{"type":39,"tag":48,"props":1199,"children":1200},{},[1201,1203,1207,1209,1214,1215,1220,1222,1227,1229,1233],{"type":45,"value":1202},"Read ",{"type":39,"tag":209,"props":1204,"children":1205},{"href":211},[1206],{"type":45,"value":211},{"type":45,"value":1208}," for the ",{"type":39,"tag":54,"props":1210,"children":1212},{"className":1211},[],[1213],{"type":45,"value":743},{"type":45,"value":358},{"type":39,"tag":54,"props":1216,"children":1218},{"className":1217},[],[1219],{"type":45,"value":177},{"type":45,"value":1221},", and ",{"type":39,"tag":54,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":45,"value":205},{"type":45,"value":1228}," shapes (filter catalog matches the screen endpoint). Read ",{"type":39,"tag":209,"props":1230,"children":1231},{"href":376},[1232],{"type":45,"value":376},{"type":45,"value":1234}," after download when ranking generated molecules or explaining outputs.",{"type":39,"tag":40,"props":1236,"children":1238},{"id":1237},"outputs",[1239],{"type":45,"value":1240},"Outputs",{"type":39,"tag":48,"props":1242,"children":1243},{},[1244,1246,1252,1254,1259,1261,1265],{"type":45,"value":1245},"Rank from ",{"type":39,"tag":54,"props":1247,"children":1249},{"className":1248},[],[1250],{"type":45,"value":1251},"results\u002Findex.jsonl",{"type":45,"value":1253}," after ",{"type":39,"tag":54,"props":1255,"children":1257},{"className":1256},[],[1258],{"type":45,"value":258},{"type":45,"value":1260},"; use ",{"type":39,"tag":209,"props":1262,"children":1263},{"href":376},[1264],{"type":45,"value":376},{"type":45,"value":1266}," for local file layout and metric meanings.",{"type":39,"tag":1268,"props":1269,"children":1270},"style",{},[1271],{"type":45,"value":1272},"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":1274,"total":1395},[1275,1293,1309,1321,1341,1363,1383],{"slug":1276,"name":1276,"fn":1277,"description":1278,"org":1279,"tags":1280,"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},[1281,1284,1287,1290],{"name":1282,"slug":1283,"type":15},"Accessibility","accessibility",{"name":1285,"slug":1286,"type":15},"Charts","charts",{"name":1288,"slug":1289,"type":15},"Data Visualization","data-visualization",{"name":1291,"slug":1292,"type":15},"Design","design",{"slug":1294,"name":1294,"fn":1295,"description":1296,"org":1297,"tags":1298,"stars":22,"repoUrl":23,"updatedAt":1308},"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},[1299,1302,1305],{"name":1300,"slug":1301,"type":15},"Agents","agents",{"name":1303,"slug":1304,"type":15},"Browser Automation","browser-automation",{"name":1306,"slug":1307,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1310,"name":1310,"fn":1311,"description":1312,"org":1313,"tags":1314,"stars":22,"repoUrl":23,"updatedAt":1320},"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},[1315,1316,1319],{"name":1303,"slug":1304,"type":15},{"name":1317,"slug":1318,"type":15},"Local Development","local-development",{"name":1306,"slug":1307,"type":15},"2026-04-06T18:41:17.526867",{"slug":1322,"name":1322,"fn":1323,"description":1324,"org":1325,"tags":1326,"stars":22,"repoUrl":23,"updatedAt":1340},"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},[1327,1328,1331,1334,1337],{"name":1300,"slug":1301,"type":15},{"name":1329,"slug":1330,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1332,"slug":1333,"type":15},"SDK","sdk",{"name":1335,"slug":1336,"type":15},"Serverless","serverless",{"name":1338,"slug":1339,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1342,"name":1342,"fn":1343,"description":1344,"org":1345,"tags":1346,"stars":22,"repoUrl":23,"updatedAt":1362},"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},[1347,1350,1353,1356,1359],{"name":1348,"slug":1349,"type":15},"Frontend","frontend",{"name":1351,"slug":1352,"type":15},"React","react",{"name":1354,"slug":1355,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1357,"slug":1358,"type":15},"UI Components","ui-components",{"name":1360,"slug":1361,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1364,"name":1364,"fn":1365,"description":1366,"org":1367,"tags":1368,"stars":22,"repoUrl":23,"updatedAt":1382},"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},[1369,1372,1375,1378,1381],{"name":1370,"slug":1371,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1373,"slug":1374,"type":15},"Cost Optimization","cost-optimization",{"name":1376,"slug":1377,"type":15},"LLM","llm",{"name":1379,"slug":1380,"type":15},"Performance","performance",{"name":1360,"slug":1361,"type":15},"2026-04-06T18:40:44.377464",{"slug":1384,"name":1384,"fn":1385,"description":1386,"org":1387,"tags":1388,"stars":22,"repoUrl":23,"updatedAt":1394},"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},[1389,1390,1393],{"name":1373,"slug":1374,"type":15},{"name":1391,"slug":1392,"type":15},"Database","database",{"name":1376,"slug":1377,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1397,"total":1594},[1398,1419,1442,1459,1475,1492,1511,1523,1537,1551,1563,1578],{"slug":1399,"name":1399,"fn":1400,"description":1401,"org":1402,"tags":1403,"stars":1416,"repoUrl":1417,"updatedAt":1418},"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},[1404,1407,1410,1413],{"name":1405,"slug":1406,"type":15},"Documents","documents",{"name":1408,"slug":1409,"type":15},"Healthcare","healthcare",{"name":1411,"slug":1412,"type":15},"Insurance","insurance",{"name":1414,"slug":1415,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1420,"name":1420,"fn":1421,"description":1422,"org":1423,"tags":1424,"stars":1439,"repoUrl":1440,"updatedAt":1441},"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},[1425,1428,1430,1433,1436],{"name":1426,"slug":1427,"type":15},".NET","dotnet",{"name":1429,"slug":1420,"type":15},"ASP.NET Core",{"name":1431,"slug":1432,"type":15},"Blazor","blazor",{"name":1434,"slug":1435,"type":15},"C#","csharp",{"name":1437,"slug":1438,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1443,"name":1443,"fn":1444,"description":1445,"org":1446,"tags":1447,"stars":1439,"repoUrl":1440,"updatedAt":1458},"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},[1448,1451,1454,1457],{"name":1449,"slug":1450,"type":15},"Apps SDK","apps-sdk",{"name":1452,"slug":1453,"type":15},"ChatGPT","chatgpt",{"name":1455,"slug":1456,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1460,"name":1460,"fn":1461,"description":1462,"org":1463,"tags":1464,"stars":1439,"repoUrl":1440,"updatedAt":1474},"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},[1465,1468,1471],{"name":1466,"slug":1467,"type":15},"API Development","api-development",{"name":1469,"slug":1470,"type":15},"CLI","cli",{"name":1472,"slug":1473,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1476,"name":1476,"fn":1477,"description":1478,"org":1479,"tags":1480,"stars":1439,"repoUrl":1440,"updatedAt":1491},"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},[1481,1484,1487,1488],{"name":1482,"slug":1483,"type":15},"Cloudflare","cloudflare",{"name":1485,"slug":1486,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1329,"slug":1330,"type":15},{"name":1489,"slug":1490,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1493,"name":1493,"fn":1494,"description":1495,"org":1496,"tags":1497,"stars":1439,"repoUrl":1440,"updatedAt":1510},"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},[1498,1501,1504,1507],{"name":1499,"slug":1500,"type":15},"Productivity","productivity",{"name":1502,"slug":1503,"type":15},"Project Management","project-management",{"name":1505,"slug":1506,"type":15},"Strategy","strategy",{"name":1508,"slug":1509,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1512,"name":1512,"fn":1513,"description":1514,"org":1515,"tags":1516,"stars":1439,"repoUrl":1440,"updatedAt":1522},"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},[1517,1518,1520,1521],{"name":1291,"slug":1292,"type":15},{"name":1519,"slug":1512,"type":15},"Figma",{"name":1348,"slug":1349,"type":15},{"name":1455,"slug":1456,"type":15},"2026-04-12T05:06:47.939943",{"slug":1524,"name":1524,"fn":1525,"description":1526,"org":1527,"tags":1528,"stars":1439,"repoUrl":1440,"updatedAt":1536},"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},[1529,1530,1533,1534,1535],{"name":1291,"slug":1292,"type":15},{"name":1531,"slug":1532,"type":15},"Design System","design-system",{"name":1519,"slug":1512,"type":15},{"name":1348,"slug":1349,"type":15},{"name":1357,"slug":1358,"type":15},"2026-05-10T05:59:52.971881",{"slug":1538,"name":1538,"fn":1539,"description":1540,"org":1541,"tags":1542,"stars":1439,"repoUrl":1440,"updatedAt":1550},"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},[1543,1544,1545,1548,1549],{"name":1291,"slug":1292,"type":15},{"name":1531,"slug":1532,"type":15},{"name":1546,"slug":1547,"type":15},"Documentation","documentation",{"name":1519,"slug":1512,"type":15},{"name":1348,"slug":1349,"type":15},"2026-05-16T06:07:47.821474",{"slug":1552,"name":1552,"fn":1553,"description":1554,"org":1555,"tags":1556,"stars":1439,"repoUrl":1440,"updatedAt":1562},"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},[1557,1558,1559,1560,1561],{"name":1291,"slug":1292,"type":15},{"name":1519,"slug":1512,"type":15},{"name":1348,"slug":1349,"type":15},{"name":1357,"slug":1358,"type":15},{"name":1437,"slug":1438,"type":15},"2026-05-16T06:07:40.583615",{"slug":1564,"name":1564,"fn":1565,"description":1566,"org":1567,"tags":1568,"stars":1439,"repoUrl":1440,"updatedAt":1577},"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},[1569,1572,1573,1576],{"name":1570,"slug":1571,"type":15},"Animation","animation",{"name":1472,"slug":1473,"type":15},{"name":1574,"slug":1575,"type":15},"Creative","creative",{"name":1291,"slug":1292,"type":15},"2026-05-02T05:31:48.48485",{"slug":1579,"name":1579,"fn":1580,"description":1581,"org":1582,"tags":1583,"stars":1439,"repoUrl":1440,"updatedAt":1593},"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},[1584,1585,1586,1589,1592],{"name":1574,"slug":1575,"type":15},{"name":1291,"slug":1292,"type":15},{"name":1587,"slug":1588,"type":15},"Image Generation","image-generation",{"name":1590,"slug":1591,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]