[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-cli-creator":3,"mdc--384wwk-key":33,"related-repo-openai-cli-creator":1314,"related-org-openai-cli-creator":1431},{"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},"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},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19],{"name":13,"slug":14,"type":15},"CLI","cli","tag",{"name":17,"slug":18,"type":15},"Codex","codex",{"name":20,"slug":21,"type":15},"API Development","api-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:04.132762",null,1614,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Skills Catalog for Codex","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002F.curated\u002Fcli-creator","---\nname: cli-creator\ndescription: 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.\n---\n\n# CLI Creator\n\nCreate a real CLI that future Codex threads can run by command name from any working directory.\n\nThis skill is for durable tools, not one-off scripts. If a short script in the current repo solves the task, write the script there instead.\n\n## Start\n\nName the target tool, its source, and the first real jobs it should do:\n\n- Source: API docs, OpenAPI JSON, SDK docs, curl examples, browser app, existing internal script, article, or working shell history.\n- Jobs: literal reads\u002Fwrites such as `list drafts`, `download failed job logs`, `search messages`, `upload media`, `read queue schedule`.\n- Install name: a short binary name such as `ci-logs`, `slack-cli`, `sentry-cli`, or `buildkite-logs`.\n\nPrefer a new folder under `~\u002Fcode\u002Fclis\u002F\u003Ctool-name>` when the user wants a personal tool and has not named a repo.\n\nBefore scaffolding, check whether the proposed command already exists:\n\n```bash\ncommand -v \u003Ctool-name> || true\n```\n\nIf it exists, choose a clearer install name or ask the user.\n\n## Choose the Runtime\n\nBefore choosing, inspect the user's machine and source material:\n\n```bash\ncommand -v cargo rustc node pnpm npm python3 uv || true\n```\n\nThen choose the least surprising toolchain:\n\n- Default to **Rust** for a durable CLI Codex should run from any repo: one fast binary, strong argument parsing, good JSON handling, easy copy\u002Finstall into `~\u002F.local\u002Fbin`.\n- Use **TypeScript\u002FNode** when the official SDK, auth helper, browser automation library, or existing repo tooling is the reason the CLI can be better.\n- Use **Python** when the source is data science, local file transforms, notebooks, SQLite\u002FCSV\u002FJSON analysis, or Python-heavy admin tooling that can still be installed as a durable command.\n\nDo not pick a language that adds setup friction unless it materially improves the CLI. If the best language is not installed, either install the missing toolchain with the user's approval or choose the next-best installed option.\n\nState the choice in one sentence before scaffolding, including the reason and the installed toolchain you found.\n\n## Command Contract\n\nSketch the command surface in chat before coding. Include the binary name, discovery commands, resolve or ID-lookup commands, read commands, write commands, raw escape hatch, auth\u002Fconfig choice, and PATH\u002Finstall command.\n\nWhen designing the command surface, read [references\u002Fagent-cli-patterns.md](references\u002Fagent-cli-patterns.md) for the expected composable CLI shape.\n\nBuild toward this surface:\n\n- `tool-name --help` shows every major capability.\n- `tool-name --json doctor` verifies config, auth, version, endpoint reachability, and missing setup.\n- `tool-name init ...` stores local config when env-only auth is painful.\n- Discovery commands find accounts, projects, workspaces, teams, queues, channels, repos, dashboards, or other top-level containers.\n- Resolve commands turn names, URLs, slugs, permalinks, customer input, or build links into stable IDs so future commands do not repeat broad searches.\n- Read commands fetch exact objects and list\u002Fsearch collections. Paginated lists support a bounded `--limit`, cursor, offset, or clearly documented default.\n- Write commands do one named action each: create, update, delete, upload, schedule, retry, comment, draft. They accept the narrowest stable resource ID, support `--dry-run`, `draft`, or `preview` first when the service allows it, and do not hide writes inside broad commands such as `fix`, `debug`, or `auto`.\n- `--json` returns stable machine-readable output.\n- A raw escape hatch exists: `request`, `tool-call`, `api`, or the nearest honest name.\n\nDo not expose only a generic `request` command. Give Codex high-level verbs for the repeated jobs.\n\nDocument the JSON policy in the CLI README or equivalent: API pass-through versus CLI envelope, success shape, error shape, and one example for each command family. Under `--json`, errors must be machine-readable and must not contain credentials.\n\n## Auth and Config\n\nSupport the boring paths first, in this precedence order:\n\n1. Environment variable using the service's standard name, such as `GITHUB_TOKEN`.\n2. User config under `~\u002F.\u003Ctool-name>\u002Fconfig.toml` or another simple documented path.\n3. `--api-key` or a tool-specific token flag only for explicit one-off tests. Prefer env\u002Fconfig for normal use because flags can leak into shell history or process listings.\n\nNever print full tokens. `doctor --json` should say whether a token is available, the auth source category (`flag`, `env`, `config`, provider default, or missing), and what setup step is missing.\n\nIf the CLI can run without network or auth, make that explicit in `doctor --json`: report fixture\u002Foffline mode, whether fixture data was found, and whether auth is not required for that mode.\n\nFor internal web apps sourced from DevTools curls, create sanitized endpoint notes before implementing: resource name, method\u002Fpath, required headers, auth mechanism, CSRF behavior, request body, response ID fields, pagination, errors, and one redacted sample response. Never commit copied cookies, bearer tokens, customer secrets, or full production payloads.\n\nUse screenshots to infer workflow, UI vocabulary, fields, and confirmation points. Do not treat screenshots as API evidence unless they are paired with a network request, export, docs page, or fixture.\n\n## Build Workflow\n\n1. Read the source just enough to inventory resources, auth, pagination, IDs, media\u002Ffile flows, rate limits, and dangerous write actions. If the docs expose OpenAPI, download or inspect it before naming commands.\n2. Sketch the command list in chat. Keep names short and shell-friendly.\n3. Scaffold the CLI with a README or equivalent repo-facing instructions.\n4. Implement `doctor`, discovery, resolve, read commands, one narrow draft or dry-run write path if requested, and the raw escape hatch.\n5. Install the CLI on PATH so `tool-name ...` works outside the source folder.\n6. Smoke test from another repo or `\u002Ftmp`, not only with `cargo run` or package-manager wrappers. Run `command -v \u003Ctool-name>`, `\u003Ctool-name> --help`, and `\u003Ctool-name> --json doctor`.\n7. Run format, typecheck\u002Fbuild, unit tests for request builders, pagination\u002Frequest-body builders, no-auth `doctor`, help output, and at least one fixture, dry-run, or live read-only API call.\n\nIf a live write is needed for confidence, ask first and make it reversible or draft-only.\n\nWhen the source is an existing script or shell history, split the working invocation into real phases: setup, discovery, download\u002Fexport, transform\u002Findex, draft, upload, poll, live write. Preserve the flags, paths, and environment variables the user already relies on, then wrap the repeatable phases with stable IDs, bounded JSON, and file outputs.\n\nFor raw escape hatches, support read-only calls first. Do not run raw non-GET\u002FHEAD requests against a live service unless the user asked for that specific write.\n\nFor media, artifact, or presigned upload flows, test each phase separately: create upload, transfer bytes, poll\u002Fread processing status, then attach or reference the resulting ID.\n\nFor fixture-backed prototypes, keep fixtures in a predictable project path and make the CLI locate them after installation. Smoke-test from `\u002Ftmp` to catch binaries that only work inside the source folder.\n\nFor log-oriented CLIs, keep deterministic snippet extraction separate from model interpretation. Prefer a command that emits filenames, line numbers or byte ranges, matched rules, and short excerpts.\n\n## Rust Defaults\n\nWhen building in Rust, use established crates instead of custom parsers:\n\n- `clap` for commands and help\n- `reqwest` for HTTP\n- `serde` \u002F `serde_json` for payloads\n- `toml` for small config files\n- `anyhow` for CLI-shaped error context\n\nAdd a `Makefile` target such as `make install-local` that builds release and installs the binary into `~\u002F.local\u002Fbin`.\n\n## TypeScript\u002FNode Defaults\n\nWhen building in TypeScript\u002FNode, keep the CLI installable as a normal command:\n\n- `commander` or `cac` for commands and help\n- native `fetch`, the official SDK, or the user's existing HTTP helper for API calls\n- `zod` only where external payload validation prevents real breakage\n- `package.json` `bin` entry for the installed command\n- `tsup`, `tsx`, or `tsc` using the repo's existing convention\n\nAdd an install path such as `pnpm install`, `pnpm build`, and `pnpm link --global`, or a `Makefile` target that installs a small wrapper into `~\u002F.local\u002Fbin`.\n\n## Python Defaults\n\nWhen building in Python, prefer boring standard-library pieces unless the workflow needs more:\n\n- `argparse` for commands and help, or `typer` when subcommands would otherwise get messy\n- `urllib.request` \u002F `urllib.parse`, `requests`, or `httpx` for HTTP, matching what is already installed or already used nearby\n- `json`, `csv`, `sqlite3`, `pathlib`, and `subprocess` for local files, exports, databases, and existing scripts\n- `pyproject.toml` console script or a small executable wrapper for the installed command\n- `uv` or a virtualenv only when dependencies are actually needed\n\nAdd a `Makefile` target such as `make install-local` that installs the command on PATH and document whether it depends on `uv`, a virtualenv, or only system Python.\n\n## Companion Skill\n\nAfter the CLI works, create or update a small skill for it. Use `$skill-creator` when it is available. Use `$CODEX_HOME\u002Fskills\u002F\u003Ctool-name>\u002FSKILL.md` for a personal companion skill unless the user names a repo-local `.codex\u002Fskills\u002F...` path or another skill repo.\n\nWrite the companion skill in the order a future Codex thread should use the CLI, not as a tour of every feature. Explain:\n\n- How to verify the installed command exists.\n- Which command to run first.\n- How auth is configured.\n- Which discovery command finds the common ID.\n- The safe read path.\n- The intended draft\u002Fwrite path.\n- The raw escape hatch.\n- What not to do without explicit user approval.\n- Three copy-pasteable command examples.\n\nKeep API reference details in the CLI docs or a skill reference file. Keep the skill focused on ordering, safety, and examples future Codex threads should actually run.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,46,52,57,64,69,156,169,174,235,240,246,251,312,317,363,368,373,379,384,397,402,547,559,571,577,582,622,657,669,674,679,685,784,789,794,799,804,816,821,827,832,898,925,931,936,1025,1065,1071,1076,1191,1215,1221,1250,1255,1303,1308],{"type":39,"tag":40,"props":41,"children":42},"element","h1",{"id":4},[43],{"type":44,"value":45},"text","CLI Creator",{"type":39,"tag":47,"props":48,"children":49},"p",{},[50],{"type":44,"value":51},"Create a real CLI that future Codex threads can run by command name from any working directory.",{"type":39,"tag":47,"props":53,"children":54},{},[55],{"type":44,"value":56},"This skill is for durable tools, not one-off scripts. If a short script in the current repo solves the task, write the script there instead.",{"type":39,"tag":58,"props":59,"children":61},"h2",{"id":60},"start",[62],{"type":44,"value":63},"Start",{"type":39,"tag":47,"props":65,"children":66},{},[67],{"type":44,"value":68},"Name the target tool, its source, and the first real jobs it should do:",{"type":39,"tag":70,"props":71,"children":72},"ul",{},[73,79,122],{"type":39,"tag":74,"props":75,"children":76},"li",{},[77],{"type":44,"value":78},"Source: API docs, OpenAPI JSON, SDK docs, curl examples, browser app, existing internal script, article, or working shell history.",{"type":39,"tag":74,"props":80,"children":81},{},[82,84,91,93,99,100,106,107,113,114,120],{"type":44,"value":83},"Jobs: literal reads\u002Fwrites such as ",{"type":39,"tag":85,"props":86,"children":88},"code",{"className":87},[],[89],{"type":44,"value":90},"list drafts",{"type":44,"value":92},", ",{"type":39,"tag":85,"props":94,"children":96},{"className":95},[],[97],{"type":44,"value":98},"download failed job logs",{"type":44,"value":92},{"type":39,"tag":85,"props":101,"children":103},{"className":102},[],[104],{"type":44,"value":105},"search messages",{"type":44,"value":92},{"type":39,"tag":85,"props":108,"children":110},{"className":109},[],[111],{"type":44,"value":112},"upload media",{"type":44,"value":92},{"type":39,"tag":85,"props":115,"children":117},{"className":116},[],[118],{"type":44,"value":119},"read queue schedule",{"type":44,"value":121},".",{"type":39,"tag":74,"props":123,"children":124},{},[125,127,133,134,140,141,147,149,155],{"type":44,"value":126},"Install name: a short binary name such as ",{"type":39,"tag":85,"props":128,"children":130},{"className":129},[],[131],{"type":44,"value":132},"ci-logs",{"type":44,"value":92},{"type":39,"tag":85,"props":135,"children":137},{"className":136},[],[138],{"type":44,"value":139},"slack-cli",{"type":44,"value":92},{"type":39,"tag":85,"props":142,"children":144},{"className":143},[],[145],{"type":44,"value":146},"sentry-cli",{"type":44,"value":148},", or ",{"type":39,"tag":85,"props":150,"children":152},{"className":151},[],[153],{"type":44,"value":154},"buildkite-logs",{"type":44,"value":121},{"type":39,"tag":47,"props":157,"children":158},{},[159,161,167],{"type":44,"value":160},"Prefer a new folder under ",{"type":39,"tag":85,"props":162,"children":164},{"className":163},[],[165],{"type":44,"value":166},"~\u002Fcode\u002Fclis\u002F\u003Ctool-name>",{"type":44,"value":168}," when the user wants a personal tool and has not named a repo.",{"type":39,"tag":47,"props":170,"children":171},{},[172],{"type":44,"value":173},"Before scaffolding, check whether the proposed command already exists:",{"type":39,"tag":175,"props":176,"children":181},"pre",{"className":177,"code":178,"language":179,"meta":180,"style":180},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","command -v \u003Ctool-name> || true\n","bash","",[182],{"type":39,"tag":85,"props":183,"children":184},{"__ignoreMap":180},[185],{"type":39,"tag":186,"props":187,"children":190},"span",{"class":188,"line":189},"line",1,[191,197,203,209,214,220,225,230],{"type":39,"tag":186,"props":192,"children":194},{"style":193},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[195],{"type":44,"value":196},"command",{"type":39,"tag":186,"props":198,"children":200},{"style":199},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[201],{"type":44,"value":202}," -v",{"type":39,"tag":186,"props":204,"children":206},{"style":205},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[207],{"type":44,"value":208}," \u003C",{"type":39,"tag":186,"props":210,"children":211},{"style":199},[212],{"type":44,"value":213},"tool-nam",{"type":39,"tag":186,"props":215,"children":217},{"style":216},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[218],{"type":44,"value":219},"e",{"type":39,"tag":186,"props":221,"children":222},{"style":205},[223],{"type":44,"value":224},">",{"type":39,"tag":186,"props":226,"children":227},{"style":205},[228],{"type":44,"value":229}," ||",{"type":39,"tag":186,"props":231,"children":232},{"style":193},[233],{"type":44,"value":234}," true\n",{"type":39,"tag":47,"props":236,"children":237},{},[238],{"type":44,"value":239},"If it exists, choose a clearer install name or ask the user.",{"type":39,"tag":58,"props":241,"children":243},{"id":242},"choose-the-runtime",[244],{"type":44,"value":245},"Choose the Runtime",{"type":39,"tag":47,"props":247,"children":248},{},[249],{"type":44,"value":250},"Before choosing, inspect the user's machine and source material:",{"type":39,"tag":175,"props":252,"children":254},{"className":177,"code":253,"language":179,"meta":180,"style":180},"command -v cargo rustc node pnpm npm python3 uv || true\n",[255],{"type":39,"tag":85,"props":256,"children":257},{"__ignoreMap":180},[258],{"type":39,"tag":186,"props":259,"children":260},{"class":188,"line":189},[261,265,269,274,279,284,289,294,299,304,308],{"type":39,"tag":186,"props":262,"children":263},{"style":193},[264],{"type":44,"value":196},{"type":39,"tag":186,"props":266,"children":267},{"style":199},[268],{"type":44,"value":202},{"type":39,"tag":186,"props":270,"children":271},{"style":199},[272],{"type":44,"value":273}," cargo",{"type":39,"tag":186,"props":275,"children":276},{"style":199},[277],{"type":44,"value":278}," rustc",{"type":39,"tag":186,"props":280,"children":281},{"style":199},[282],{"type":44,"value":283}," node",{"type":39,"tag":186,"props":285,"children":286},{"style":199},[287],{"type":44,"value":288}," pnpm",{"type":39,"tag":186,"props":290,"children":291},{"style":199},[292],{"type":44,"value":293}," npm",{"type":39,"tag":186,"props":295,"children":296},{"style":199},[297],{"type":44,"value":298}," python3",{"type":39,"tag":186,"props":300,"children":301},{"style":199},[302],{"type":44,"value":303}," uv",{"type":39,"tag":186,"props":305,"children":306},{"style":205},[307],{"type":44,"value":229},{"type":39,"tag":186,"props":309,"children":310},{"style":193},[311],{"type":44,"value":234},{"type":39,"tag":47,"props":313,"children":314},{},[315],{"type":44,"value":316},"Then choose the least surprising toolchain:",{"type":39,"tag":70,"props":318,"children":319},{},[320,340,352],{"type":39,"tag":74,"props":321,"children":322},{},[323,325,331,333,339],{"type":44,"value":324},"Default to ",{"type":39,"tag":326,"props":327,"children":328},"strong",{},[329],{"type":44,"value":330},"Rust",{"type":44,"value":332}," for a durable CLI Codex should run from any repo: one fast binary, strong argument parsing, good JSON handling, easy copy\u002Finstall into ",{"type":39,"tag":85,"props":334,"children":336},{"className":335},[],[337],{"type":44,"value":338},"~\u002F.local\u002Fbin",{"type":44,"value":121},{"type":39,"tag":74,"props":341,"children":342},{},[343,345,350],{"type":44,"value":344},"Use ",{"type":39,"tag":326,"props":346,"children":347},{},[348],{"type":44,"value":349},"TypeScript\u002FNode",{"type":44,"value":351}," when the official SDK, auth helper, browser automation library, or existing repo tooling is the reason the CLI can be better.",{"type":39,"tag":74,"props":353,"children":354},{},[355,356,361],{"type":44,"value":344},{"type":39,"tag":326,"props":357,"children":358},{},[359],{"type":44,"value":360},"Python",{"type":44,"value":362}," when the source is data science, local file transforms, notebooks, SQLite\u002FCSV\u002FJSON analysis, or Python-heavy admin tooling that can still be installed as a durable command.",{"type":39,"tag":47,"props":364,"children":365},{},[366],{"type":44,"value":367},"Do not pick a language that adds setup friction unless it materially improves the CLI. If the best language is not installed, either install the missing toolchain with the user's approval or choose the next-best installed option.",{"type":39,"tag":47,"props":369,"children":370},{},[371],{"type":44,"value":372},"State the choice in one sentence before scaffolding, including the reason and the installed toolchain you found.",{"type":39,"tag":58,"props":374,"children":376},{"id":375},"command-contract",[377],{"type":44,"value":378},"Command Contract",{"type":39,"tag":47,"props":380,"children":381},{},[382],{"type":44,"value":383},"Sketch the command surface in chat before coding. Include the binary name, discovery commands, resolve or ID-lookup commands, read commands, write commands, raw escape hatch, auth\u002Fconfig choice, and PATH\u002Finstall command.",{"type":39,"tag":47,"props":385,"children":386},{},[387,389,395],{"type":44,"value":388},"When designing the command surface, read ",{"type":39,"tag":390,"props":391,"children":393},"a",{"href":392},"references\u002Fagent-cli-patterns.md",[394],{"type":44,"value":392},{"type":44,"value":396}," for the expected composable CLI shape.",{"type":39,"tag":47,"props":398,"children":399},{},[400],{"type":44,"value":401},"Build toward this surface:",{"type":39,"tag":70,"props":403,"children":404},{},[405,416,427,438,443,448,461,509,520],{"type":39,"tag":74,"props":406,"children":407},{},[408,414],{"type":39,"tag":85,"props":409,"children":411},{"className":410},[],[412],{"type":44,"value":413},"tool-name --help",{"type":44,"value":415}," shows every major capability.",{"type":39,"tag":74,"props":417,"children":418},{},[419,425],{"type":39,"tag":85,"props":420,"children":422},{"className":421},[],[423],{"type":44,"value":424},"tool-name --json doctor",{"type":44,"value":426}," verifies config, auth, version, endpoint reachability, and missing setup.",{"type":39,"tag":74,"props":428,"children":429},{},[430,436],{"type":39,"tag":85,"props":431,"children":433},{"className":432},[],[434],{"type":44,"value":435},"tool-name init ...",{"type":44,"value":437}," stores local config when env-only auth is painful.",{"type":39,"tag":74,"props":439,"children":440},{},[441],{"type":44,"value":442},"Discovery commands find accounts, projects, workspaces, teams, queues, channels, repos, dashboards, or other top-level containers.",{"type":39,"tag":74,"props":444,"children":445},{},[446],{"type":44,"value":447},"Resolve commands turn names, URLs, slugs, permalinks, customer input, or build links into stable IDs so future commands do not repeat broad searches.",{"type":39,"tag":74,"props":449,"children":450},{},[451,453,459],{"type":44,"value":452},"Read commands fetch exact objects and list\u002Fsearch collections. Paginated lists support a bounded ",{"type":39,"tag":85,"props":454,"children":456},{"className":455},[],[457],{"type":44,"value":458},"--limit",{"type":44,"value":460},", cursor, offset, or clearly documented default.",{"type":39,"tag":74,"props":462,"children":463},{},[464,466,472,473,479,480,486,488,494,495,501,502,508],{"type":44,"value":465},"Write commands do one named action each: create, update, delete, upload, schedule, retry, comment, draft. They accept the narrowest stable resource ID, support ",{"type":39,"tag":85,"props":467,"children":469},{"className":468},[],[470],{"type":44,"value":471},"--dry-run",{"type":44,"value":92},{"type":39,"tag":85,"props":474,"children":476},{"className":475},[],[477],{"type":44,"value":478},"draft",{"type":44,"value":148},{"type":39,"tag":85,"props":481,"children":483},{"className":482},[],[484],{"type":44,"value":485},"preview",{"type":44,"value":487}," first when the service allows it, and do not hide writes inside broad commands such as ",{"type":39,"tag":85,"props":489,"children":491},{"className":490},[],[492],{"type":44,"value":493},"fix",{"type":44,"value":92},{"type":39,"tag":85,"props":496,"children":498},{"className":497},[],[499],{"type":44,"value":500},"debug",{"type":44,"value":148},{"type":39,"tag":85,"props":503,"children":505},{"className":504},[],[506],{"type":44,"value":507},"auto",{"type":44,"value":121},{"type":39,"tag":74,"props":510,"children":511},{},[512,518],{"type":39,"tag":85,"props":513,"children":515},{"className":514},[],[516],{"type":44,"value":517},"--json",{"type":44,"value":519}," returns stable machine-readable output.",{"type":39,"tag":74,"props":521,"children":522},{},[523,525,531,532,538,539,545],{"type":44,"value":524},"A raw escape hatch exists: ",{"type":39,"tag":85,"props":526,"children":528},{"className":527},[],[529],{"type":44,"value":530},"request",{"type":44,"value":92},{"type":39,"tag":85,"props":533,"children":535},{"className":534},[],[536],{"type":44,"value":537},"tool-call",{"type":44,"value":92},{"type":39,"tag":85,"props":540,"children":542},{"className":541},[],[543],{"type":44,"value":544},"api",{"type":44,"value":546},", or the nearest honest name.",{"type":39,"tag":47,"props":548,"children":549},{},[550,552,557],{"type":44,"value":551},"Do not expose only a generic ",{"type":39,"tag":85,"props":553,"children":555},{"className":554},[],[556],{"type":44,"value":530},{"type":44,"value":558}," command. Give Codex high-level verbs for the repeated jobs.",{"type":39,"tag":47,"props":560,"children":561},{},[562,564,569],{"type":44,"value":563},"Document the JSON policy in the CLI README or equivalent: API pass-through versus CLI envelope, success shape, error shape, and one example for each command family. Under ",{"type":39,"tag":85,"props":565,"children":567},{"className":566},[],[568],{"type":44,"value":517},{"type":44,"value":570},", errors must be machine-readable and must not contain credentials.",{"type":39,"tag":58,"props":572,"children":574},{"id":573},"auth-and-config",[575],{"type":44,"value":576},"Auth and Config",{"type":39,"tag":47,"props":578,"children":579},{},[580],{"type":44,"value":581},"Support the boring paths first, in this precedence order:",{"type":39,"tag":583,"props":584,"children":585},"ol",{},[586,598,611],{"type":39,"tag":74,"props":587,"children":588},{},[589,591,597],{"type":44,"value":590},"Environment variable using the service's standard name, such as ",{"type":39,"tag":85,"props":592,"children":594},{"className":593},[],[595],{"type":44,"value":596},"GITHUB_TOKEN",{"type":44,"value":121},{"type":39,"tag":74,"props":599,"children":600},{},[601,603,609],{"type":44,"value":602},"User config under ",{"type":39,"tag":85,"props":604,"children":606},{"className":605},[],[607],{"type":44,"value":608},"~\u002F.\u003Ctool-name>\u002Fconfig.toml",{"type":44,"value":610}," or another simple documented path.",{"type":39,"tag":74,"props":612,"children":613},{},[614,620],{"type":39,"tag":85,"props":615,"children":617},{"className":616},[],[618],{"type":44,"value":619},"--api-key",{"type":44,"value":621}," or a tool-specific token flag only for explicit one-off tests. Prefer env\u002Fconfig for normal use because flags can leak into shell history or process listings.",{"type":39,"tag":47,"props":623,"children":624},{},[625,627,633,635,641,642,648,649,655],{"type":44,"value":626},"Never print full tokens. ",{"type":39,"tag":85,"props":628,"children":630},{"className":629},[],[631],{"type":44,"value":632},"doctor --json",{"type":44,"value":634}," should say whether a token is available, the auth source category (",{"type":39,"tag":85,"props":636,"children":638},{"className":637},[],[639],{"type":44,"value":640},"flag",{"type":44,"value":92},{"type":39,"tag":85,"props":643,"children":645},{"className":644},[],[646],{"type":44,"value":647},"env",{"type":44,"value":92},{"type":39,"tag":85,"props":650,"children":652},{"className":651},[],[653],{"type":44,"value":654},"config",{"type":44,"value":656},", provider default, or missing), and what setup step is missing.",{"type":39,"tag":47,"props":658,"children":659},{},[660,662,667],{"type":44,"value":661},"If the CLI can run without network or auth, make that explicit in ",{"type":39,"tag":85,"props":663,"children":665},{"className":664},[],[666],{"type":44,"value":632},{"type":44,"value":668},": report fixture\u002Foffline mode, whether fixture data was found, and whether auth is not required for that mode.",{"type":39,"tag":47,"props":670,"children":671},{},[672],{"type":44,"value":673},"For internal web apps sourced from DevTools curls, create sanitized endpoint notes before implementing: resource name, method\u002Fpath, required headers, auth mechanism, CSRF behavior, request body, response ID fields, pagination, errors, and one redacted sample response. Never commit copied cookies, bearer tokens, customer secrets, or full production payloads.",{"type":39,"tag":47,"props":675,"children":676},{},[677],{"type":44,"value":678},"Use screenshots to infer workflow, UI vocabulary, fields, and confirmation points. Do not treat screenshots as API evidence unless they are paired with a network request, export, docs page, or fixture.",{"type":39,"tag":58,"props":680,"children":682},{"id":681},"build-workflow",[683],{"type":44,"value":684},"Build Workflow",{"type":39,"tag":583,"props":686,"children":687},{},[688,693,698,703,716,729,772],{"type":39,"tag":74,"props":689,"children":690},{},[691],{"type":44,"value":692},"Read the source just enough to inventory resources, auth, pagination, IDs, media\u002Ffile flows, rate limits, and dangerous write actions. If the docs expose OpenAPI, download or inspect it before naming commands.",{"type":39,"tag":74,"props":694,"children":695},{},[696],{"type":44,"value":697},"Sketch the command list in chat. Keep names short and shell-friendly.",{"type":39,"tag":74,"props":699,"children":700},{},[701],{"type":44,"value":702},"Scaffold the CLI with a README or equivalent repo-facing instructions.",{"type":39,"tag":74,"props":704,"children":705},{},[706,708,714],{"type":44,"value":707},"Implement ",{"type":39,"tag":85,"props":709,"children":711},{"className":710},[],[712],{"type":44,"value":713},"doctor",{"type":44,"value":715},", discovery, resolve, read commands, one narrow draft or dry-run write path if requested, and the raw escape hatch.",{"type":39,"tag":74,"props":717,"children":718},{},[719,721,727],{"type":44,"value":720},"Install the CLI on PATH so ",{"type":39,"tag":85,"props":722,"children":724},{"className":723},[],[725],{"type":44,"value":726},"tool-name ...",{"type":44,"value":728}," works outside the source folder.",{"type":39,"tag":74,"props":730,"children":731},{},[732,734,740,742,748,750,756,757,763,765,771],{"type":44,"value":733},"Smoke test from another repo or ",{"type":39,"tag":85,"props":735,"children":737},{"className":736},[],[738],{"type":44,"value":739},"\u002Ftmp",{"type":44,"value":741},", not only with ",{"type":39,"tag":85,"props":743,"children":745},{"className":744},[],[746],{"type":44,"value":747},"cargo run",{"type":44,"value":749}," or package-manager wrappers. Run ",{"type":39,"tag":85,"props":751,"children":753},{"className":752},[],[754],{"type":44,"value":755},"command -v \u003Ctool-name>",{"type":44,"value":92},{"type":39,"tag":85,"props":758,"children":760},{"className":759},[],[761],{"type":44,"value":762},"\u003Ctool-name> --help",{"type":44,"value":764},", and ",{"type":39,"tag":85,"props":766,"children":768},{"className":767},[],[769],{"type":44,"value":770},"\u003Ctool-name> --json doctor",{"type":44,"value":121},{"type":39,"tag":74,"props":773,"children":774},{},[775,777,782],{"type":44,"value":776},"Run format, typecheck\u002Fbuild, unit tests for request builders, pagination\u002Frequest-body builders, no-auth ",{"type":39,"tag":85,"props":778,"children":780},{"className":779},[],[781],{"type":44,"value":713},{"type":44,"value":783},", help output, and at least one fixture, dry-run, or live read-only API call.",{"type":39,"tag":47,"props":785,"children":786},{},[787],{"type":44,"value":788},"If a live write is needed for confidence, ask first and make it reversible or draft-only.",{"type":39,"tag":47,"props":790,"children":791},{},[792],{"type":44,"value":793},"When the source is an existing script or shell history, split the working invocation into real phases: setup, discovery, download\u002Fexport, transform\u002Findex, draft, upload, poll, live write. Preserve the flags, paths, and environment variables the user already relies on, then wrap the repeatable phases with stable IDs, bounded JSON, and file outputs.",{"type":39,"tag":47,"props":795,"children":796},{},[797],{"type":44,"value":798},"For raw escape hatches, support read-only calls first. Do not run raw non-GET\u002FHEAD requests against a live service unless the user asked for that specific write.",{"type":39,"tag":47,"props":800,"children":801},{},[802],{"type":44,"value":803},"For media, artifact, or presigned upload flows, test each phase separately: create upload, transfer bytes, poll\u002Fread processing status, then attach or reference the resulting ID.",{"type":39,"tag":47,"props":805,"children":806},{},[807,809,814],{"type":44,"value":808},"For fixture-backed prototypes, keep fixtures in a predictable project path and make the CLI locate them after installation. Smoke-test from ",{"type":39,"tag":85,"props":810,"children":812},{"className":811},[],[813],{"type":44,"value":739},{"type":44,"value":815}," to catch binaries that only work inside the source folder.",{"type":39,"tag":47,"props":817,"children":818},{},[819],{"type":44,"value":820},"For log-oriented CLIs, keep deterministic snippet extraction separate from model interpretation. Prefer a command that emits filenames, line numbers or byte ranges, matched rules, and short excerpts.",{"type":39,"tag":58,"props":822,"children":824},{"id":823},"rust-defaults",[825],{"type":44,"value":826},"Rust Defaults",{"type":39,"tag":47,"props":828,"children":829},{},[830],{"type":44,"value":831},"When building in Rust, use established crates instead of custom parsers:",{"type":39,"tag":70,"props":833,"children":834},{},[835,846,857,876,887],{"type":39,"tag":74,"props":836,"children":837},{},[838,844],{"type":39,"tag":85,"props":839,"children":841},{"className":840},[],[842],{"type":44,"value":843},"clap",{"type":44,"value":845}," for commands and help",{"type":39,"tag":74,"props":847,"children":848},{},[849,855],{"type":39,"tag":85,"props":850,"children":852},{"className":851},[],[853],{"type":44,"value":854},"reqwest",{"type":44,"value":856}," for HTTP",{"type":39,"tag":74,"props":858,"children":859},{},[860,866,868,874],{"type":39,"tag":85,"props":861,"children":863},{"className":862},[],[864],{"type":44,"value":865},"serde",{"type":44,"value":867}," \u002F ",{"type":39,"tag":85,"props":869,"children":871},{"className":870},[],[872],{"type":44,"value":873},"serde_json",{"type":44,"value":875}," for payloads",{"type":39,"tag":74,"props":877,"children":878},{},[879,885],{"type":39,"tag":85,"props":880,"children":882},{"className":881},[],[883],{"type":44,"value":884},"toml",{"type":44,"value":886}," for small config files",{"type":39,"tag":74,"props":888,"children":889},{},[890,896],{"type":39,"tag":85,"props":891,"children":893},{"className":892},[],[894],{"type":44,"value":895},"anyhow",{"type":44,"value":897}," for CLI-shaped error context",{"type":39,"tag":47,"props":899,"children":900},{},[901,903,909,911,917,919,924],{"type":44,"value":902},"Add a ",{"type":39,"tag":85,"props":904,"children":906},{"className":905},[],[907],{"type":44,"value":908},"Makefile",{"type":44,"value":910}," target such as ",{"type":39,"tag":85,"props":912,"children":914},{"className":913},[],[915],{"type":44,"value":916},"make install-local",{"type":44,"value":918}," that builds release and installs the binary into ",{"type":39,"tag":85,"props":920,"children":922},{"className":921},[],[923],{"type":44,"value":338},{"type":44,"value":121},{"type":39,"tag":58,"props":926,"children":928},{"id":927},"typescriptnode-defaults",[929],{"type":44,"value":930},"TypeScript\u002FNode Defaults",{"type":39,"tag":47,"props":932,"children":933},{},[934],{"type":44,"value":935},"When building in TypeScript\u002FNode, keep the CLI installable as a normal command:",{"type":39,"tag":70,"props":937,"children":938},{},[939,957,970,981,1000],{"type":39,"tag":74,"props":940,"children":941},{},[942,948,950,956],{"type":39,"tag":85,"props":943,"children":945},{"className":944},[],[946],{"type":44,"value":947},"commander",{"type":44,"value":949}," or ",{"type":39,"tag":85,"props":951,"children":953},{"className":952},[],[954],{"type":44,"value":955},"cac",{"type":44,"value":845},{"type":39,"tag":74,"props":958,"children":959},{},[960,962,968],{"type":44,"value":961},"native ",{"type":39,"tag":85,"props":963,"children":965},{"className":964},[],[966],{"type":44,"value":967},"fetch",{"type":44,"value":969},", the official SDK, or the user's existing HTTP helper for API calls",{"type":39,"tag":74,"props":971,"children":972},{},[973,979],{"type":39,"tag":85,"props":974,"children":976},{"className":975},[],[977],{"type":44,"value":978},"zod",{"type":44,"value":980}," only where external payload validation prevents real breakage",{"type":39,"tag":74,"props":982,"children":983},{},[984,990,992,998],{"type":39,"tag":85,"props":985,"children":987},{"className":986},[],[988],{"type":44,"value":989},"package.json",{"type":44,"value":991}," ",{"type":39,"tag":85,"props":993,"children":995},{"className":994},[],[996],{"type":44,"value":997},"bin",{"type":44,"value":999}," entry for the installed command",{"type":39,"tag":74,"props":1001,"children":1002},{},[1003,1009,1010,1016,1017,1023],{"type":39,"tag":85,"props":1004,"children":1006},{"className":1005},[],[1007],{"type":44,"value":1008},"tsup",{"type":44,"value":92},{"type":39,"tag":85,"props":1011,"children":1013},{"className":1012},[],[1014],{"type":44,"value":1015},"tsx",{"type":44,"value":148},{"type":39,"tag":85,"props":1018,"children":1020},{"className":1019},[],[1021],{"type":44,"value":1022},"tsc",{"type":44,"value":1024}," using the repo's existing convention",{"type":39,"tag":47,"props":1026,"children":1027},{},[1028,1030,1036,1037,1043,1044,1050,1052,1057,1059,1064],{"type":44,"value":1029},"Add an install path such as ",{"type":39,"tag":85,"props":1031,"children":1033},{"className":1032},[],[1034],{"type":44,"value":1035},"pnpm install",{"type":44,"value":92},{"type":39,"tag":85,"props":1038,"children":1040},{"className":1039},[],[1041],{"type":44,"value":1042},"pnpm build",{"type":44,"value":764},{"type":39,"tag":85,"props":1045,"children":1047},{"className":1046},[],[1048],{"type":44,"value":1049},"pnpm link --global",{"type":44,"value":1051},", or a ",{"type":39,"tag":85,"props":1053,"children":1055},{"className":1054},[],[1056],{"type":44,"value":908},{"type":44,"value":1058}," target that installs a small wrapper into ",{"type":39,"tag":85,"props":1060,"children":1062},{"className":1061},[],[1063],{"type":44,"value":338},{"type":44,"value":121},{"type":39,"tag":58,"props":1066,"children":1068},{"id":1067},"python-defaults",[1069],{"type":44,"value":1070},"Python Defaults",{"type":39,"tag":47,"props":1072,"children":1073},{},[1074],{"type":44,"value":1075},"When building in Python, prefer boring standard-library pieces unless the workflow needs more:",{"type":39,"tag":70,"props":1077,"children":1078},{},[1079,1098,1130,1169,1180],{"type":39,"tag":74,"props":1080,"children":1081},{},[1082,1088,1090,1096],{"type":39,"tag":85,"props":1083,"children":1085},{"className":1084},[],[1086],{"type":44,"value":1087},"argparse",{"type":44,"value":1089}," for commands and help, or ",{"type":39,"tag":85,"props":1091,"children":1093},{"className":1092},[],[1094],{"type":44,"value":1095},"typer",{"type":44,"value":1097}," when subcommands would otherwise get messy",{"type":39,"tag":74,"props":1099,"children":1100},{},[1101,1107,1108,1114,1115,1121,1122,1128],{"type":39,"tag":85,"props":1102,"children":1104},{"className":1103},[],[1105],{"type":44,"value":1106},"urllib.request",{"type":44,"value":867},{"type":39,"tag":85,"props":1109,"children":1111},{"className":1110},[],[1112],{"type":44,"value":1113},"urllib.parse",{"type":44,"value":92},{"type":39,"tag":85,"props":1116,"children":1118},{"className":1117},[],[1119],{"type":44,"value":1120},"requests",{"type":44,"value":148},{"type":39,"tag":85,"props":1123,"children":1125},{"className":1124},[],[1126],{"type":44,"value":1127},"httpx",{"type":44,"value":1129}," for HTTP, matching what is already installed or already used nearby",{"type":39,"tag":74,"props":1131,"children":1132},{},[1133,1139,1140,1146,1147,1153,1154,1160,1161,1167],{"type":39,"tag":85,"props":1134,"children":1136},{"className":1135},[],[1137],{"type":44,"value":1138},"json",{"type":44,"value":92},{"type":39,"tag":85,"props":1141,"children":1143},{"className":1142},[],[1144],{"type":44,"value":1145},"csv",{"type":44,"value":92},{"type":39,"tag":85,"props":1148,"children":1150},{"className":1149},[],[1151],{"type":44,"value":1152},"sqlite3",{"type":44,"value":92},{"type":39,"tag":85,"props":1155,"children":1157},{"className":1156},[],[1158],{"type":44,"value":1159},"pathlib",{"type":44,"value":764},{"type":39,"tag":85,"props":1162,"children":1164},{"className":1163},[],[1165],{"type":44,"value":1166},"subprocess",{"type":44,"value":1168}," for local files, exports, databases, and existing scripts",{"type":39,"tag":74,"props":1170,"children":1171},{},[1172,1178],{"type":39,"tag":85,"props":1173,"children":1175},{"className":1174},[],[1176],{"type":44,"value":1177},"pyproject.toml",{"type":44,"value":1179}," console script or a small executable wrapper for the installed command",{"type":39,"tag":74,"props":1181,"children":1182},{},[1183,1189],{"type":39,"tag":85,"props":1184,"children":1186},{"className":1185},[],[1187],{"type":44,"value":1188},"uv",{"type":44,"value":1190}," or a virtualenv only when dependencies are actually needed",{"type":39,"tag":47,"props":1192,"children":1193},{},[1194,1195,1200,1201,1206,1208,1213],{"type":44,"value":902},{"type":39,"tag":85,"props":1196,"children":1198},{"className":1197},[],[1199],{"type":44,"value":908},{"type":44,"value":910},{"type":39,"tag":85,"props":1202,"children":1204},{"className":1203},[],[1205],{"type":44,"value":916},{"type":44,"value":1207}," that installs the command on PATH and document whether it depends on ",{"type":39,"tag":85,"props":1209,"children":1211},{"className":1210},[],[1212],{"type":44,"value":1188},{"type":44,"value":1214},", a virtualenv, or only system Python.",{"type":39,"tag":58,"props":1216,"children":1218},{"id":1217},"companion-skill",[1219],{"type":44,"value":1220},"Companion Skill",{"type":39,"tag":47,"props":1222,"children":1223},{},[1224,1226,1232,1234,1240,1242,1248],{"type":44,"value":1225},"After the CLI works, create or update a small skill for it. Use ",{"type":39,"tag":85,"props":1227,"children":1229},{"className":1228},[],[1230],{"type":44,"value":1231},"$skill-creator",{"type":44,"value":1233}," when it is available. Use ",{"type":39,"tag":85,"props":1235,"children":1237},{"className":1236},[],[1238],{"type":44,"value":1239},"$CODEX_HOME\u002Fskills\u002F\u003Ctool-name>\u002FSKILL.md",{"type":44,"value":1241}," for a personal companion skill unless the user names a repo-local ",{"type":39,"tag":85,"props":1243,"children":1245},{"className":1244},[],[1246],{"type":44,"value":1247},".codex\u002Fskills\u002F...",{"type":44,"value":1249}," path or another skill repo.",{"type":39,"tag":47,"props":1251,"children":1252},{},[1253],{"type":44,"value":1254},"Write the companion skill in the order a future Codex thread should use the CLI, not as a tour of every feature. Explain:",{"type":39,"tag":70,"props":1256,"children":1257},{},[1258,1263,1268,1273,1278,1283,1288,1293,1298],{"type":39,"tag":74,"props":1259,"children":1260},{},[1261],{"type":44,"value":1262},"How to verify the installed command exists.",{"type":39,"tag":74,"props":1264,"children":1265},{},[1266],{"type":44,"value":1267},"Which command to run first.",{"type":39,"tag":74,"props":1269,"children":1270},{},[1271],{"type":44,"value":1272},"How auth is configured.",{"type":39,"tag":74,"props":1274,"children":1275},{},[1276],{"type":44,"value":1277},"Which discovery command finds the common ID.",{"type":39,"tag":74,"props":1279,"children":1280},{},[1281],{"type":44,"value":1282},"The safe read path.",{"type":39,"tag":74,"props":1284,"children":1285},{},[1286],{"type":44,"value":1287},"The intended draft\u002Fwrite path.",{"type":39,"tag":74,"props":1289,"children":1290},{},[1291],{"type":44,"value":1292},"The raw escape hatch.",{"type":39,"tag":74,"props":1294,"children":1295},{},[1296],{"type":44,"value":1297},"What not to do without explicit user approval.",{"type":39,"tag":74,"props":1299,"children":1300},{},[1301],{"type":44,"value":1302},"Three copy-pasteable command examples.",{"type":39,"tag":47,"props":1304,"children":1305},{},[1306],{"type":44,"value":1307},"Keep API reference details in the CLI docs or a skill reference file. Keep the skill focused on ordering, safety, and examples future Codex threads should actually run.",{"type":39,"tag":1309,"props":1310,"children":1311},"style",{},[1312],{"type":44,"value":1313},"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":1315,"total":1430},[1316,1337,1354,1360,1379,1398,1414],{"slug":1317,"name":1317,"fn":1318,"description":1319,"org":1320,"tags":1321,"stars":22,"repoUrl":23,"updatedAt":1336},"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},[1322,1325,1327,1330,1333],{"name":1323,"slug":1324,"type":15},".NET","dotnet",{"name":1326,"slug":1317,"type":15},"ASP.NET Core",{"name":1328,"slug":1329,"type":15},"Blazor","blazor",{"name":1331,"slug":1332,"type":15},"C#","csharp",{"name":1334,"slug":1335,"type":15},"Web Development","web-development","2026-04-12T05:07:02.819491",{"slug":1338,"name":1338,"fn":1339,"description":1340,"org":1341,"tags":1342,"stars":22,"repoUrl":23,"updatedAt":1353},"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},[1343,1346,1349,1352],{"name":1344,"slug":1345,"type":15},"Apps SDK","apps-sdk",{"name":1347,"slug":1348,"type":15},"ChatGPT","chatgpt",{"name":1350,"slug":1351,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":4,"name":4,"fn":5,"description":6,"org":1355,"tags":1356,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1357,1358,1359],{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":1361,"name":1361,"fn":1362,"description":1363,"org":1364,"tags":1365,"stars":22,"repoUrl":23,"updatedAt":1378},"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},[1366,1369,1372,1375],{"name":1367,"slug":1368,"type":15},"Cloudflare","cloudflare",{"name":1370,"slug":1371,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1373,"slug":1374,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1376,"slug":1377,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1380,"name":1380,"fn":1381,"description":1382,"org":1383,"tags":1384,"stars":22,"repoUrl":23,"updatedAt":1397},"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},[1385,1388,1391,1394],{"name":1386,"slug":1387,"type":15},"Productivity","productivity",{"name":1389,"slug":1390,"type":15},"Project Management","project-management",{"name":1392,"slug":1393,"type":15},"Strategy","strategy",{"name":1395,"slug":1396,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1399,"name":1399,"fn":1400,"description":1401,"org":1402,"tags":1403,"stars":22,"repoUrl":23,"updatedAt":1413},"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},[1404,1407,1409,1412],{"name":1405,"slug":1406,"type":15},"Design","design",{"name":1408,"slug":1399,"type":15},"Figma",{"name":1410,"slug":1411,"type":15},"Frontend","frontend",{"name":1350,"slug":1351,"type":15},"2026-04-12T05:06:47.939943",{"slug":1415,"name":1415,"fn":1416,"description":1417,"org":1418,"tags":1419,"stars":22,"repoUrl":23,"updatedAt":1429},"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},[1420,1421,1424,1425,1426],{"name":1405,"slug":1406,"type":15},{"name":1422,"slug":1423,"type":15},"Design System","design-system",{"name":1408,"slug":1399,"type":15},{"name":1410,"slug":1411,"type":15},{"name":1427,"slug":1428,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",29,{"items":1432,"total":1561},[1433,1454,1462,1469,1475,1482,1489,1496,1504,1518,1530,1545],{"slug":1434,"name":1434,"fn":1435,"description":1436,"org":1437,"tags":1438,"stars":1451,"repoUrl":1452,"updatedAt":1453},"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},[1439,1442,1445,1448],{"name":1440,"slug":1441,"type":15},"Documents","documents",{"name":1443,"slug":1444,"type":15},"Healthcare","healthcare",{"name":1446,"slug":1447,"type":15},"Insurance","insurance",{"name":1449,"slug":1450,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1317,"name":1317,"fn":1318,"description":1319,"org":1455,"tags":1456,"stars":22,"repoUrl":23,"updatedAt":1336},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1457,1458,1459,1460,1461],{"name":1323,"slug":1324,"type":15},{"name":1326,"slug":1317,"type":15},{"name":1328,"slug":1329,"type":15},{"name":1331,"slug":1332,"type":15},{"name":1334,"slug":1335,"type":15},{"slug":1338,"name":1338,"fn":1339,"description":1340,"org":1463,"tags":1464,"stars":22,"repoUrl":23,"updatedAt":1353},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1465,1466,1467,1468],{"name":1344,"slug":1345,"type":15},{"name":1347,"slug":1348,"type":15},{"name":1350,"slug":1351,"type":15},{"name":9,"slug":8,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":1470,"tags":1471,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1472,1473,1474],{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":1361,"name":1361,"fn":1362,"description":1363,"org":1476,"tags":1477,"stars":22,"repoUrl":23,"updatedAt":1378},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1478,1479,1480,1481],{"name":1367,"slug":1368,"type":15},{"name":1370,"slug":1371,"type":15},{"name":1373,"slug":1374,"type":15},{"name":1376,"slug":1377,"type":15},{"slug":1380,"name":1380,"fn":1381,"description":1382,"org":1483,"tags":1484,"stars":22,"repoUrl":23,"updatedAt":1397},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1485,1486,1487,1488],{"name":1386,"slug":1387,"type":15},{"name":1389,"slug":1390,"type":15},{"name":1392,"slug":1393,"type":15},{"name":1395,"slug":1396,"type":15},{"slug":1399,"name":1399,"fn":1400,"description":1401,"org":1490,"tags":1491,"stars":22,"repoUrl":23,"updatedAt":1413},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1492,1493,1494,1495],{"name":1405,"slug":1406,"type":15},{"name":1408,"slug":1399,"type":15},{"name":1410,"slug":1411,"type":15},{"name":1350,"slug":1351,"type":15},{"slug":1415,"name":1415,"fn":1416,"description":1417,"org":1497,"tags":1498,"stars":22,"repoUrl":23,"updatedAt":1429},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1499,1500,1501,1502,1503],{"name":1405,"slug":1406,"type":15},{"name":1422,"slug":1423,"type":15},{"name":1408,"slug":1399,"type":15},{"name":1410,"slug":1411,"type":15},{"name":1427,"slug":1428,"type":15},{"slug":1505,"name":1505,"fn":1506,"description":1507,"org":1508,"tags":1509,"stars":22,"repoUrl":23,"updatedAt":1517},"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},[1510,1511,1512,1515,1516],{"name":1405,"slug":1406,"type":15},{"name":1422,"slug":1423,"type":15},{"name":1513,"slug":1514,"type":15},"Documentation","documentation",{"name":1408,"slug":1399,"type":15},{"name":1410,"slug":1411,"type":15},"2026-05-16T06:07:47.821474",{"slug":1519,"name":1519,"fn":1520,"description":1521,"org":1522,"tags":1523,"stars":22,"repoUrl":23,"updatedAt":1529},"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},[1524,1525,1526,1527,1528],{"name":1405,"slug":1406,"type":15},{"name":1408,"slug":1399,"type":15},{"name":1410,"slug":1411,"type":15},{"name":1427,"slug":1428,"type":15},{"name":1334,"slug":1335,"type":15},"2026-05-16T06:07:40.583615",{"slug":1531,"name":1531,"fn":1532,"description":1533,"org":1534,"tags":1535,"stars":22,"repoUrl":23,"updatedAt":1544},"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},[1536,1539,1540,1543],{"name":1537,"slug":1538,"type":15},"Animation","animation",{"name":17,"slug":18,"type":15},{"name":1541,"slug":1542,"type":15},"Creative","creative",{"name":1405,"slug":1406,"type":15},"2026-05-02T05:31:48.48485",{"slug":1546,"name":1546,"fn":1547,"description":1548,"org":1549,"tags":1550,"stars":22,"repoUrl":23,"updatedAt":1560},"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},[1551,1552,1553,1556,1559],{"name":1541,"slug":1542,"type":15},{"name":1405,"slug":1406,"type":15},{"name":1554,"slug":1555,"type":15},"Image Generation","image-generation",{"name":1557,"slug":1558,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]