[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-sora":3,"mdc--4txxkz-key":33,"related-repo-jetbrains-sora":1348,"related-org-jetbrains-sora":1472},{"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},"sora","generate and manage Sora videos","Use when the user asks to generate, edit, extend, poll, list, download, or delete Sora videos, create reusable non-human Sora character references, or run local multi-video queues via the bundled CLI (`scripts\u002Fsora.py`); includes requests like: (i) generate AI video, (ii) edit this Sora clip, (iii) extend this video, (iv) create a character reference, (v) download video\u002Fthumbnail\u002Fspritesheet, and (vi) Sora batch planning; requires `OPENAI_API_KEY` and Sora API access.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"jetbrains","JetBrains","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fjetbrains.png",[12,16,19],{"name":13,"slug":14,"type":15},"Creative","creative","tag",{"name":17,"slug":18,"type":15},"CLI","cli",{"name":20,"slug":21,"type":15},"Video","video",252,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills","2026-07-13T06:38:31.254745",null,17,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Curated agent skills collection verified by JetBrains","https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills\u002Ftree\u002FHEAD\u002Fsora","---\nname: \"sora\"\ndescription: \"Use when the user asks to generate, edit, extend, poll, list, download, or delete Sora videos, create reusable non-human Sora character references, or run local multi-video queues via the bundled CLI (`scripts\u002Fsora.py`); includes requests like: (i) generate AI video, (ii) edit this Sora clip, (iii) extend this video, (iv) create a character reference, (v) download video\u002Fthumbnail\u002Fspritesheet, and (vi) Sora batch planning; requires `OPENAI_API_KEY` and Sora API access.\"\nmetadata:\n  short-description: \"Generate, edit, extend, and manage Sora videos\"\n  author: OpenAI\n  source: https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002Fmain\u002Fskills\u002F.curated\u002Fsora\n---\n\n\n# Sora Video Generation Skill\n\nCreates or manages Sora video jobs for the current project (product demos, marketing spots, cinematic shots, social clips, UI mocks). Defaults to `sora-2` with structured prompt augmentation and prefers the bundled CLI for deterministic runs. Note: `$sora` is a skill tag in prompts, not a shell command.\n\n## When to use\n- Generate a new video clip from a prompt\n- Create a reusable character reference from a short non-human source clip\n- Edit an existing generated video with a targeted prompt change\n- Extend a completed video with a continuation prompt\n- Poll status, list jobs, or download assets (video\u002Fthumbnail\u002Fspritesheet)\n- Run a local multi-job queue now, or plan a true Batch API submission for offline rendering\n\n## Decision tree\n- If the user has a short non-human reference clip they want to reuse across shots → `create-character`\n- If the user has a completed video and wants the next beat\u002Fcontinuation → `extend`\n- If the user has a completed video and wants a targeted change while preserving the shot → `edit`\n- If the user has a video id and wants status or assets → `status`, `poll`, or `download`\n- If the user needs many renders immediately inside Codex → `create-batch` (local fan-out, not the Batch API)\n- If the user needs many renders for offline processing or a studio pipeline → use the official Batch API flow described in `references\u002Fvideo-api.md`\n- Otherwise → `create` (or `create-and-poll` if they need a ready asset in one step)\n\n## Workflow\n1. Decide intent: create vs create-character vs edit vs extend vs status\u002Fdownload vs local queue vs official Batch API.\n2. Collect inputs: prompt, model, size, seconds, any image reference, and any character IDs.\n3. Prefer CLI augmentation flags (`--use-case`, `--scene`, `--camera`, etc.) instead of hand-writing a long structured prompt. If you already have a structured prompt file, pass `--no-augment`.\n4. Run the bundled CLI (`scripts\u002Fsora.py`) with sensible defaults. For long prompts, prefer `--prompt-file` to avoid shell-escaping issues.\n5. For async jobs, poll until terminal status (or use `create-and-poll`).\n6. Download assets (video\u002Fthumbnail\u002Fspritesheet) and save them locally before URLs expire.\n7. If the user wants continuity across many shots, create character assets first, then reference them in later `create` calls.\n8. If the user wants to iterate on a completed shot, prefer `edit`; if they want the shot to continue in time, prefer `extend`.\n9. Use one targeted change per iteration.\n\n## Authentication\n- `OPENAI_API_KEY` must be set for live API calls.\n\nIf the key is missing, give the user these steps:\n1. Create an API key in the OpenAI platform UI: https:\u002F\u002Fplatform.openai.com\u002Fapi-keys\n2. Set `OPENAI_API_KEY` as an environment variable in their system.\n3. Offer to guide them through setting the environment variable for their OS\u002Fshell if needed.\n- Never ask the user to paste the full key in chat. Ask them to set it locally and confirm when ready.\n\n## Defaults & rules\n- Default model: `sora-2` (use `sora-2-pro` for higher fidelity).\n- Default size: `1280x720`.\n- Default seconds: `4` (allowed: `\"4\"`, `\"8\"`, `\"12\"`, `\"16\"`, `\"20\"`).\n- Always set size and seconds via API params; prose will not change them.\n- `sora-2-pro` is required for `1920x1080` and `1080x1920`.\n- Use up to two characters per generation.\n- Use the OpenAI Python SDK (`openai` package). If high-level SDK helpers lag the latest Sora guide, use low-level `client.post\u002Fget\u002Fdelete` inside the official SDK rather than standalone HTTP code.\n- Require `OPENAI_API_KEY` before any live API call.\n- If uv cache permissions fail, set `UV_CACHE_DIR=\u002Ftmp\u002Fuv-cache`.\n- Input reference images must be jpg\u002Fpng\u002Fwebp and should match target size.\n- JSON `input_reference` objects use either `file_id` or `image_url`; uploaded file paths use multipart.\n- Download URLs expire after about 1 hour; copy assets to your own storage.\n- Batch-generated videos remain downloadable for up to 24 hours after the batch completes.\n- `create-batch` in `scripts\u002Fsora.py` is a local concurrent queue, not the official Batch API.\n- Prefer the bundled CLI and **never modify** `scripts\u002Fsora.py` unless the user asks.\n- Sora can generate audio; if a user requests voiceover\u002Faudio, specify it explicitly in the `Audio:` and `Dialogue:` lines and keep it short.\n\n## API limitations\n- Models are limited to `sora-2` and `sora-2-pro`.\n- API access to Sora models requires an organization-verified account.\n- Duration must be set via the `seconds` parameter and currently supports `4`, `8`, `12`, `16`, and `20`.\n- Character uploads currently work best with short `2`-`4` second non-human MP4s in `16:9` or `9:16`, at `720p`-`1080p`.\n- Extensions can add up to `20` seconds each, up to six times per source video, for a maximum total length of `120` seconds.\n- Extensions currently do not support characters or image references.\n- This skill supports editing existing generated videos by ID.\n- The official Batch API currently supports `POST \u002Fv1\u002Fvideos` only, with JSON bodies rather than multipart uploads.\n- Output sizes are limited by model (see `references\u002Fvideo-api.md` for the supported sizes).\n- Video creation is async; you must poll for completion before downloading.\n- Rate limits apply by usage tier (do not list specific limits).\n- Content restrictions are enforced by the API (see Guardrails below).\n\n## Guardrails (must enforce)\n- Only content suitable for audiences under 18.\n- No copyrighted characters or copyrighted music.\n- No real people (including public figures).\n- Input images with human faces are rejected.\n- Character uploads in this skill are for non-human subjects only.\n\n## Prompt augmentation\nReformat prompts into a structured, production-oriented spec. Only make implicit details explicit; do not invent new creative requirements.\n\nTemplate (include only relevant lines):\n```\nUse case: \u003Cwhere the clip will be used>\nPrimary request: \u003Cuser's main prompt>\nScene\u002Fbackground: \u003Clocation, time of day, atmosphere>\nSubject: \u003Cmain subject>\nAction: \u003Csingle clear action>\nCamera: \u003Cshot type, angle, motion>\nLighting\u002Fmood: \u003Clighting + mood>\nColor palette: \u003C3-5 color anchors>\nStyle\u002Fformat: \u003Cfilm\u002Fanimation\u002Fformat cues>\nTiming\u002Fbeats: \u003Ccounts or beats>\nAudio: \u003Cambient cue \u002F music \u002F voiceover if requested>\nText (verbatim): \"\u003Cexact text>\"\nDialogue:\n\u003Cdialogue>\n- Speaker: \"Short line.\"\n\u003C\u002Fdialogue>\nConstraints: \u003Cmust keep\u002Fmust avoid>\nAvoid: \u003Cnegative constraints>\n```\n\nAugmentation rules:\n- Keep it short; add only details the user already implied or provided elsewhere.\n- For edits, explicitly list invariants (\"same shot, change only X\").\n- For character-based shots, mention the character name verbatim in the prompt.\n- If any critical detail is missing and blocks success, ask a question; otherwise proceed.\n- If you pass a structured prompt file to the CLI, add `--no-augment` to avoid the tool re-wrapping it.\n\n## Examples\n\n### Generation example (single shot)\n```\nUse case: product teaser\nPrimary request: a close-up of a matte black camera on a pedestal\nAction: slow 30-degree orbit over 4 seconds\nCamera: 85mm, shallow depth of field, gentle handheld drift\nLighting\u002Fmood: soft key light, subtle rim, premium studio feel\nConstraints: no logos, no text\n```\n\n### Edit example (invariants)\n```\nPrimary request: same shot and framing, switch palette to teal\u002Fsand\u002Frust with warmer backlight\nConstraints: keep the subject and camera move unchanged\n```\n\n### Character consistency example\n```\nPrimary request: Mossy, a moss-covered teapot mascot, hurries through a lantern-lit market at dusk\nCamera: cinematic tracking shot, 35mm, shoulder height\nLighting\u002Fmood: warm dusk practicals, soft haze\nConstraints: keep Mossy’s silhouette and moss texture consistent across the shot\n```\n\n## Prompting best practices (short list)\n- One main action + one camera move per shot.\n- Use counts or beats for timing (\"two steps, pause, turn\").\n- Keep text short and the camera locked-off for UI or on-screen text.\n- Add a brief avoid line when artifacts appear (flicker, jitter, fast motion).\n- Shorter prompts are more creative; longer prompts are more controlled.\n- Put dialogue in a dedicated block; keep lines short for 4-8s clips.\n- Mention character names verbatim when using uploaded character IDs.\n- State invariants explicitly for edits (same shot, same camera move).\n- Prefer `edit` for targeted changes and `extend` for timeline continuation.\n- Iterate with single-change follow-ups to preserve continuity.\n\n## Guidance by asset type\nUse these modules when the request is for a specific artifact. They provide targeted templates and defaults.\n- Cinematic shots: `references\u002Fcinematic-shots.md`\n- Social ads: `references\u002Fsocial-ads.md`\n\n## CLI + environment notes\n- CLI commands + examples: `references\u002Fcli.md`\n- API parameter quick reference: `references\u002Fvideo-api.md`\n- Prompting guidance: `references\u002Fprompting.md`\n- Sample prompts: `references\u002Fsample-prompts.md`\n- Troubleshooting: `references\u002Ftroubleshooting.md`\n- Network\u002Fsandbox tips: `references\u002Fcodex-network.md`\n\n## Reference map\n- **`references\u002Fcli.md`**: how to run create\u002Fedit\u002Fextend\u002Fcreate-character\u002Fpoll\u002Fdownload\u002Flocal-queue flows via `scripts\u002Fsora.py`.\n- **`references\u002Fvideo-api.md`**: API-level knobs (models, sizes, duration, characters, edits, extensions, official Batch API).\n- **`references\u002Fprompting.md`**: prompt structure, character continuity, editing, and extension guidance.\n- **`references\u002Fsample-prompts.md`**: copy\u002Fpaste prompt recipes (examples only; no extra theory).\n- **`references\u002Fcinematic-shots.md`**: templates for filmic shots.\n- **`references\u002Fsocial-ads.md`**: templates for short social ad beats.\n- **`references\u002Ftroubleshooting.md`**: common errors and fixes.\n- **`references\u002Fcodex-network.md`**: network\u002Fapproval troubleshooting.\n",{"data":34,"body":39},{"name":4,"description":6,"metadata":35},{"short-description":36,"author":37,"source":38},"Generate, edit, extend, and manage Sora videos","OpenAI","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002Fmain\u002Fskills\u002F.curated\u002Fsora",{"type":40,"children":41},"root",[42,51,74,81,116,122,230,236,358,364,378,383,416,424,430,694,700,892,898,926,932,937,942,954,959,994,1000,1007,1016,1022,1031,1037,1046,1052,1119,1125,1130,1155,1161,1229,1235],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"sora-video-generation-skill",[48],{"type":49,"value":50},"text","Sora Video Generation Skill",{"type":43,"tag":52,"props":53,"children":54},"p",{},[55,57,64,66,72],{"type":49,"value":56},"Creates or manages Sora video jobs for the current project (product demos, marketing spots, cinematic shots, social clips, UI mocks). Defaults to ",{"type":43,"tag":58,"props":59,"children":61},"code",{"className":60},[],[62],{"type":49,"value":63},"sora-2",{"type":49,"value":65}," with structured prompt augmentation and prefers the bundled CLI for deterministic runs. Note: ",{"type":43,"tag":58,"props":67,"children":69},{"className":68},[],[70],{"type":49,"value":71},"$sora",{"type":49,"value":73}," is a skill tag in prompts, not a shell command.",{"type":43,"tag":75,"props":76,"children":78},"h2",{"id":77},"when-to-use",[79],{"type":49,"value":80},"When to use",{"type":43,"tag":82,"props":83,"children":84},"ul",{},[85,91,96,101,106,111],{"type":43,"tag":86,"props":87,"children":88},"li",{},[89],{"type":49,"value":90},"Generate a new video clip from a prompt",{"type":43,"tag":86,"props":92,"children":93},{},[94],{"type":49,"value":95},"Create a reusable character reference from a short non-human source clip",{"type":43,"tag":86,"props":97,"children":98},{},[99],{"type":49,"value":100},"Edit an existing generated video with a targeted prompt change",{"type":43,"tag":86,"props":102,"children":103},{},[104],{"type":49,"value":105},"Extend a completed video with a continuation prompt",{"type":43,"tag":86,"props":107,"children":108},{},[109],{"type":49,"value":110},"Poll status, list jobs, or download assets (video\u002Fthumbnail\u002Fspritesheet)",{"type":43,"tag":86,"props":112,"children":113},{},[114],{"type":49,"value":115},"Run a local multi-job queue now, or plan a true Batch API submission for offline rendering",{"type":43,"tag":75,"props":117,"children":119},{"id":118},"decision-tree",[120],{"type":49,"value":121},"Decision tree",{"type":43,"tag":82,"props":123,"children":124},{},[125,136,147,158,185,198,209],{"type":43,"tag":86,"props":126,"children":127},{},[128,130],{"type":49,"value":129},"If the user has a short non-human reference clip they want to reuse across shots → ",{"type":43,"tag":58,"props":131,"children":133},{"className":132},[],[134],{"type":49,"value":135},"create-character",{"type":43,"tag":86,"props":137,"children":138},{},[139,141],{"type":49,"value":140},"If the user has a completed video and wants the next beat\u002Fcontinuation → ",{"type":43,"tag":58,"props":142,"children":144},{"className":143},[],[145],{"type":49,"value":146},"extend",{"type":43,"tag":86,"props":148,"children":149},{},[150,152],{"type":49,"value":151},"If the user has a completed video and wants a targeted change while preserving the shot → ",{"type":43,"tag":58,"props":153,"children":155},{"className":154},[],[156],{"type":49,"value":157},"edit",{"type":43,"tag":86,"props":159,"children":160},{},[161,163,169,171,177,179],{"type":49,"value":162},"If the user has a video id and wants status or assets → ",{"type":43,"tag":58,"props":164,"children":166},{"className":165},[],[167],{"type":49,"value":168},"status",{"type":49,"value":170},", ",{"type":43,"tag":58,"props":172,"children":174},{"className":173},[],[175],{"type":49,"value":176},"poll",{"type":49,"value":178},", or ",{"type":43,"tag":58,"props":180,"children":182},{"className":181},[],[183],{"type":49,"value":184},"download",{"type":43,"tag":86,"props":186,"children":187},{},[188,190,196],{"type":49,"value":189},"If the user needs many renders immediately inside Codex → ",{"type":43,"tag":58,"props":191,"children":193},{"className":192},[],[194],{"type":49,"value":195},"create-batch",{"type":49,"value":197}," (local fan-out, not the Batch API)",{"type":43,"tag":86,"props":199,"children":200},{},[201,203],{"type":49,"value":202},"If the user needs many renders for offline processing or a studio pipeline → use the official Batch API flow described in ",{"type":43,"tag":58,"props":204,"children":206},{"className":205},[],[207],{"type":49,"value":208},"references\u002Fvideo-api.md",{"type":43,"tag":86,"props":210,"children":211},{},[212,214,220,222,228],{"type":49,"value":213},"Otherwise → ",{"type":43,"tag":58,"props":215,"children":217},{"className":216},[],[218],{"type":49,"value":219},"create",{"type":49,"value":221}," (or ",{"type":43,"tag":58,"props":223,"children":225},{"className":224},[],[226],{"type":49,"value":227},"create-and-poll",{"type":49,"value":229}," if they need a ready asset in one step)",{"type":43,"tag":75,"props":231,"children":233},{"id":232},"workflow",[234],{"type":49,"value":235},"Workflow",{"type":43,"tag":237,"props":238,"children":239},"ol",{},[240,245,250,285,306,318,323,335,353],{"type":43,"tag":86,"props":241,"children":242},{},[243],{"type":49,"value":244},"Decide intent: create vs create-character vs edit vs extend vs status\u002Fdownload vs local queue vs official Batch API.",{"type":43,"tag":86,"props":246,"children":247},{},[248],{"type":49,"value":249},"Collect inputs: prompt, model, size, seconds, any image reference, and any character IDs.",{"type":43,"tag":86,"props":251,"children":252},{},[253,255,261,262,268,269,275,277,283],{"type":49,"value":254},"Prefer CLI augmentation flags (",{"type":43,"tag":58,"props":256,"children":258},{"className":257},[],[259],{"type":49,"value":260},"--use-case",{"type":49,"value":170},{"type":43,"tag":58,"props":263,"children":265},{"className":264},[],[266],{"type":49,"value":267},"--scene",{"type":49,"value":170},{"type":43,"tag":58,"props":270,"children":272},{"className":271},[],[273],{"type":49,"value":274},"--camera",{"type":49,"value":276},", etc.) instead of hand-writing a long structured prompt. If you already have a structured prompt file, pass ",{"type":43,"tag":58,"props":278,"children":280},{"className":279},[],[281],{"type":49,"value":282},"--no-augment",{"type":49,"value":284},".",{"type":43,"tag":86,"props":286,"children":287},{},[288,290,296,298,304],{"type":49,"value":289},"Run the bundled CLI (",{"type":43,"tag":58,"props":291,"children":293},{"className":292},[],[294],{"type":49,"value":295},"scripts\u002Fsora.py",{"type":49,"value":297},") with sensible defaults. For long prompts, prefer ",{"type":43,"tag":58,"props":299,"children":301},{"className":300},[],[302],{"type":49,"value":303},"--prompt-file",{"type":49,"value":305}," to avoid shell-escaping issues.",{"type":43,"tag":86,"props":307,"children":308},{},[309,311,316],{"type":49,"value":310},"For async jobs, poll until terminal status (or use ",{"type":43,"tag":58,"props":312,"children":314},{"className":313},[],[315],{"type":49,"value":227},{"type":49,"value":317},").",{"type":43,"tag":86,"props":319,"children":320},{},[321],{"type":49,"value":322},"Download assets (video\u002Fthumbnail\u002Fspritesheet) and save them locally before URLs expire.",{"type":43,"tag":86,"props":324,"children":325},{},[326,328,333],{"type":49,"value":327},"If the user wants continuity across many shots, create character assets first, then reference them in later ",{"type":43,"tag":58,"props":329,"children":331},{"className":330},[],[332],{"type":49,"value":219},{"type":49,"value":334}," calls.",{"type":43,"tag":86,"props":336,"children":337},{},[338,340,345,347,352],{"type":49,"value":339},"If the user wants to iterate on a completed shot, prefer ",{"type":43,"tag":58,"props":341,"children":343},{"className":342},[],[344],{"type":49,"value":157},{"type":49,"value":346},"; if they want the shot to continue in time, prefer ",{"type":43,"tag":58,"props":348,"children":350},{"className":349},[],[351],{"type":49,"value":146},{"type":49,"value":284},{"type":43,"tag":86,"props":354,"children":355},{},[356],{"type":49,"value":357},"Use one targeted change per iteration.",{"type":43,"tag":75,"props":359,"children":361},{"id":360},"authentication",[362],{"type":49,"value":363},"Authentication",{"type":43,"tag":82,"props":365,"children":366},{},[367],{"type":43,"tag":86,"props":368,"children":369},{},[370,376],{"type":43,"tag":58,"props":371,"children":373},{"className":372},[],[374],{"type":49,"value":375},"OPENAI_API_KEY",{"type":49,"value":377}," must be set for live API calls.",{"type":43,"tag":52,"props":379,"children":380},{},[381],{"type":49,"value":382},"If the key is missing, give the user these steps:",{"type":43,"tag":237,"props":384,"children":385},{},[386,399,411],{"type":43,"tag":86,"props":387,"children":388},{},[389,391],{"type":49,"value":390},"Create an API key in the OpenAI platform UI: ",{"type":43,"tag":392,"props":393,"children":397},"a",{"href":394,"rel":395},"https:\u002F\u002Fplatform.openai.com\u002Fapi-keys",[396],"nofollow",[398],{"type":49,"value":394},{"type":43,"tag":86,"props":400,"children":401},{},[402,404,409],{"type":49,"value":403},"Set ",{"type":43,"tag":58,"props":405,"children":407},{"className":406},[],[408],{"type":49,"value":375},{"type":49,"value":410}," as an environment variable in their system.",{"type":43,"tag":86,"props":412,"children":413},{},[414],{"type":49,"value":415},"Offer to guide them through setting the environment variable for their OS\u002Fshell if needed.",{"type":43,"tag":82,"props":417,"children":418},{},[419],{"type":43,"tag":86,"props":420,"children":421},{},[422],{"type":49,"value":423},"Never ask the user to paste the full key in chat. Ask them to set it locally and confirm when ready.",{"type":43,"tag":75,"props":425,"children":427},{"id":426},"defaults-rules",[428],{"type":49,"value":429},"Defaults & rules",{"type":43,"tag":82,"props":431,"children":432},{},[433,453,465,513,518,543,548,569,581,593,598,627,632,637,654,674],{"type":43,"tag":86,"props":434,"children":435},{},[436,438,443,445,451],{"type":49,"value":437},"Default model: ",{"type":43,"tag":58,"props":439,"children":441},{"className":440},[],[442],{"type":49,"value":63},{"type":49,"value":444}," (use ",{"type":43,"tag":58,"props":446,"children":448},{"className":447},[],[449],{"type":49,"value":450},"sora-2-pro",{"type":49,"value":452}," for higher fidelity).",{"type":43,"tag":86,"props":454,"children":455},{},[456,458,464],{"type":49,"value":457},"Default size: ",{"type":43,"tag":58,"props":459,"children":461},{"className":460},[],[462],{"type":49,"value":463},"1280x720",{"type":49,"value":284},{"type":43,"tag":86,"props":466,"children":467},{},[468,470,476,478,484,485,491,492,498,499,505,506,512],{"type":49,"value":469},"Default seconds: ",{"type":43,"tag":58,"props":471,"children":473},{"className":472},[],[474],{"type":49,"value":475},"4",{"type":49,"value":477}," (allowed: ",{"type":43,"tag":58,"props":479,"children":481},{"className":480},[],[482],{"type":49,"value":483},"\"4\"",{"type":49,"value":170},{"type":43,"tag":58,"props":486,"children":488},{"className":487},[],[489],{"type":49,"value":490},"\"8\"",{"type":49,"value":170},{"type":43,"tag":58,"props":493,"children":495},{"className":494},[],[496],{"type":49,"value":497},"\"12\"",{"type":49,"value":170},{"type":43,"tag":58,"props":500,"children":502},{"className":501},[],[503],{"type":49,"value":504},"\"16\"",{"type":49,"value":170},{"type":43,"tag":58,"props":507,"children":509},{"className":508},[],[510],{"type":49,"value":511},"\"20\"",{"type":49,"value":317},{"type":43,"tag":86,"props":514,"children":515},{},[516],{"type":49,"value":517},"Always set size and seconds via API params; prose will not change them.",{"type":43,"tag":86,"props":519,"children":520},{},[521,526,528,534,536,542],{"type":43,"tag":58,"props":522,"children":524},{"className":523},[],[525],{"type":49,"value":450},{"type":49,"value":527}," is required for ",{"type":43,"tag":58,"props":529,"children":531},{"className":530},[],[532],{"type":49,"value":533},"1920x1080",{"type":49,"value":535}," and ",{"type":43,"tag":58,"props":537,"children":539},{"className":538},[],[540],{"type":49,"value":541},"1080x1920",{"type":49,"value":284},{"type":43,"tag":86,"props":544,"children":545},{},[546],{"type":49,"value":547},"Use up to two characters per generation.",{"type":43,"tag":86,"props":549,"children":550},{},[551,553,559,561,567],{"type":49,"value":552},"Use the OpenAI Python SDK (",{"type":43,"tag":58,"props":554,"children":556},{"className":555},[],[557],{"type":49,"value":558},"openai",{"type":49,"value":560}," package). If high-level SDK helpers lag the latest Sora guide, use low-level ",{"type":43,"tag":58,"props":562,"children":564},{"className":563},[],[565],{"type":49,"value":566},"client.post\u002Fget\u002Fdelete",{"type":49,"value":568}," inside the official SDK rather than standalone HTTP code.",{"type":43,"tag":86,"props":570,"children":571},{},[572,574,579],{"type":49,"value":573},"Require ",{"type":43,"tag":58,"props":575,"children":577},{"className":576},[],[578],{"type":49,"value":375},{"type":49,"value":580}," before any live API call.",{"type":43,"tag":86,"props":582,"children":583},{},[584,586,592],{"type":49,"value":585},"If uv cache permissions fail, set ",{"type":43,"tag":58,"props":587,"children":589},{"className":588},[],[590],{"type":49,"value":591},"UV_CACHE_DIR=\u002Ftmp\u002Fuv-cache",{"type":49,"value":284},{"type":43,"tag":86,"props":594,"children":595},{},[596],{"type":49,"value":597},"Input reference images must be jpg\u002Fpng\u002Fwebp and should match target size.",{"type":43,"tag":86,"props":599,"children":600},{},[601,603,609,611,617,619,625],{"type":49,"value":602},"JSON ",{"type":43,"tag":58,"props":604,"children":606},{"className":605},[],[607],{"type":49,"value":608},"input_reference",{"type":49,"value":610}," objects use either ",{"type":43,"tag":58,"props":612,"children":614},{"className":613},[],[615],{"type":49,"value":616},"file_id",{"type":49,"value":618}," or ",{"type":43,"tag":58,"props":620,"children":622},{"className":621},[],[623],{"type":49,"value":624},"image_url",{"type":49,"value":626},"; uploaded file paths use multipart.",{"type":43,"tag":86,"props":628,"children":629},{},[630],{"type":49,"value":631},"Download URLs expire after about 1 hour; copy assets to your own storage.",{"type":43,"tag":86,"props":633,"children":634},{},[635],{"type":49,"value":636},"Batch-generated videos remain downloadable for up to 24 hours after the batch completes.",{"type":43,"tag":86,"props":638,"children":639},{},[640,645,647,652],{"type":43,"tag":58,"props":641,"children":643},{"className":642},[],[644],{"type":49,"value":195},{"type":49,"value":646}," in ",{"type":43,"tag":58,"props":648,"children":650},{"className":649},[],[651],{"type":49,"value":295},{"type":49,"value":653}," is a local concurrent queue, not the official Batch API.",{"type":43,"tag":86,"props":655,"children":656},{},[657,659,665,667,672],{"type":49,"value":658},"Prefer the bundled CLI and ",{"type":43,"tag":660,"props":661,"children":662},"strong",{},[663],{"type":49,"value":664},"never modify",{"type":49,"value":666}," ",{"type":43,"tag":58,"props":668,"children":670},{"className":669},[],[671],{"type":49,"value":295},{"type":49,"value":673}," unless the user asks.",{"type":43,"tag":86,"props":675,"children":676},{},[677,679,685,686,692],{"type":49,"value":678},"Sora can generate audio; if a user requests voiceover\u002Faudio, specify it explicitly in the ",{"type":43,"tag":58,"props":680,"children":682},{"className":681},[],[683],{"type":49,"value":684},"Audio:",{"type":49,"value":535},{"type":43,"tag":58,"props":687,"children":689},{"className":688},[],[690],{"type":49,"value":691},"Dialogue:",{"type":49,"value":693}," lines and keep it short.",{"type":43,"tag":75,"props":695,"children":697},{"id":696},"api-limitations",[698],{"type":49,"value":699},"API limitations",{"type":43,"tag":82,"props":701,"children":702},{},[703,720,725,773,822,842,847,852,865,877,882,887],{"type":43,"tag":86,"props":704,"children":705},{},[706,708,713,714,719],{"type":49,"value":707},"Models are limited to ",{"type":43,"tag":58,"props":709,"children":711},{"className":710},[],[712],{"type":49,"value":63},{"type":49,"value":535},{"type":43,"tag":58,"props":715,"children":717},{"className":716},[],[718],{"type":49,"value":450},{"type":49,"value":284},{"type":43,"tag":86,"props":721,"children":722},{},[723],{"type":49,"value":724},"API access to Sora models requires an organization-verified account.",{"type":43,"tag":86,"props":726,"children":727},{},[728,730,736,738,743,744,750,751,757,758,764,766,772],{"type":49,"value":729},"Duration must be set via the ",{"type":43,"tag":58,"props":731,"children":733},{"className":732},[],[734],{"type":49,"value":735},"seconds",{"type":49,"value":737}," parameter and currently supports ",{"type":43,"tag":58,"props":739,"children":741},{"className":740},[],[742],{"type":49,"value":475},{"type":49,"value":170},{"type":43,"tag":58,"props":745,"children":747},{"className":746},[],[748],{"type":49,"value":749},"8",{"type":49,"value":170},{"type":43,"tag":58,"props":752,"children":754},{"className":753},[],[755],{"type":49,"value":756},"12",{"type":49,"value":170},{"type":43,"tag":58,"props":759,"children":761},{"className":760},[],[762],{"type":49,"value":763},"16",{"type":49,"value":765},", and ",{"type":43,"tag":58,"props":767,"children":769},{"className":768},[],[770],{"type":49,"value":771},"20",{"type":49,"value":284},{"type":43,"tag":86,"props":774,"children":775},{},[776,778,784,786,791,793,799,800,806,808,814,815,821],{"type":49,"value":777},"Character uploads currently work best with short ",{"type":43,"tag":58,"props":779,"children":781},{"className":780},[],[782],{"type":49,"value":783},"2",{"type":49,"value":785},"-",{"type":43,"tag":58,"props":787,"children":789},{"className":788},[],[790],{"type":49,"value":475},{"type":49,"value":792}," second non-human MP4s in ",{"type":43,"tag":58,"props":794,"children":796},{"className":795},[],[797],{"type":49,"value":798},"16:9",{"type":49,"value":618},{"type":43,"tag":58,"props":801,"children":803},{"className":802},[],[804],{"type":49,"value":805},"9:16",{"type":49,"value":807},", at ",{"type":43,"tag":58,"props":809,"children":811},{"className":810},[],[812],{"type":49,"value":813},"720p",{"type":49,"value":785},{"type":43,"tag":58,"props":816,"children":818},{"className":817},[],[819],{"type":49,"value":820},"1080p",{"type":49,"value":284},{"type":43,"tag":86,"props":823,"children":824},{},[825,827,832,834,840],{"type":49,"value":826},"Extensions can add up to ",{"type":43,"tag":58,"props":828,"children":830},{"className":829},[],[831],{"type":49,"value":771},{"type":49,"value":833}," seconds each, up to six times per source video, for a maximum total length of ",{"type":43,"tag":58,"props":835,"children":837},{"className":836},[],[838],{"type":49,"value":839},"120",{"type":49,"value":841}," seconds.",{"type":43,"tag":86,"props":843,"children":844},{},[845],{"type":49,"value":846},"Extensions currently do not support characters or image references.",{"type":43,"tag":86,"props":848,"children":849},{},[850],{"type":49,"value":851},"This skill supports editing existing generated videos by ID.",{"type":43,"tag":86,"props":853,"children":854},{},[855,857,863],{"type":49,"value":856},"The official Batch API currently supports ",{"type":43,"tag":58,"props":858,"children":860},{"className":859},[],[861],{"type":49,"value":862},"POST \u002Fv1\u002Fvideos",{"type":49,"value":864}," only, with JSON bodies rather than multipart uploads.",{"type":43,"tag":86,"props":866,"children":867},{},[868,870,875],{"type":49,"value":869},"Output sizes are limited by model (see ",{"type":43,"tag":58,"props":871,"children":873},{"className":872},[],[874],{"type":49,"value":208},{"type":49,"value":876}," for the supported sizes).",{"type":43,"tag":86,"props":878,"children":879},{},[880],{"type":49,"value":881},"Video creation is async; you must poll for completion before downloading.",{"type":43,"tag":86,"props":883,"children":884},{},[885],{"type":49,"value":886},"Rate limits apply by usage tier (do not list specific limits).",{"type":43,"tag":86,"props":888,"children":889},{},[890],{"type":49,"value":891},"Content restrictions are enforced by the API (see Guardrails below).",{"type":43,"tag":75,"props":893,"children":895},{"id":894},"guardrails-must-enforce",[896],{"type":49,"value":897},"Guardrails (must enforce)",{"type":43,"tag":82,"props":899,"children":900},{},[901,906,911,916,921],{"type":43,"tag":86,"props":902,"children":903},{},[904],{"type":49,"value":905},"Only content suitable for audiences under 18.",{"type":43,"tag":86,"props":907,"children":908},{},[909],{"type":49,"value":910},"No copyrighted characters or copyrighted music.",{"type":43,"tag":86,"props":912,"children":913},{},[914],{"type":49,"value":915},"No real people (including public figures).",{"type":43,"tag":86,"props":917,"children":918},{},[919],{"type":49,"value":920},"Input images with human faces are rejected.",{"type":43,"tag":86,"props":922,"children":923},{},[924],{"type":49,"value":925},"Character uploads in this skill are for non-human subjects only.",{"type":43,"tag":75,"props":927,"children":929},{"id":928},"prompt-augmentation",[930],{"type":49,"value":931},"Prompt augmentation",{"type":43,"tag":52,"props":933,"children":934},{},[935],{"type":49,"value":936},"Reformat prompts into a structured, production-oriented spec. Only make implicit details explicit; do not invent new creative requirements.",{"type":43,"tag":52,"props":938,"children":939},{},[940],{"type":49,"value":941},"Template (include only relevant lines):",{"type":43,"tag":943,"props":944,"children":948},"pre",{"className":945,"code":947,"language":49},[946],"language-text","Use case: \u003Cwhere the clip will be used>\nPrimary request: \u003Cuser's main prompt>\nScene\u002Fbackground: \u003Clocation, time of day, atmosphere>\nSubject: \u003Cmain subject>\nAction: \u003Csingle clear action>\nCamera: \u003Cshot type, angle, motion>\nLighting\u002Fmood: \u003Clighting + mood>\nColor palette: \u003C3-5 color anchors>\nStyle\u002Fformat: \u003Cfilm\u002Fanimation\u002Fformat cues>\nTiming\u002Fbeats: \u003Ccounts or beats>\nAudio: \u003Cambient cue \u002F music \u002F voiceover if requested>\nText (verbatim): \"\u003Cexact text>\"\nDialogue:\n\u003Cdialogue>\n- Speaker: \"Short line.\"\n\u003C\u002Fdialogue>\nConstraints: \u003Cmust keep\u002Fmust avoid>\nAvoid: \u003Cnegative constraints>\n",[949],{"type":43,"tag":58,"props":950,"children":952},{"__ignoreMap":951},"",[953],{"type":49,"value":947},{"type":43,"tag":52,"props":955,"children":956},{},[957],{"type":49,"value":958},"Augmentation rules:",{"type":43,"tag":82,"props":960,"children":961},{},[962,967,972,977,982],{"type":43,"tag":86,"props":963,"children":964},{},[965],{"type":49,"value":966},"Keep it short; add only details the user already implied or provided elsewhere.",{"type":43,"tag":86,"props":968,"children":969},{},[970],{"type":49,"value":971},"For edits, explicitly list invariants (\"same shot, change only X\").",{"type":43,"tag":86,"props":973,"children":974},{},[975],{"type":49,"value":976},"For character-based shots, mention the character name verbatim in the prompt.",{"type":43,"tag":86,"props":978,"children":979},{},[980],{"type":49,"value":981},"If any critical detail is missing and blocks success, ask a question; otherwise proceed.",{"type":43,"tag":86,"props":983,"children":984},{},[985,987,992],{"type":49,"value":986},"If you pass a structured prompt file to the CLI, add ",{"type":43,"tag":58,"props":988,"children":990},{"className":989},[],[991],{"type":49,"value":282},{"type":49,"value":993}," to avoid the tool re-wrapping it.",{"type":43,"tag":75,"props":995,"children":997},{"id":996},"examples",[998],{"type":49,"value":999},"Examples",{"type":43,"tag":1001,"props":1002,"children":1004},"h3",{"id":1003},"generation-example-single-shot",[1005],{"type":49,"value":1006},"Generation example (single shot)",{"type":43,"tag":943,"props":1008,"children":1011},{"className":1009,"code":1010,"language":49},[946],"Use case: product teaser\nPrimary request: a close-up of a matte black camera on a pedestal\nAction: slow 30-degree orbit over 4 seconds\nCamera: 85mm, shallow depth of field, gentle handheld drift\nLighting\u002Fmood: soft key light, subtle rim, premium studio feel\nConstraints: no logos, no text\n",[1012],{"type":43,"tag":58,"props":1013,"children":1014},{"__ignoreMap":951},[1015],{"type":49,"value":1010},{"type":43,"tag":1001,"props":1017,"children":1019},{"id":1018},"edit-example-invariants",[1020],{"type":49,"value":1021},"Edit example (invariants)",{"type":43,"tag":943,"props":1023,"children":1026},{"className":1024,"code":1025,"language":49},[946],"Primary request: same shot and framing, switch palette to teal\u002Fsand\u002Frust with warmer backlight\nConstraints: keep the subject and camera move unchanged\n",[1027],{"type":43,"tag":58,"props":1028,"children":1029},{"__ignoreMap":951},[1030],{"type":49,"value":1025},{"type":43,"tag":1001,"props":1032,"children":1034},{"id":1033},"character-consistency-example",[1035],{"type":49,"value":1036},"Character consistency example",{"type":43,"tag":943,"props":1038,"children":1041},{"className":1039,"code":1040,"language":49},[946],"Primary request: Mossy, a moss-covered teapot mascot, hurries through a lantern-lit market at dusk\nCamera: cinematic tracking shot, 35mm, shoulder height\nLighting\u002Fmood: warm dusk practicals, soft haze\nConstraints: keep Mossy’s silhouette and moss texture consistent across the shot\n",[1042],{"type":43,"tag":58,"props":1043,"children":1044},{"__ignoreMap":951},[1045],{"type":49,"value":1040},{"type":43,"tag":75,"props":1047,"children":1049},{"id":1048},"prompting-best-practices-short-list",[1050],{"type":49,"value":1051},"Prompting best practices (short list)",{"type":43,"tag":82,"props":1053,"children":1054},{},[1055,1060,1065,1070,1075,1080,1085,1090,1095,1114],{"type":43,"tag":86,"props":1056,"children":1057},{},[1058],{"type":49,"value":1059},"One main action + one camera move per shot.",{"type":43,"tag":86,"props":1061,"children":1062},{},[1063],{"type":49,"value":1064},"Use counts or beats for timing (\"two steps, pause, turn\").",{"type":43,"tag":86,"props":1066,"children":1067},{},[1068],{"type":49,"value":1069},"Keep text short and the camera locked-off for UI or on-screen text.",{"type":43,"tag":86,"props":1071,"children":1072},{},[1073],{"type":49,"value":1074},"Add a brief avoid line when artifacts appear (flicker, jitter, fast motion).",{"type":43,"tag":86,"props":1076,"children":1077},{},[1078],{"type":49,"value":1079},"Shorter prompts are more creative; longer prompts are more controlled.",{"type":43,"tag":86,"props":1081,"children":1082},{},[1083],{"type":49,"value":1084},"Put dialogue in a dedicated block; keep lines short for 4-8s clips.",{"type":43,"tag":86,"props":1086,"children":1087},{},[1088],{"type":49,"value":1089},"Mention character names verbatim when using uploaded character IDs.",{"type":43,"tag":86,"props":1091,"children":1092},{},[1093],{"type":49,"value":1094},"State invariants explicitly for edits (same shot, same camera move).",{"type":43,"tag":86,"props":1096,"children":1097},{},[1098,1100,1105,1107,1112],{"type":49,"value":1099},"Prefer ",{"type":43,"tag":58,"props":1101,"children":1103},{"className":1102},[],[1104],{"type":49,"value":157},{"type":49,"value":1106}," for targeted changes and ",{"type":43,"tag":58,"props":1108,"children":1110},{"className":1109},[],[1111],{"type":49,"value":146},{"type":49,"value":1113}," for timeline continuation.",{"type":43,"tag":86,"props":1115,"children":1116},{},[1117],{"type":49,"value":1118},"Iterate with single-change follow-ups to preserve continuity.",{"type":43,"tag":75,"props":1120,"children":1122},{"id":1121},"guidance-by-asset-type",[1123],{"type":49,"value":1124},"Guidance by asset type",{"type":43,"tag":52,"props":1126,"children":1127},{},[1128],{"type":49,"value":1129},"Use these modules when the request is for a specific artifact. They provide targeted templates and defaults.",{"type":43,"tag":82,"props":1131,"children":1132},{},[1133,1144],{"type":43,"tag":86,"props":1134,"children":1135},{},[1136,1138],{"type":49,"value":1137},"Cinematic shots: ",{"type":43,"tag":58,"props":1139,"children":1141},{"className":1140},[],[1142],{"type":49,"value":1143},"references\u002Fcinematic-shots.md",{"type":43,"tag":86,"props":1145,"children":1146},{},[1147,1149],{"type":49,"value":1148},"Social ads: ",{"type":43,"tag":58,"props":1150,"children":1152},{"className":1151},[],[1153],{"type":49,"value":1154},"references\u002Fsocial-ads.md",{"type":43,"tag":75,"props":1156,"children":1158},{"id":1157},"cli-environment-notes",[1159],{"type":49,"value":1160},"CLI + environment notes",{"type":43,"tag":82,"props":1162,"children":1163},{},[1164,1175,1185,1196,1207,1218],{"type":43,"tag":86,"props":1165,"children":1166},{},[1167,1169],{"type":49,"value":1168},"CLI commands + examples: ",{"type":43,"tag":58,"props":1170,"children":1172},{"className":1171},[],[1173],{"type":49,"value":1174},"references\u002Fcli.md",{"type":43,"tag":86,"props":1176,"children":1177},{},[1178,1180],{"type":49,"value":1179},"API parameter quick reference: ",{"type":43,"tag":58,"props":1181,"children":1183},{"className":1182},[],[1184],{"type":49,"value":208},{"type":43,"tag":86,"props":1186,"children":1187},{},[1188,1190],{"type":49,"value":1189},"Prompting guidance: ",{"type":43,"tag":58,"props":1191,"children":1193},{"className":1192},[],[1194],{"type":49,"value":1195},"references\u002Fprompting.md",{"type":43,"tag":86,"props":1197,"children":1198},{},[1199,1201],{"type":49,"value":1200},"Sample prompts: ",{"type":43,"tag":58,"props":1202,"children":1204},{"className":1203},[],[1205],{"type":49,"value":1206},"references\u002Fsample-prompts.md",{"type":43,"tag":86,"props":1208,"children":1209},{},[1210,1212],{"type":49,"value":1211},"Troubleshooting: ",{"type":43,"tag":58,"props":1213,"children":1215},{"className":1214},[],[1216],{"type":49,"value":1217},"references\u002Ftroubleshooting.md",{"type":43,"tag":86,"props":1219,"children":1220},{},[1221,1223],{"type":49,"value":1222},"Network\u002Fsandbox tips: ",{"type":43,"tag":58,"props":1224,"children":1226},{"className":1225},[],[1227],{"type":49,"value":1228},"references\u002Fcodex-network.md",{"type":43,"tag":75,"props":1230,"children":1232},{"id":1231},"reference-map",[1233],{"type":49,"value":1234},"Reference map",{"type":43,"tag":82,"props":1236,"children":1237},{},[1238,1257,1270,1283,1296,1309,1322,1335],{"type":43,"tag":86,"props":1239,"children":1240},{},[1241,1249,1251,1256],{"type":43,"tag":660,"props":1242,"children":1243},{},[1244],{"type":43,"tag":58,"props":1245,"children":1247},{"className":1246},[],[1248],{"type":49,"value":1174},{"type":49,"value":1250},": how to run create\u002Fedit\u002Fextend\u002Fcreate-character\u002Fpoll\u002Fdownload\u002Flocal-queue flows via ",{"type":43,"tag":58,"props":1252,"children":1254},{"className":1253},[],[1255],{"type":49,"value":295},{"type":49,"value":284},{"type":43,"tag":86,"props":1258,"children":1259},{},[1260,1268],{"type":43,"tag":660,"props":1261,"children":1262},{},[1263],{"type":43,"tag":58,"props":1264,"children":1266},{"className":1265},[],[1267],{"type":49,"value":208},{"type":49,"value":1269},": API-level knobs (models, sizes, duration, characters, edits, extensions, official Batch API).",{"type":43,"tag":86,"props":1271,"children":1272},{},[1273,1281],{"type":43,"tag":660,"props":1274,"children":1275},{},[1276],{"type":43,"tag":58,"props":1277,"children":1279},{"className":1278},[],[1280],{"type":49,"value":1195},{"type":49,"value":1282},": prompt structure, character continuity, editing, and extension guidance.",{"type":43,"tag":86,"props":1284,"children":1285},{},[1286,1294],{"type":43,"tag":660,"props":1287,"children":1288},{},[1289],{"type":43,"tag":58,"props":1290,"children":1292},{"className":1291},[],[1293],{"type":49,"value":1206},{"type":49,"value":1295},": copy\u002Fpaste prompt recipes (examples only; no extra theory).",{"type":43,"tag":86,"props":1297,"children":1298},{},[1299,1307],{"type":43,"tag":660,"props":1300,"children":1301},{},[1302],{"type":43,"tag":58,"props":1303,"children":1305},{"className":1304},[],[1306],{"type":49,"value":1143},{"type":49,"value":1308},": templates for filmic shots.",{"type":43,"tag":86,"props":1310,"children":1311},{},[1312,1320],{"type":43,"tag":660,"props":1313,"children":1314},{},[1315],{"type":43,"tag":58,"props":1316,"children":1318},{"className":1317},[],[1319],{"type":49,"value":1154},{"type":49,"value":1321},": templates for short social ad beats.",{"type":43,"tag":86,"props":1323,"children":1324},{},[1325,1333],{"type":43,"tag":660,"props":1326,"children":1327},{},[1328],{"type":43,"tag":58,"props":1329,"children":1331},{"className":1330},[],[1332],{"type":49,"value":1217},{"type":49,"value":1334},": common errors and fixes.",{"type":43,"tag":86,"props":1336,"children":1337},{},[1338,1346],{"type":43,"tag":660,"props":1339,"children":1340},{},[1341],{"type":43,"tag":58,"props":1342,"children":1344},{"className":1343},[],[1345],{"type":49,"value":1228},{"type":49,"value":1347},": network\u002Fapproval troubleshooting.",{"items":1349,"total":1471},[1350,1367,1384,1400,1415,1438,1455],{"slug":1351,"name":1351,"fn":1352,"description":1353,"org":1354,"tags":1355,"stars":22,"repoUrl":23,"updatedAt":1366},"algorithmic-art","create generative art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1356,1357,1360,1363],{"name":13,"slug":14,"type":15},{"name":1358,"slug":1359,"type":15},"Generative Art","generative-art",{"name":1361,"slug":1362,"type":15},"Graphics","graphics",{"name":1364,"slug":1365,"type":15},"JavaScript","javascript","2026-07-13T06:41:35.540127",{"slug":1368,"name":1368,"fn":1369,"description":1370,"org":1371,"tags":1372,"stars":22,"repoUrl":23,"updatedAt":1383},"antfu","configure JavaScript projects with Anthony Fu's tools","Anthony Fu's opinionated tooling and conventions for JavaScript\u002FTypeScript projects. Use when setting up new projects, configuring ESLint\u002FPrettier alternatives, monorepos, library publishing, or when the user mentions Anthony Fu's preferences.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1373,1376,1379,1380],{"name":1374,"slug":1375,"type":15},"Best Practices","best-practices",{"name":1377,"slug":1378,"type":15},"Engineering","engineering",{"name":1364,"slug":1365,"type":15},{"name":1381,"slug":1382,"type":15},"TypeScript","typescript","2026-07-13T06:43:13.153309",{"slug":1385,"name":1385,"fn":1386,"description":1387,"org":1388,"tags":1389,"stars":22,"repoUrl":23,"updatedAt":1399},"brand-guidelines","apply Anthropic brand guidelines","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1390,1393,1396],{"name":1391,"slug":1392,"type":15},"Branding","branding",{"name":1394,"slug":1395,"type":15},"Design","design",{"name":1397,"slug":1398,"type":15},"Typography","typography","2026-07-13T06:43:06.077629",{"slug":1401,"name":1401,"fn":1402,"description":1403,"org":1404,"tags":1405,"stars":22,"repoUrl":23,"updatedAt":1414},"canvas-design","create visual art and design assets","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1406,1407,1408,1411],{"name":13,"slug":14,"type":15},{"name":1394,"slug":1395,"type":15},{"name":1409,"slug":1410,"type":15},"Images","images",{"name":1412,"slug":1413,"type":15},"PDF","pdf","2026-07-13T06:39:58.803113",{"slug":1416,"name":1416,"fn":1417,"description":1418,"org":1419,"tags":1420,"stars":22,"repoUrl":23,"updatedAt":1437},"ci-cd-containerization-advisor","design CI\u002FCD pipelines for Kotlin applications","Design reproducible build, image, and deployment pipelines for Kotlin plus Spring applications, including CI verification, layered containers, rollout safety, and deployment-time migration coordination. Use when creating or improving Dockerfiles, CI workflows, image hardening, Kubernetes manifests, release gates, or deployment strategies for Spring Boot services, especially where build reproducibility and operational safety matter.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1421,1424,1427,1430,1431,1434],{"name":1422,"slug":1423,"type":15},"CI\u002FCD","ci-cd",{"name":1425,"slug":1426,"type":15},"Containers","containers",{"name":1428,"slug":1429,"type":15},"Deployment","deployment",{"name":1377,"slug":1378,"type":15},{"name":1432,"slug":1433,"type":15},"Kotlin","kotlin",{"name":1435,"slug":1436,"type":15},"Spring","spring","2026-07-13T06:41:47.83899",{"slug":1439,"name":1439,"fn":1440,"description":1441,"org":1442,"tags":1443,"stars":22,"repoUrl":23,"updatedAt":1454},"cloudflare-deploy","deploy applications 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":9},[1444,1447,1450,1453],{"name":1445,"slug":1446,"type":15},"Cloudflare","cloudflare",{"name":1448,"slug":1449,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1451,"slug":1452,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1428,"slug":1429,"type":15},"2026-07-17T06:04:42.853896",{"slug":1456,"name":1456,"fn":1457,"description":1458,"org":1459,"tags":1460,"stars":22,"repoUrl":23,"updatedAt":1470},"compose-ui-control","interact with Compose Desktop applications","Control a running Compose Desktop application via HTTP. Use when you need to interact with UI elements, click buttons, enter text, wait for elements to appear, or capture screenshots in a Compose Desktop app that has compose-ui-test-server enabled.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1461,1464,1467],{"name":1462,"slug":1463,"type":15},"Automation","automation",{"name":1465,"slug":1466,"type":15},"Desktop","desktop",{"name":1468,"slug":1469,"type":15},"UI Components","ui-components","2026-07-13T06:40:38.798626",128,{"items":1473,"total":1598},[1474,1490,1499,1508,1519,1529,1538,1547,1556,1566,1575,1588],{"slug":1475,"name":1475,"fn":1476,"description":1477,"org":1478,"tags":1479,"stars":1487,"repoUrl":1488,"updatedAt":1489},"mps-aspect-accessories","configure JetBrains MPS module dependencies","Wire MPS module and model dependencies, used languages, used devkits, extended languages, runtime solutions, accessory models, and language\u002Fdependency versions. Use when adding\u002Fremoving module dependencies, importing languages or devkits into a model, declaring runtime solutions, or shipping accessory content visible to consumers without explicit import.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1480,1483,1486],{"name":1481,"slug":1482,"type":15},"Architecture","architecture",{"name":1484,"slug":1485,"type":15},"Configuration","configuration",{"name":1377,"slug":1378,"type":15},1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":1491,"name":1491,"fn":1492,"description":1493,"org":1494,"tags":1495,"stars":1487,"repoUrl":1488,"updatedAt":1498},"mps-aspect-actions","define and edit MPS node factories","Use when defining or editing MPS node factories (the \"actions\" aspect) — `NodeFactories` roots, per-concept `NodeFactory` setup functions that initialize a freshly created node and optionally copy data from a replaced `sampleNode`, plus the actions aspect's `CopyPasteHandlers` and `PasteWrappers` roots. Reach for this skill when a substitution, side transform, completion replacement, or `add new initialized(...)` should preserve fields from the node it is replacing, or when defaults set in a constructor are not enough.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1496,1497],{"name":1481,"slug":1482,"type":15},{"name":1377,"slug":1378,"type":15},"2026-07-17T06:04:48.066901",{"slug":1500,"name":1500,"fn":1501,"description":1502,"org":1503,"tags":1504,"stars":1487,"repoUrl":1488,"updatedAt":1507},"mps-aspect-behavior","define and edit MPS concept behavior","Use when defining or editing MPS `ConceptBehavior` — per-concept methods (non-virtual \u002F virtual \u002F abstract \u002F static \u002F virtual static), constructors, virtual dispatch (MRO), super and interface-default calls (`super\u003CInterface>.method`), overriding methods from `lang.core.behavior` interfaces such as `ScopeProvider.getScope` \u002F `INamedConcept.getName` \u002F `BaseConcept.getPresentation`, calling sibling methods (`LocalBehaviorMethodCall`) and behavior methods from other aspects via `node.method(...)`. Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fbehavior.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1505,1506],{"name":1481,"slug":1482,"type":15},{"name":1377,"slug":1378,"type":15},"2026-07-13T06:45:21.757084",{"slug":1509,"name":1509,"fn":1510,"description":1511,"org":1512,"tags":1513,"stars":1487,"repoUrl":1488,"updatedAt":1518},"mps-aspect-constraints","define JetBrains MPS language constraints","Use when defining or editing MPS language constraints — property validators \u002F setters \u002F getters, referent search scopes (imperative or inherited via `ScopeProvider.getScope`), `referentSetHandler` side effects, default-scope blocks, `canBeChild` \u002F `canBeParent` \u002F `canBeAncestor` \u002F `canBeRoot` placement rules, `defaultConcreteConcept` for abstract concepts, `set \u003Cread-only>` and `{name}` aliasing, and scope helpers (`SimpleRoleScope`, `ListScope`, `CompositeScope`, `HidingByNameScope`). Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fconstraints.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1514,1515],{"name":1481,"slug":1482,"type":15},{"name":1516,"slug":1517,"type":15},"Code Analysis","code-analysis","2026-07-23T05:41:33.639365",{"slug":1520,"name":1520,"fn":1521,"description":1522,"org":1523,"tags":1524,"stars":1487,"repoUrl":1488,"updatedAt":1528},"mps-aspect-dataflow","define and debug MPS dataflow builders","Use when defining or debugging MPS dataflow builders for a concept — control\u002Fdata flow declarations that drive reachability analysis and variable-use checking. Covers DataFlowBuilderDeclaration, BuilderBlock, emit instructions (code for, jump, ifjump, label, read, write, ret, mayBeUnreachable), positions (AfterPosition, BeforePosition, LabelPosition), the jetbrains.mps.lang.dataFlow language, the NodeParameter implicit, BL+smodel usage inside builder bodies, and IBuilderMode for advanced analyses such as nullable\u002Fnon-null tracking.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1525],{"name":1526,"slug":1527,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":1530,"name":1530,"fn":1531,"description":1532,"org":1533,"tags":1534,"stars":1487,"repoUrl":1488,"updatedAt":1537},"mps-aspect-editor","define MPS editor layouts","Use when creating or changing MPS editor definitions — the overall workflow from scaffolding a `ConceptEditorDeclaration` through componentizing reusable `EditorComponentDeclaration`s, refining cell models and cell layouts, applying style sheets and indent-layout style items, wiring smart references, leveraging inheritance via super-concepts and interfaces, inspecting (`print_node_json`, `show_node_representation`) and validating (`check_root_node_problems`). Covers `jetbrains.mps.lang.editor` cell models (`CellModel_RefNode`\u002F`CellModel_RefNodeList`\u002F`CellModel_RefCell`\u002F`CellModel_Property`\u002F`CellModel_Constant`), layout choices, and JSON blueprints for common editor shapes. For the non-layout side (action maps, keymaps, transformation\u002Fsubstitute menus) use `mps-aspect-editor-menus-and-keymaps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1535,1536],{"name":1394,"slug":1395,"type":15},{"name":1468,"slug":1469,"type":15},"2026-07-23T05:41:56.638151",{"slug":1539,"name":1539,"fn":1540,"description":1541,"org":1542,"tags":1543,"stars":1487,"repoUrl":1488,"updatedAt":1546},"mps-aspect-editor-menus-and-keymaps","author MPS editor menus and keymaps","Use when authoring the **non-layout** parts of the MPS editor aspect — what happens when the user types, presses a key, triggers completion, pastes, or invokes a context action. Covers action maps (`CellActionMapDeclaration`), cell keymaps (`CellKeyMapDeclaration`), transformation menus (`TransformationMenu_Default` \u002F `_Named` \u002F `_Contribution`), substitute menus (`SubstituteMenu_Default` \u002F `SubstituteMenu` \u002F contributions), side transforms (LEFT\u002FRIGHT), legacy cell menus, paste wrappers and copy-paste handlers (in the actions language), completion styling, reference presentation, two-step deletion, and the editor selection API. Trigger terms: `actionMap`, `keyMap`, `delete_action_id`, `transformationMenu`, `substituteMenu`, `Ctrl+Space`, `Ctrl+Alt+B`, side transform, paste wrapper, completion styling, `PasteWrappers`, `CopyPasteHandlers`. For the **layout** side (cells, layouts, style sheets) use `mps-aspect-editor` instead.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1544,1545],{"name":1377,"slug":1378,"type":15},{"name":1468,"slug":1469,"type":15},"2026-07-23T05:41:49.666535",{"slug":1548,"name":1548,"fn":1549,"description":1550,"org":1551,"tags":1552,"stars":1487,"repoUrl":1488,"updatedAt":1555},"mps-aspect-generation-plan","modify MPS generation plans","Use when defining or modifying an MPS generation plan — explicit ordering of generators, checkpoints for cross-model reference resolution, forks for parallel branches, IncludePlan composition, conditional PlanContribution activation, ParameterEquals\u002FConceptListSelector fork selectors, and InitModelAttributes for targetFacet routing. Apply when working with @genplan models, the jetbrains.mps.lang.generator.plan language, attaching plans via DevKits or the Custom generation facet, or debugging cross-model mapping label resolution.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1553,1554],{"name":1481,"slug":1482,"type":15},{"name":1377,"slug":1378,"type":15},"2026-07-13T06:44:59.507855",{"slug":1557,"name":1557,"fn":1558,"description":1559,"org":1560,"tags":1561,"stars":1487,"repoUrl":1488,"updatedAt":1565},"mps-aspect-generator","define JetBrains MPS generator rules","Use when defining or modifying MPS generators — author a generator module, add or edit root\u002Freduction\u002Fweaving\u002Fpattern mapping rules, attach template macros ($COPY_SRC, $LOOP, $IF, $PROPERTY, $REF, $SWITCH, $MAP_SRC, $WEAVE, $INSERT, $LABEL, $TRACE, $VAR), wire mapping labels, build template switches, write pre\u002Fpost mapping scripts, navigate `genContext`, or debug \"rule didn't fire\", missing references, empty output, infinite reduction loops, and generated-Java compile failures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1562,1563,1564],{"name":1481,"slug":1482,"type":15},{"name":1516,"slug":1517,"type":15},{"name":1377,"slug":1378,"type":15},"2026-07-17T06:06:58.042999",{"slug":1567,"name":1567,"fn":1568,"description":1569,"org":1570,"tags":1571,"stars":1487,"repoUrl":1488,"updatedAt":1574},"mps-aspect-intentions","define and edit MPS intentions","Use when defining or editing MPS intentions (the Alt+Enter context-action aspect) — adding `IntentionDeclaration` roots, parameterized or surround-with variants, description\u002FisApplicable\u002Fexecute blocks, child-filter functions, factory-initialized AST splicing, or debugging why an intention is not offered. Lives in the language's `intentions` model and uses `jetbrains.mps.lang.intentions`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1572,1573],{"name":1481,"slug":1482,"type":15},{"name":1377,"slug":1378,"type":15},"2026-07-23T05:41:48.692899",{"slug":1576,"name":1576,"fn":1577,"description":1578,"org":1579,"tags":1580,"stars":1487,"repoUrl":1488,"updatedAt":1587},"mps-aspect-migrations","author and debug MPS migration scripts","Use when authoring or debugging MPS migration scripts that upgrade user models after a language definition changes — covers jetbrains.mps.lang.migration (MigrationScript class-based, PureMigrationScript declarative, MoveConcept\u002FMoveContainmentLink\u002FMoveReferenceLink\u002FMoveProperty, ordering via OrderDependency, data exchange via putData\u002FgetData, RefactoringLog, ConceptMigrationReference) and jetbrains.mps.lang.script Enhancement Scripts (MigrationScript with MigrationScriptPart_Instance, ExtractInterfaceMigration, FactoryMigrationScriptPart, CommentMigrationScriptPart) — when a model needs version-gated upgrade, concept rename or removal, link or property rename, instance-level transformation, or composition of migration steps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1581,1584],{"name":1582,"slug":1583,"type":15},"Debugging","debugging",{"name":1585,"slug":1586,"type":15},"Migration","migration","2026-07-13T06:45:20.372122",{"slug":1589,"name":1589,"fn":1590,"description":1591,"org":1592,"tags":1593,"stars":1487,"repoUrl":1488,"updatedAt":1597},"mps-aspect-structure-concepts","define concepts in MPS structure aspect","Define concepts, interface concepts, enumerations, and constrained data types in an MPS language's `structure` aspect. Covers smart-reference detection, alias rules, cardinality, INamedConcept usage, bulk creation, and the full `mps_mcp_alter_structure` \u002F `mps_mcp_query_structure` reference. Use when authoring or modifying a language's structure model.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1594],{"name":1595,"slug":1596,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188]