[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-temporal-developer":3,"mdc-nipdto-key":36,"related-repo-openai-temporal-developer":886,"related-org-openai-temporal-developer":1010},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"temporal-developer","develop and manage Temporal applications","Develop, debug, and manage Temporal applications across Python, TypeScript, Go, and Java. Use when the user is building workflows, activities, or workers with a Temporal SDK, debugging issues like non-determinism errors, stuck workflows, or activity retries, using Temporal CLI, Temporal Server, or Temporal Cloud, or working with durable execution concepts like signals, queries, heartbeats, versioning, continue-as-new, child workflows, or saga patterns.",{"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,22],{"name":13,"slug":14,"type":15},"Backend","backend","tag",{"name":17,"slug":18,"type":15},"Temporal","temporal",{"name":20,"slug":21,"type":15},"Distributed Tracing","distributed-tracing",{"name":23,"slug":24,"type":15},"Workflow Automation","workflow-automation",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-24T05:14:26.432033",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Ftemporal\u002Fskills\u002Ftemporal-developer","---\nname: temporal-developer\ndescription: Develop, debug, and manage Temporal applications across Python, TypeScript, Go, and Java. Use when the user is building workflows, activities, or workers with a Temporal SDK, debugging issues like non-determinism errors, stuck workflows, or activity retries, using Temporal CLI, Temporal Server, or Temporal Cloud, or working with durable execution concepts like signals, queries, heartbeats, versioning, continue-as-new, child workflows, or saga patterns.\n---\n\n# Skill: temporal-developer\n\n## Overview\n\nTemporal is a durable execution platform that makes workflows survive failures automatically. This skill provides guidance for building Temporal applications in Python, TypeScript, Go, and Java.\n\n## Core Architecture\n\nThe **Temporal Cluster** is the central orchestration backend. It maintains three key subsystems: the **Event History** (a durable log of all workflow state), **Task Queues** (which route work to the right workers), and a **Visibility** store (for searching and listing workflows). There are three ways to run a Cluster:\n\n- **Temporal CLI dev server** — a local, single-process server started with `temporal server start-dev`. Suitable for development and testing only, not production.\n- **Self-hosted** — you deploy and manage the Temporal server and its dependencies (e.g., database) in your own infrastructure for production use.\n- **Temporal Cloud** — a fully managed production service operated by Temporal. No cluster infrastructure to manage.\n\n**Workers** are long-running processes that you run and manage. They poll Task Queues for work and execute your code. You might run a single Worker process on one machine during development, or run many Worker processes across a large fleet of machines in production. Each Worker hosts two types of code:\n\n- **Workflow Definitions** — durable, deterministic functions that orchestrate work. These must not have side effects.\n- **Activity Implementations** — non-deterministic operations (API calls, file I\u002FO, etc.) that can fail and be retried.\n\nWorkers communicate with the Cluster via a poll\u002Fcomplete loop: they poll a Task Queue for tasks, execute the corresponding Workflow or Activity code, and report results back.\n\n## History Replay: Why Determinism Matters\n\nTemporal achieves durability through **history replay**:\n\n1. **Initial Execution** - Worker runs workflow, generates Commands, stored as Events in history\n2. **Recovery** - On restart\u002Ffailure, Worker re-executes workflow from beginning\n3. **Matching** - SDK compares generated Commands against stored Events\n4. **Restoration** - Uses stored Activity results instead of re-executing\n\n**If Commands don't match Events = Non-determinism Error = Workflow blocked**\n\n| Workflow Code | Command | Event |\n|--------------|---------|-------|\n| Execute activity | `ScheduleActivityTask` | `ActivityTaskScheduled` |\n| Sleep\u002Ftimer | `StartTimer` | `TimerStarted` |\n| Child workflow | `StartChildWorkflowExecution` | `ChildWorkflowExecutionStarted` |\n\nSee `references\u002Fcore\u002Fdeterminism.md` for detailed explanation.\n\n## Getting Started\n\n### Ensure Temporal CLI is installed\n\nCheck if `temporal` CLI is installed. If not, follow these instructions:\n\n#### macOS\n\n```\nbrew install temporal\n```\n\n#### Linux\n\nCheck your machine's architecture and download the appropriate archive:\n\n- [Linux amd64](https:\u002F\u002Ftemporal.download\u002Fcli\u002Farchive\u002Flatest?platform=linux&arch=amd64)\n- [Linux arm64](https:\u002F\u002Ftemporal.download\u002Fcli\u002Farchive\u002Flatest?platform=linux&arch=arm64)\n\nOnce you've downloaded the file, extract the downloaded archive and add the temporal binary to your PATH by copying it to a directory like \u002Fusr\u002Flocal\u002Fbin\n\n#### Windows\n\nCheck your machine's architecture and download the appropriate archive:\n\n- [Windows amd64](https:\u002F\u002Ftemporal.download\u002Fcli\u002Farchive\u002Flatest?platform=windows&arch=amd64)\n- [Windows arm64](https:\u002F\u002Ftemporal.download\u002Fcli\u002Farchive\u002Flatest?platform=windows&arch=arm64)\n\nOnce you've downloaded the file, extract the downloaded archive and add the temporal.exe binary to your PATH.\n\n### Read All Relevant References\n\n1. First, read the getting started guide for the language you are working in:\n    - Python -> read `references\u002Fpython\u002Fpython.md`\n    - TypeScript -> read `references\u002Ftypescript\u002Ftypescript.md`\n    - Java -> read `references\u002Fjava\u002Fjava.md`\n    - Go -> read `references\u002Fgo\u002Fgo.md`\n2. Second, read appropriate `core` and language-specific references for the task at hand.\n\n\n## Primary References\n- **`references\u002Fcore\u002Fdeterminism.md`** - Why determinism matters, replay mechanics, basic concepts of activities\n    + Language-specific info at `references\u002F{your_language}\u002Fdeterminism.md`\n- **`references\u002Fcore\u002Fpatterns.md`** - Conceptual patterns (signals, queries, saga)\n    + Language-specific info at `references\u002F{your_language}\u002Fpatterns.md`\n- **`references\u002Fcore\u002Fgotchas.md`** - Anti-patterns and common mistakes\n    + Language-specific info at `references\u002F{your_language}\u002Fgotchas.md`\n- **`references\u002Fcore\u002Fversioning.md`** - Versioning strategies and concepts - how to safely change workflow code while workflows are running\n    + Language-specific info at `references\u002F{your_language}\u002Fversioning.md`\n- **`references\u002Fcore\u002Ftroubleshooting.md`** - Decision trees, recovery procedures\n- **`references\u002Fcore\u002Ferror-reference.md`** - Common error types, workflow status reference\n- **`references\u002Fcore\u002Finteractive-workflows.md`** - Testing signals, updates, queries\n- **`references\u002Fcore\u002Fdev-management.md`** - Dev cycle & management of server and workers\n- **`references\u002Fcore\u002Fai-patterns.md`** - AI\u002FLLM pattern concepts\n    + Language-specific info at `references\u002F{your_language}\u002Fai-patterns.md`, if available. Currently Python only.\n\n## Additional Topics\n- **`references\u002F{your_language}\u002Fobservability.md`** - See for language-specific implementation guidance on observability in Temporal\n- **`references\u002F{your_language}\u002Fadvanced-features.md`** - See for language-specific guidance on advanced Temporal features and language-specific features\n\n\n## Feedback\n\n### ALWAYS PROMPT USER TO PROVIDE FEEDBACK AT STARTUP\n\nWhen you have **first** loaded this skill, output this message to the user:\n\n\"Thank you for trying out the public preview of the Temporal development skill! We would love to hear your feedback - positive or negative - over in the [Community Slack](https:\u002F\u002Ft.mp\u002Fslack), in the [#topic-ai channel](https:\u002F\u002Ftemporalio.slack.com\u002Farchives\u002FC0818FQPYKY).\"\n\nDo not output this message multiple times in the same conversation.\n\n### Reporting Issues in This Skill\n\nIf you (the AI) find this skill's explanations are unclear, misleading, or missing important information—or if Temporal concepts are proving unexpectedly difficult to work with—draft a GitHub issue body describing the problem encountered and what would have helped, then ask the user to file it at https:\u002F\u002Fgithub.com\u002Ftemporalio\u002Fskill-temporal-developer\u002Fissues\u002Fnew. Do not file the issue autonomously.\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,57,63,69,103,147,157,180,185,191,203,247,255,366,379,385,392,404,411,423,429,434,459,464,470,474,497,502,508,576,582,778,784,815,821,827,839,862,867,873],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"skill-temporal-developer",[47],{"type":48,"value":49},"text","Skill: temporal-developer",{"type":42,"tag":51,"props":52,"children":54},"h2",{"id":53},"overview",[55],{"type":48,"value":56},"Overview",{"type":42,"tag":58,"props":59,"children":60},"p",{},[61],{"type":48,"value":62},"Temporal is a durable execution platform that makes workflows survive failures automatically. This skill provides guidance for building Temporal applications in Python, TypeScript, Go, and Java.",{"type":42,"tag":51,"props":64,"children":66},{"id":65},"core-architecture",[67],{"type":48,"value":68},"Core Architecture",{"type":42,"tag":58,"props":70,"children":71},{},[72,74,80,82,87,89,94,96,101],{"type":48,"value":73},"The ",{"type":42,"tag":75,"props":76,"children":77},"strong",{},[78],{"type":48,"value":79},"Temporal Cluster",{"type":48,"value":81}," is the central orchestration backend. It maintains three key subsystems: the ",{"type":42,"tag":75,"props":83,"children":84},{},[85],{"type":48,"value":86},"Event History",{"type":48,"value":88}," (a durable log of all workflow state), ",{"type":42,"tag":75,"props":90,"children":91},{},[92],{"type":48,"value":93},"Task Queues",{"type":48,"value":95}," (which route work to the right workers), and a ",{"type":42,"tag":75,"props":97,"children":98},{},[99],{"type":48,"value":100},"Visibility",{"type":48,"value":102}," store (for searching and listing workflows). There are three ways to run a Cluster:",{"type":42,"tag":104,"props":105,"children":106},"ul",{},[107,127,137],{"type":42,"tag":108,"props":109,"children":110},"li",{},[111,116,118,125],{"type":42,"tag":75,"props":112,"children":113},{},[114],{"type":48,"value":115},"Temporal CLI dev server",{"type":48,"value":117}," — a local, single-process server started with ",{"type":42,"tag":119,"props":120,"children":122},"code",{"className":121},[],[123],{"type":48,"value":124},"temporal server start-dev",{"type":48,"value":126},". Suitable for development and testing only, not production.",{"type":42,"tag":108,"props":128,"children":129},{},[130,135],{"type":42,"tag":75,"props":131,"children":132},{},[133],{"type":48,"value":134},"Self-hosted",{"type":48,"value":136}," — you deploy and manage the Temporal server and its dependencies (e.g., database) in your own infrastructure for production use.",{"type":42,"tag":108,"props":138,"children":139},{},[140,145],{"type":42,"tag":75,"props":141,"children":142},{},[143],{"type":48,"value":144},"Temporal Cloud",{"type":48,"value":146}," — a fully managed production service operated by Temporal. No cluster infrastructure to manage.",{"type":42,"tag":58,"props":148,"children":149},{},[150,155],{"type":42,"tag":75,"props":151,"children":152},{},[153],{"type":48,"value":154},"Workers",{"type":48,"value":156}," are long-running processes that you run and manage. They poll Task Queues for work and execute your code. You might run a single Worker process on one machine during development, or run many Worker processes across a large fleet of machines in production. Each Worker hosts two types of code:",{"type":42,"tag":104,"props":158,"children":159},{},[160,170],{"type":42,"tag":108,"props":161,"children":162},{},[163,168],{"type":42,"tag":75,"props":164,"children":165},{},[166],{"type":48,"value":167},"Workflow Definitions",{"type":48,"value":169}," — durable, deterministic functions that orchestrate work. These must not have side effects.",{"type":42,"tag":108,"props":171,"children":172},{},[173,178],{"type":42,"tag":75,"props":174,"children":175},{},[176],{"type":48,"value":177},"Activity Implementations",{"type":48,"value":179}," — non-deterministic operations (API calls, file I\u002FO, etc.) that can fail and be retried.",{"type":42,"tag":58,"props":181,"children":182},{},[183],{"type":48,"value":184},"Workers communicate with the Cluster via a poll\u002Fcomplete loop: they poll a Task Queue for tasks, execute the corresponding Workflow or Activity code, and report results back.",{"type":42,"tag":51,"props":186,"children":188},{"id":187},"history-replay-why-determinism-matters",[189],{"type":48,"value":190},"History Replay: Why Determinism Matters",{"type":42,"tag":58,"props":192,"children":193},{},[194,196,201],{"type":48,"value":195},"Temporal achieves durability through ",{"type":42,"tag":75,"props":197,"children":198},{},[199],{"type":48,"value":200},"history replay",{"type":48,"value":202},":",{"type":42,"tag":204,"props":205,"children":206},"ol",{},[207,217,227,237],{"type":42,"tag":108,"props":208,"children":209},{},[210,215],{"type":42,"tag":75,"props":211,"children":212},{},[213],{"type":48,"value":214},"Initial Execution",{"type":48,"value":216}," - Worker runs workflow, generates Commands, stored as Events in history",{"type":42,"tag":108,"props":218,"children":219},{},[220,225],{"type":42,"tag":75,"props":221,"children":222},{},[223],{"type":48,"value":224},"Recovery",{"type":48,"value":226}," - On restart\u002Ffailure, Worker re-executes workflow from beginning",{"type":42,"tag":108,"props":228,"children":229},{},[230,235],{"type":42,"tag":75,"props":231,"children":232},{},[233],{"type":48,"value":234},"Matching",{"type":48,"value":236}," - SDK compares generated Commands against stored Events",{"type":42,"tag":108,"props":238,"children":239},{},[240,245],{"type":42,"tag":75,"props":241,"children":242},{},[243],{"type":48,"value":244},"Restoration",{"type":48,"value":246}," - Uses stored Activity results instead of re-executing",{"type":42,"tag":58,"props":248,"children":249},{},[250],{"type":42,"tag":75,"props":251,"children":252},{},[253],{"type":48,"value":254},"If Commands don't match Events = Non-determinism Error = Workflow blocked",{"type":42,"tag":256,"props":257,"children":258},"table",{},[259,283],{"type":42,"tag":260,"props":261,"children":262},"thead",{},[263],{"type":42,"tag":264,"props":265,"children":266},"tr",{},[267,273,278],{"type":42,"tag":268,"props":269,"children":270},"th",{},[271],{"type":48,"value":272},"Workflow Code",{"type":42,"tag":268,"props":274,"children":275},{},[276],{"type":48,"value":277},"Command",{"type":42,"tag":268,"props":279,"children":280},{},[281],{"type":48,"value":282},"Event",{"type":42,"tag":284,"props":285,"children":286},"tbody",{},[287,314,340],{"type":42,"tag":264,"props":288,"children":289},{},[290,296,305],{"type":42,"tag":291,"props":292,"children":293},"td",{},[294],{"type":48,"value":295},"Execute activity",{"type":42,"tag":291,"props":297,"children":298},{},[299],{"type":42,"tag":119,"props":300,"children":302},{"className":301},[],[303],{"type":48,"value":304},"ScheduleActivityTask",{"type":42,"tag":291,"props":306,"children":307},{},[308],{"type":42,"tag":119,"props":309,"children":311},{"className":310},[],[312],{"type":48,"value":313},"ActivityTaskScheduled",{"type":42,"tag":264,"props":315,"children":316},{},[317,322,331],{"type":42,"tag":291,"props":318,"children":319},{},[320],{"type":48,"value":321},"Sleep\u002Ftimer",{"type":42,"tag":291,"props":323,"children":324},{},[325],{"type":42,"tag":119,"props":326,"children":328},{"className":327},[],[329],{"type":48,"value":330},"StartTimer",{"type":42,"tag":291,"props":332,"children":333},{},[334],{"type":42,"tag":119,"props":335,"children":337},{"className":336},[],[338],{"type":48,"value":339},"TimerStarted",{"type":42,"tag":264,"props":341,"children":342},{},[343,348,357],{"type":42,"tag":291,"props":344,"children":345},{},[346],{"type":48,"value":347},"Child workflow",{"type":42,"tag":291,"props":349,"children":350},{},[351],{"type":42,"tag":119,"props":352,"children":354},{"className":353},[],[355],{"type":48,"value":356},"StartChildWorkflowExecution",{"type":42,"tag":291,"props":358,"children":359},{},[360],{"type":42,"tag":119,"props":361,"children":363},{"className":362},[],[364],{"type":48,"value":365},"ChildWorkflowExecutionStarted",{"type":42,"tag":58,"props":367,"children":368},{},[369,371,377],{"type":48,"value":370},"See ",{"type":42,"tag":119,"props":372,"children":374},{"className":373},[],[375],{"type":48,"value":376},"references\u002Fcore\u002Fdeterminism.md",{"type":48,"value":378}," for detailed explanation.",{"type":42,"tag":51,"props":380,"children":382},{"id":381},"getting-started",[383],{"type":48,"value":384},"Getting Started",{"type":42,"tag":386,"props":387,"children":389},"h3",{"id":388},"ensure-temporal-cli-is-installed",[390],{"type":48,"value":391},"Ensure Temporal CLI is installed",{"type":42,"tag":58,"props":393,"children":394},{},[395,397,402],{"type":48,"value":396},"Check if ",{"type":42,"tag":119,"props":398,"children":400},{"className":399},[],[401],{"type":48,"value":18},{"type":48,"value":403}," CLI is installed. If not, follow these instructions:",{"type":42,"tag":405,"props":406,"children":408},"h4",{"id":407},"macos",[409],{"type":48,"value":410},"macOS",{"type":42,"tag":412,"props":413,"children":417},"pre",{"className":414,"code":416,"language":48},[415],"language-text","brew install temporal\n",[418],{"type":42,"tag":119,"props":419,"children":421},{"__ignoreMap":420},"",[422],{"type":48,"value":416},{"type":42,"tag":405,"props":424,"children":426},{"id":425},"linux",[427],{"type":48,"value":428},"Linux",{"type":42,"tag":58,"props":430,"children":431},{},[432],{"type":48,"value":433},"Check your machine's architecture and download the appropriate archive:",{"type":42,"tag":104,"props":435,"children":436},{},[437,449],{"type":42,"tag":108,"props":438,"children":439},{},[440],{"type":42,"tag":441,"props":442,"children":446},"a",{"href":443,"rel":444},"https:\u002F\u002Ftemporal.download\u002Fcli\u002Farchive\u002Flatest?platform=linux&arch=amd64",[445],"nofollow",[447],{"type":48,"value":448},"Linux amd64",{"type":42,"tag":108,"props":450,"children":451},{},[452],{"type":42,"tag":441,"props":453,"children":456},{"href":454,"rel":455},"https:\u002F\u002Ftemporal.download\u002Fcli\u002Farchive\u002Flatest?platform=linux&arch=arm64",[445],[457],{"type":48,"value":458},"Linux arm64",{"type":42,"tag":58,"props":460,"children":461},{},[462],{"type":48,"value":463},"Once you've downloaded the file, extract the downloaded archive and add the temporal binary to your PATH by copying it to a directory like \u002Fusr\u002Flocal\u002Fbin",{"type":42,"tag":405,"props":465,"children":467},{"id":466},"windows",[468],{"type":48,"value":469},"Windows",{"type":42,"tag":58,"props":471,"children":472},{},[473],{"type":48,"value":433},{"type":42,"tag":104,"props":475,"children":476},{},[477,487],{"type":42,"tag":108,"props":478,"children":479},{},[480],{"type":42,"tag":441,"props":481,"children":484},{"href":482,"rel":483},"https:\u002F\u002Ftemporal.download\u002Fcli\u002Farchive\u002Flatest?platform=windows&arch=amd64",[445],[485],{"type":48,"value":486},"Windows amd64",{"type":42,"tag":108,"props":488,"children":489},{},[490],{"type":42,"tag":441,"props":491,"children":494},{"href":492,"rel":493},"https:\u002F\u002Ftemporal.download\u002Fcli\u002Farchive\u002Flatest?platform=windows&arch=arm64",[445],[495],{"type":48,"value":496},"Windows arm64",{"type":42,"tag":58,"props":498,"children":499},{},[500],{"type":48,"value":501},"Once you've downloaded the file, extract the downloaded archive and add the temporal.exe binary to your PATH.",{"type":42,"tag":386,"props":503,"children":505},{"id":504},"read-all-relevant-references",[506],{"type":48,"value":507},"Read All Relevant References",{"type":42,"tag":204,"props":509,"children":510},{},[511,563],{"type":42,"tag":108,"props":512,"children":513},{},[514,516],{"type":48,"value":515},"First, read the getting started guide for the language you are working in:\n",{"type":42,"tag":104,"props":517,"children":518},{},[519,530,541,552],{"type":42,"tag":108,"props":520,"children":521},{},[522,524],{"type":48,"value":523},"Python -> read ",{"type":42,"tag":119,"props":525,"children":527},{"className":526},[],[528],{"type":48,"value":529},"references\u002Fpython\u002Fpython.md",{"type":42,"tag":108,"props":531,"children":532},{},[533,535],{"type":48,"value":534},"TypeScript -> read ",{"type":42,"tag":119,"props":536,"children":538},{"className":537},[],[539],{"type":48,"value":540},"references\u002Ftypescript\u002Ftypescript.md",{"type":42,"tag":108,"props":542,"children":543},{},[544,546],{"type":48,"value":545},"Java -> read ",{"type":42,"tag":119,"props":547,"children":549},{"className":548},[],[550],{"type":48,"value":551},"references\u002Fjava\u002Fjava.md",{"type":42,"tag":108,"props":553,"children":554},{},[555,557],{"type":48,"value":556},"Go -> read ",{"type":42,"tag":119,"props":558,"children":560},{"className":559},[],[561],{"type":48,"value":562},"references\u002Fgo\u002Fgo.md",{"type":42,"tag":108,"props":564,"children":565},{},[566,568,574],{"type":48,"value":567},"Second, read appropriate ",{"type":42,"tag":119,"props":569,"children":571},{"className":570},[],[572],{"type":48,"value":573},"core",{"type":48,"value":575}," and language-specific references for the task at hand.",{"type":42,"tag":51,"props":577,"children":579},{"id":578},"primary-references",[580],{"type":48,"value":581},"Primary References",{"type":42,"tag":104,"props":583,"children":584},{},[585,612,639,666,693,707,721,735,749],{"type":42,"tag":108,"props":586,"children":587},{},[588,596,598],{"type":42,"tag":75,"props":589,"children":590},{},[591],{"type":42,"tag":119,"props":592,"children":594},{"className":593},[],[595],{"type":48,"value":376},{"type":48,"value":597}," - Why determinism matters, replay mechanics, basic concepts of activities\n",{"type":42,"tag":104,"props":599,"children":600},{},[601],{"type":42,"tag":108,"props":602,"children":603},{},[604,606],{"type":48,"value":605},"Language-specific info at ",{"type":42,"tag":119,"props":607,"children":609},{"className":608},[],[610],{"type":48,"value":611},"references\u002F{your_language}\u002Fdeterminism.md",{"type":42,"tag":108,"props":613,"children":614},{},[615,624,626],{"type":42,"tag":75,"props":616,"children":617},{},[618],{"type":42,"tag":119,"props":619,"children":621},{"className":620},[],[622],{"type":48,"value":623},"references\u002Fcore\u002Fpatterns.md",{"type":48,"value":625}," - Conceptual patterns (signals, queries, saga)\n",{"type":42,"tag":104,"props":627,"children":628},{},[629],{"type":42,"tag":108,"props":630,"children":631},{},[632,633],{"type":48,"value":605},{"type":42,"tag":119,"props":634,"children":636},{"className":635},[],[637],{"type":48,"value":638},"references\u002F{your_language}\u002Fpatterns.md",{"type":42,"tag":108,"props":640,"children":641},{},[642,651,653],{"type":42,"tag":75,"props":643,"children":644},{},[645],{"type":42,"tag":119,"props":646,"children":648},{"className":647},[],[649],{"type":48,"value":650},"references\u002Fcore\u002Fgotchas.md",{"type":48,"value":652}," - Anti-patterns and common mistakes\n",{"type":42,"tag":104,"props":654,"children":655},{},[656],{"type":42,"tag":108,"props":657,"children":658},{},[659,660],{"type":48,"value":605},{"type":42,"tag":119,"props":661,"children":663},{"className":662},[],[664],{"type":48,"value":665},"references\u002F{your_language}\u002Fgotchas.md",{"type":42,"tag":108,"props":667,"children":668},{},[669,678,680],{"type":42,"tag":75,"props":670,"children":671},{},[672],{"type":42,"tag":119,"props":673,"children":675},{"className":674},[],[676],{"type":48,"value":677},"references\u002Fcore\u002Fversioning.md",{"type":48,"value":679}," - Versioning strategies and concepts - how to safely change workflow code while workflows are running\n",{"type":42,"tag":104,"props":681,"children":682},{},[683],{"type":42,"tag":108,"props":684,"children":685},{},[686,687],{"type":48,"value":605},{"type":42,"tag":119,"props":688,"children":690},{"className":689},[],[691],{"type":48,"value":692},"references\u002F{your_language}\u002Fversioning.md",{"type":42,"tag":108,"props":694,"children":695},{},[696,705],{"type":42,"tag":75,"props":697,"children":698},{},[699],{"type":42,"tag":119,"props":700,"children":702},{"className":701},[],[703],{"type":48,"value":704},"references\u002Fcore\u002Ftroubleshooting.md",{"type":48,"value":706}," - Decision trees, recovery procedures",{"type":42,"tag":108,"props":708,"children":709},{},[710,719],{"type":42,"tag":75,"props":711,"children":712},{},[713],{"type":42,"tag":119,"props":714,"children":716},{"className":715},[],[717],{"type":48,"value":718},"references\u002Fcore\u002Ferror-reference.md",{"type":48,"value":720}," - Common error types, workflow status reference",{"type":42,"tag":108,"props":722,"children":723},{},[724,733],{"type":42,"tag":75,"props":725,"children":726},{},[727],{"type":42,"tag":119,"props":728,"children":730},{"className":729},[],[731],{"type":48,"value":732},"references\u002Fcore\u002Finteractive-workflows.md",{"type":48,"value":734}," - Testing signals, updates, queries",{"type":42,"tag":108,"props":736,"children":737},{},[738,747],{"type":42,"tag":75,"props":739,"children":740},{},[741],{"type":42,"tag":119,"props":742,"children":744},{"className":743},[],[745],{"type":48,"value":746},"references\u002Fcore\u002Fdev-management.md",{"type":48,"value":748}," - Dev cycle & management of server and workers",{"type":42,"tag":108,"props":750,"children":751},{},[752,761,763],{"type":42,"tag":75,"props":753,"children":754},{},[755],{"type":42,"tag":119,"props":756,"children":758},{"className":757},[],[759],{"type":48,"value":760},"references\u002Fcore\u002Fai-patterns.md",{"type":48,"value":762}," - AI\u002FLLM pattern concepts\n",{"type":42,"tag":104,"props":764,"children":765},{},[766],{"type":42,"tag":108,"props":767,"children":768},{},[769,770,776],{"type":48,"value":605},{"type":42,"tag":119,"props":771,"children":773},{"className":772},[],[774],{"type":48,"value":775},"references\u002F{your_language}\u002Fai-patterns.md",{"type":48,"value":777},", if available. Currently Python only.",{"type":42,"tag":51,"props":779,"children":781},{"id":780},"additional-topics",[782],{"type":48,"value":783},"Additional Topics",{"type":42,"tag":104,"props":785,"children":786},{},[787,801],{"type":42,"tag":108,"props":788,"children":789},{},[790,799],{"type":42,"tag":75,"props":791,"children":792},{},[793],{"type":42,"tag":119,"props":794,"children":796},{"className":795},[],[797],{"type":48,"value":798},"references\u002F{your_language}\u002Fobservability.md",{"type":48,"value":800}," - See for language-specific implementation guidance on observability in Temporal",{"type":42,"tag":108,"props":802,"children":803},{},[804,813],{"type":42,"tag":75,"props":805,"children":806},{},[807],{"type":42,"tag":119,"props":808,"children":810},{"className":809},[],[811],{"type":48,"value":812},"references\u002F{your_language}\u002Fadvanced-features.md",{"type":48,"value":814}," - See for language-specific guidance on advanced Temporal features and language-specific features",{"type":42,"tag":51,"props":816,"children":818},{"id":817},"feedback",[819],{"type":48,"value":820},"Feedback",{"type":42,"tag":386,"props":822,"children":824},{"id":823},"always-prompt-user-to-provide-feedback-at-startup",[825],{"type":48,"value":826},"ALWAYS PROMPT USER TO PROVIDE FEEDBACK AT STARTUP",{"type":42,"tag":58,"props":828,"children":829},{},[830,832,837],{"type":48,"value":831},"When you have ",{"type":42,"tag":75,"props":833,"children":834},{},[835],{"type":48,"value":836},"first",{"type":48,"value":838}," loaded this skill, output this message to the user:",{"type":42,"tag":58,"props":840,"children":841},{},[842,844,851,853,860],{"type":48,"value":843},"\"Thank you for trying out the public preview of the Temporal development skill! We would love to hear your feedback - positive or negative - over in the ",{"type":42,"tag":441,"props":845,"children":848},{"href":846,"rel":847},"https:\u002F\u002Ft.mp\u002Fslack",[445],[849],{"type":48,"value":850},"Community Slack",{"type":48,"value":852},", in the ",{"type":42,"tag":441,"props":854,"children":857},{"href":855,"rel":856},"https:\u002F\u002Ftemporalio.slack.com\u002Farchives\u002FC0818FQPYKY",[445],[858],{"type":48,"value":859},"#topic-ai channel",{"type":48,"value":861},".\"",{"type":42,"tag":58,"props":863,"children":864},{},[865],{"type":48,"value":866},"Do not output this message multiple times in the same conversation.",{"type":42,"tag":386,"props":868,"children":870},{"id":869},"reporting-issues-in-this-skill",[871],{"type":48,"value":872},"Reporting Issues in This Skill",{"type":42,"tag":58,"props":874,"children":875},{},[876,878,884],{"type":48,"value":877},"If you (the AI) find this skill's explanations are unclear, misleading, or missing important information—or if Temporal concepts are proving unexpectedly difficult to work with—draft a GitHub issue body describing the problem encountered and what would have helped, then ask the user to file it at ",{"type":42,"tag":441,"props":879,"children":882},{"href":880,"rel":881},"https:\u002F\u002Fgithub.com\u002Ftemporalio\u002Fskill-temporal-developer\u002Fissues\u002Fnew",[445],[883],{"type":48,"value":880},{"type":48,"value":885},". Do not file the issue autonomously.",{"items":887,"total":1009},[888,907,923,935,955,977,997],{"slug":889,"name":889,"fn":890,"description":891,"org":892,"tags":893,"stars":25,"repoUrl":26,"updatedAt":906},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[894,897,900,903],{"name":895,"slug":896,"type":15},"Accessibility","accessibility",{"name":898,"slug":899,"type":15},"Charts","charts",{"name":901,"slug":902,"type":15},"Data Visualization","data-visualization",{"name":904,"slug":905,"type":15},"Design","design","2026-06-30T19:00:57.102",{"slug":908,"name":908,"fn":909,"description":910,"org":911,"tags":912,"stars":25,"repoUrl":26,"updatedAt":922},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[913,916,919],{"name":914,"slug":915,"type":15},"Agents","agents",{"name":917,"slug":918,"type":15},"Browser Automation","browser-automation",{"name":920,"slug":921,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":924,"name":924,"fn":925,"description":926,"org":927,"tags":928,"stars":25,"repoUrl":26,"updatedAt":934},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[929,930,933],{"name":917,"slug":918,"type":15},{"name":931,"slug":932,"type":15},"Local Development","local-development",{"name":920,"slug":921,"type":15},"2026-04-06T18:41:17.526867",{"slug":936,"name":936,"fn":937,"description":938,"org":939,"tags":940,"stars":25,"repoUrl":26,"updatedAt":954},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[941,942,945,948,951],{"name":914,"slug":915,"type":15},{"name":943,"slug":944,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":946,"slug":947,"type":15},"SDK","sdk",{"name":949,"slug":950,"type":15},"Serverless","serverless",{"name":952,"slug":953,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":956,"name":956,"fn":957,"description":958,"org":959,"tags":960,"stars":25,"repoUrl":26,"updatedAt":976},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[961,964,967,970,973],{"name":962,"slug":963,"type":15},"Frontend","frontend",{"name":965,"slug":966,"type":15},"React","react",{"name":968,"slug":969,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":971,"slug":972,"type":15},"UI Components","ui-components",{"name":974,"slug":975,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":978,"name":978,"fn":979,"description":980,"org":981,"tags":982,"stars":25,"repoUrl":26,"updatedAt":996},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[983,986,989,992,995],{"name":984,"slug":985,"type":15},"AI Infrastructure","ai-infrastructure",{"name":987,"slug":988,"type":15},"Cost Optimization","cost-optimization",{"name":990,"slug":991,"type":15},"LLM","llm",{"name":993,"slug":994,"type":15},"Performance","performance",{"name":974,"slug":975,"type":15},"2026-04-06T18:40:44.377464",{"slug":998,"name":998,"fn":999,"description":1000,"org":1001,"tags":1002,"stars":25,"repoUrl":26,"updatedAt":1008},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1003,1004,1007],{"name":987,"slug":988,"type":15},{"name":1005,"slug":1006,"type":15},"Database","database",{"name":990,"slug":991,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1011,"total":1208},[1012,1033,1056,1073,1089,1106,1125,1137,1151,1165,1177,1192],{"slug":1013,"name":1013,"fn":1014,"description":1015,"org":1016,"tags":1017,"stars":1030,"repoUrl":1031,"updatedAt":1032},"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},[1018,1021,1024,1027],{"name":1019,"slug":1020,"type":15},"Documents","documents",{"name":1022,"slug":1023,"type":15},"Healthcare","healthcare",{"name":1025,"slug":1026,"type":15},"Insurance","insurance",{"name":1028,"slug":1029,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1034,"name":1034,"fn":1035,"description":1036,"org":1037,"tags":1038,"stars":1053,"repoUrl":1054,"updatedAt":1055},"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},[1039,1042,1044,1047,1050],{"name":1040,"slug":1041,"type":15},".NET","dotnet",{"name":1043,"slug":1034,"type":15},"ASP.NET Core",{"name":1045,"slug":1046,"type":15},"Blazor","blazor",{"name":1048,"slug":1049,"type":15},"C#","csharp",{"name":1051,"slug":1052,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1057,"name":1057,"fn":1058,"description":1059,"org":1060,"tags":1061,"stars":1053,"repoUrl":1054,"updatedAt":1072},"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},[1062,1065,1068,1071],{"name":1063,"slug":1064,"type":15},"Apps SDK","apps-sdk",{"name":1066,"slug":1067,"type":15},"ChatGPT","chatgpt",{"name":1069,"slug":1070,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1074,"name":1074,"fn":1075,"description":1076,"org":1077,"tags":1078,"stars":1053,"repoUrl":1054,"updatedAt":1088},"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},[1079,1082,1085],{"name":1080,"slug":1081,"type":15},"API Development","api-development",{"name":1083,"slug":1084,"type":15},"CLI","cli",{"name":1086,"slug":1087,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1090,"name":1090,"fn":1091,"description":1092,"org":1093,"tags":1094,"stars":1053,"repoUrl":1054,"updatedAt":1105},"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},[1095,1098,1101,1102],{"name":1096,"slug":1097,"type":15},"Cloudflare","cloudflare",{"name":1099,"slug":1100,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":943,"slug":944,"type":15},{"name":1103,"slug":1104,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1107,"name":1107,"fn":1108,"description":1109,"org":1110,"tags":1111,"stars":1053,"repoUrl":1054,"updatedAt":1124},"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},[1112,1115,1118,1121],{"name":1113,"slug":1114,"type":15},"Productivity","productivity",{"name":1116,"slug":1117,"type":15},"Project Management","project-management",{"name":1119,"slug":1120,"type":15},"Strategy","strategy",{"name":1122,"slug":1123,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1126,"name":1126,"fn":1127,"description":1128,"org":1129,"tags":1130,"stars":1053,"repoUrl":1054,"updatedAt":1136},"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},[1131,1132,1134,1135],{"name":904,"slug":905,"type":15},{"name":1133,"slug":1126,"type":15},"Figma",{"name":962,"slug":963,"type":15},{"name":1069,"slug":1070,"type":15},"2026-04-12T05:06:47.939943",{"slug":1138,"name":1138,"fn":1139,"description":1140,"org":1141,"tags":1142,"stars":1053,"repoUrl":1054,"updatedAt":1150},"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},[1143,1144,1147,1148,1149],{"name":904,"slug":905,"type":15},{"name":1145,"slug":1146,"type":15},"Design System","design-system",{"name":1133,"slug":1126,"type":15},{"name":962,"slug":963,"type":15},{"name":971,"slug":972,"type":15},"2026-05-10T05:59:52.971881",{"slug":1152,"name":1152,"fn":1153,"description":1154,"org":1155,"tags":1156,"stars":1053,"repoUrl":1054,"updatedAt":1164},"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},[1157,1158,1159,1162,1163],{"name":904,"slug":905,"type":15},{"name":1145,"slug":1146,"type":15},{"name":1160,"slug":1161,"type":15},"Documentation","documentation",{"name":1133,"slug":1126,"type":15},{"name":962,"slug":963,"type":15},"2026-05-16T06:07:47.821474",{"slug":1166,"name":1166,"fn":1167,"description":1168,"org":1169,"tags":1170,"stars":1053,"repoUrl":1054,"updatedAt":1176},"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},[1171,1172,1173,1174,1175],{"name":904,"slug":905,"type":15},{"name":1133,"slug":1126,"type":15},{"name":962,"slug":963,"type":15},{"name":971,"slug":972,"type":15},{"name":1051,"slug":1052,"type":15},"2026-05-16T06:07:40.583615",{"slug":1178,"name":1178,"fn":1179,"description":1180,"org":1181,"tags":1182,"stars":1053,"repoUrl":1054,"updatedAt":1191},"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},[1183,1186,1187,1190],{"name":1184,"slug":1185,"type":15},"Animation","animation",{"name":1086,"slug":1087,"type":15},{"name":1188,"slug":1189,"type":15},"Creative","creative",{"name":904,"slug":905,"type":15},"2026-05-02T05:31:48.48485",{"slug":1193,"name":1193,"fn":1194,"description":1195,"org":1196,"tags":1197,"stars":1053,"repoUrl":1054,"updatedAt":1207},"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},[1198,1199,1200,1203,1206],{"name":1188,"slug":1189,"type":15},{"name":904,"slug":905,"type":15},{"name":1201,"slug":1202,"type":15},"Image Generation","image-generation",{"name":1204,"slug":1205,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]