[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-temporal-temporal-developer":3,"mdc--3tvqrl-key":39,"related-org-temporal-temporal-developer":902,"related-repo-temporal-temporal-developer":995},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":35,"sourceUrl":25,"mdContent":38},"temporal-developer","develop Temporal workflows and activities","Develop, debug, and manage Temporal applications across Python, TypeScript, Go, Java, .NET, Ruby, and Rust. 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. Also use when the user mentions \"run a Temporal workflow from the CLI\", \"start a dev server\", \"run temporal server start-dev\", \"temporal workflow start\", \"temporal workflow execute\", \"temporal workflow signal\", \"temporal workflow query\", \"temporal workflow update\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"temporal","Temporal","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftemporal.png","temporalio",[13,17,18,21],{"name":14,"slug":15,"type":16},"Backend","backend","tag",{"name":9,"slug":8,"type":16},{"name":19,"slug":20,"type":16},"Debugging","debugging",{"name":22,"slug":23,"type":16},"Workflow Automation","workflow-automation",201,"https:\u002F\u002Fgithub.com\u002Ftemporalio\u002Fskill-temporal-developer","2026-04-06T18:54:23.154697",null,27,[30,31,32,33,34,8],"ai","ai-agents","coding-agent","skills","skills-sh",{"repoUrl":25,"stars":24,"forks":28,"topics":36,"description":37},[30,31,32,33,34,8],"Comprehensive Skill for developing with Temporal","---\nname: temporal-developer\ndescription: Develop, debug, and manage Temporal applications across Python, TypeScript, Go, Java, .NET, Ruby, and Rust. 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. Also use when the user mentions \"run a Temporal workflow from the CLI\", \"start a dev server\", \"run temporal server start-dev\", \"temporal workflow start\", \"temporal workflow execute\", \"temporal workflow signal\", \"temporal workflow query\", \"temporal workflow update\".\nversion: 0.5.0\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, Java, .NET, Ruby, and Rust.\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 the instructions at `references\u002Fcore\u002Finstall_cli.md` to install it for your platform.\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   - Go -> read `references\u002Fgo\u002Fgo.md`\n   - Java -> read `references\u002Fjava\u002Fjava.md`\n   - .NET (C#) -> read `references\u002Fdotnet\u002Fdotnet.md`\n   - Ruby -> read `references\u002Fruby\u002Fruby.md`\n   - Rust -> read `references\u002Frust\u002Frust.md` (in Public Preview)\n2. Second, read appropriate `core` and language-specific references for the task at hand.\n\n## Primary References\n\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\u002Fstandalone-activities.md`** - Standalone Activities: run an Activity directly from a Client without a Workflow (Public Preview)\n  - Language-specific info at `references\u002F{your_language}\u002Fstandalone-activities.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\u002Fcli-workflow-commands.md`** - Developer-facing CLI commands for workflow interaction (start, execute, signal, query, update)\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## Task Queue Priority and Fairness\n\nIf the developer is building a **multi-tenant application**, proactively recommend Task Queue Fairness. Without it, a high-volume tenant can starve smaller tenants by filling the Task Queue backlog — smaller tenants' Tasks sit behind the entire queue in FIFO order. Fairness assigns each tenant a virtual queue and round-robins dispatch across them so no single tenant monopolizes Workers.\n\nPriority and Fairness also apply to tiered workloads (batch vs. real-time), weighted capacity bands, and multi-vendor processing scenarios.\n\n- **`references\u002Fcore\u002Fpriority-fairness.md`** - Priority keys, fairness keys and weights, rate limiting, SDK examples, and limitations\n\n## Additional Topics\n\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## Third-Party Integrations\n\nFor Temporal plugins and integrations with third-party frameworks and SDKs (Spring Boot, Spring AI, OpenAI Agents SDK, Google ADK, etc.), see **`references\u002Fintegrations.md`** — a single catalog table with the language, what each integration does, and a pointer to its reference file under `references\u002F{language}\u002Fintegrations\u002F`.\n\n## Feedback\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":40,"body":42},{"name":4,"description":6,"version":41},"0.5.0",{"type":43,"children":44},"root",[45,54,61,67,73,107,151,161,184,189,195,207,251,259,370,383,389,396,416,422,525,531,768,774,786,791,808,814,845,851,875,881,887],{"type":46,"tag":47,"props":48,"children":50},"element","h1",{"id":49},"skill-temporal-developer",[51],{"type":52,"value":53},"text","Skill: temporal-developer",{"type":46,"tag":55,"props":56,"children":58},"h2",{"id":57},"overview",[59],{"type":52,"value":60},"Overview",{"type":46,"tag":62,"props":63,"children":64},"p",{},[65],{"type":52,"value":66},"Temporal is a durable execution platform that makes workflows survive failures automatically. This skill provides guidance for building Temporal applications in Python, TypeScript, Go, Java, .NET, Ruby, and Rust.",{"type":46,"tag":55,"props":68,"children":70},{"id":69},"core-architecture",[71],{"type":52,"value":72},"Core Architecture",{"type":46,"tag":62,"props":74,"children":75},{},[76,78,84,86,91,93,98,100,105],{"type":52,"value":77},"The ",{"type":46,"tag":79,"props":80,"children":81},"strong",{},[82],{"type":52,"value":83},"Temporal Cluster",{"type":52,"value":85}," is the central orchestration backend. It maintains three key subsystems: the ",{"type":46,"tag":79,"props":87,"children":88},{},[89],{"type":52,"value":90},"Event History",{"type":52,"value":92}," (a durable log of all workflow state), ",{"type":46,"tag":79,"props":94,"children":95},{},[96],{"type":52,"value":97},"Task Queues",{"type":52,"value":99}," (which route work to the right workers), and a ",{"type":46,"tag":79,"props":101,"children":102},{},[103],{"type":52,"value":104},"Visibility",{"type":52,"value":106}," store (for searching and listing workflows). There are three ways to run a Cluster:",{"type":46,"tag":108,"props":109,"children":110},"ul",{},[111,131,141],{"type":46,"tag":112,"props":113,"children":114},"li",{},[115,120,122,129],{"type":46,"tag":79,"props":116,"children":117},{},[118],{"type":52,"value":119},"Temporal CLI dev server",{"type":52,"value":121}," — a local, single-process server started with ",{"type":46,"tag":123,"props":124,"children":126},"code",{"className":125},[],[127],{"type":52,"value":128},"temporal server start-dev",{"type":52,"value":130},". Suitable for development and testing only, not production.",{"type":46,"tag":112,"props":132,"children":133},{},[134,139],{"type":46,"tag":79,"props":135,"children":136},{},[137],{"type":52,"value":138},"Self-hosted",{"type":52,"value":140}," — you deploy and manage the Temporal server and its dependencies (e.g., database) in your own infrastructure for production use.",{"type":46,"tag":112,"props":142,"children":143},{},[144,149],{"type":46,"tag":79,"props":145,"children":146},{},[147],{"type":52,"value":148},"Temporal Cloud",{"type":52,"value":150}," — a fully managed production service operated by Temporal. No cluster infrastructure to manage.",{"type":46,"tag":62,"props":152,"children":153},{},[154,159],{"type":46,"tag":79,"props":155,"children":156},{},[157],{"type":52,"value":158},"Workers",{"type":52,"value":160}," 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":46,"tag":108,"props":162,"children":163},{},[164,174],{"type":46,"tag":112,"props":165,"children":166},{},[167,172],{"type":46,"tag":79,"props":168,"children":169},{},[170],{"type":52,"value":171},"Workflow Definitions",{"type":52,"value":173}," — durable, deterministic functions that orchestrate work. These must not have side effects.",{"type":46,"tag":112,"props":175,"children":176},{},[177,182],{"type":46,"tag":79,"props":178,"children":179},{},[180],{"type":52,"value":181},"Activity Implementations",{"type":52,"value":183}," — non-deterministic operations (API calls, file I\u002FO, etc.) that can fail and be retried.",{"type":46,"tag":62,"props":185,"children":186},{},[187],{"type":52,"value":188},"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":46,"tag":55,"props":190,"children":192},{"id":191},"history-replay-why-determinism-matters",[193],{"type":52,"value":194},"History Replay: Why Determinism Matters",{"type":46,"tag":62,"props":196,"children":197},{},[198,200,205],{"type":52,"value":199},"Temporal achieves durability through ",{"type":46,"tag":79,"props":201,"children":202},{},[203],{"type":52,"value":204},"history replay",{"type":52,"value":206},":",{"type":46,"tag":208,"props":209,"children":210},"ol",{},[211,221,231,241],{"type":46,"tag":112,"props":212,"children":213},{},[214,219],{"type":46,"tag":79,"props":215,"children":216},{},[217],{"type":52,"value":218},"Initial Execution",{"type":52,"value":220}," - Worker runs workflow, generates Commands, stored as Events in history",{"type":46,"tag":112,"props":222,"children":223},{},[224,229],{"type":46,"tag":79,"props":225,"children":226},{},[227],{"type":52,"value":228},"Recovery",{"type":52,"value":230}," - On restart\u002Ffailure, Worker re-executes workflow from beginning",{"type":46,"tag":112,"props":232,"children":233},{},[234,239],{"type":46,"tag":79,"props":235,"children":236},{},[237],{"type":52,"value":238},"Matching",{"type":52,"value":240}," - SDK compares generated Commands against stored Events",{"type":46,"tag":112,"props":242,"children":243},{},[244,249],{"type":46,"tag":79,"props":245,"children":246},{},[247],{"type":52,"value":248},"Restoration",{"type":52,"value":250}," - Uses stored Activity results instead of re-executing",{"type":46,"tag":62,"props":252,"children":253},{},[254],{"type":46,"tag":79,"props":255,"children":256},{},[257],{"type":52,"value":258},"If Commands don't match Events = Non-determinism Error = Workflow blocked",{"type":46,"tag":260,"props":261,"children":262},"table",{},[263,287],{"type":46,"tag":264,"props":265,"children":266},"thead",{},[267],{"type":46,"tag":268,"props":269,"children":270},"tr",{},[271,277,282],{"type":46,"tag":272,"props":273,"children":274},"th",{},[275],{"type":52,"value":276},"Workflow Code",{"type":46,"tag":272,"props":278,"children":279},{},[280],{"type":52,"value":281},"Command",{"type":46,"tag":272,"props":283,"children":284},{},[285],{"type":52,"value":286},"Event",{"type":46,"tag":288,"props":289,"children":290},"tbody",{},[291,318,344],{"type":46,"tag":268,"props":292,"children":293},{},[294,300,309],{"type":46,"tag":295,"props":296,"children":297},"td",{},[298],{"type":52,"value":299},"Execute activity",{"type":46,"tag":295,"props":301,"children":302},{},[303],{"type":46,"tag":123,"props":304,"children":306},{"className":305},[],[307],{"type":52,"value":308},"ScheduleActivityTask",{"type":46,"tag":295,"props":310,"children":311},{},[312],{"type":46,"tag":123,"props":313,"children":315},{"className":314},[],[316],{"type":52,"value":317},"ActivityTaskScheduled",{"type":46,"tag":268,"props":319,"children":320},{},[321,326,335],{"type":46,"tag":295,"props":322,"children":323},{},[324],{"type":52,"value":325},"Sleep\u002Ftimer",{"type":46,"tag":295,"props":327,"children":328},{},[329],{"type":46,"tag":123,"props":330,"children":332},{"className":331},[],[333],{"type":52,"value":334},"StartTimer",{"type":46,"tag":295,"props":336,"children":337},{},[338],{"type":46,"tag":123,"props":339,"children":341},{"className":340},[],[342],{"type":52,"value":343},"TimerStarted",{"type":46,"tag":268,"props":345,"children":346},{},[347,352,361],{"type":46,"tag":295,"props":348,"children":349},{},[350],{"type":52,"value":351},"Child workflow",{"type":46,"tag":295,"props":353,"children":354},{},[355],{"type":46,"tag":123,"props":356,"children":358},{"className":357},[],[359],{"type":52,"value":360},"StartChildWorkflowExecution",{"type":46,"tag":295,"props":362,"children":363},{},[364],{"type":46,"tag":123,"props":365,"children":367},{"className":366},[],[368],{"type":52,"value":369},"ChildWorkflowExecutionStarted",{"type":46,"tag":62,"props":371,"children":372},{},[373,375,381],{"type":52,"value":374},"See ",{"type":46,"tag":123,"props":376,"children":378},{"className":377},[],[379],{"type":52,"value":380},"references\u002Fcore\u002Fdeterminism.md",{"type":52,"value":382}," for detailed explanation.",{"type":46,"tag":55,"props":384,"children":386},{"id":385},"getting-started",[387],{"type":52,"value":388},"Getting Started",{"type":46,"tag":390,"props":391,"children":393},"h3",{"id":392},"ensure-temporal-cli-is-installed",[394],{"type":52,"value":395},"Ensure Temporal CLI is installed",{"type":46,"tag":62,"props":397,"children":398},{},[399,401,406,408,414],{"type":52,"value":400},"Check if ",{"type":46,"tag":123,"props":402,"children":404},{"className":403},[],[405],{"type":52,"value":8},{"type":52,"value":407}," CLI is installed. If not, follow the instructions at ",{"type":46,"tag":123,"props":409,"children":411},{"className":410},[],[412],{"type":52,"value":413},"references\u002Fcore\u002Finstall_cli.md",{"type":52,"value":415}," to install it for your platform.",{"type":46,"tag":390,"props":417,"children":419},{"id":418},"read-all-relevant-references",[420],{"type":52,"value":421},"Read All Relevant References",{"type":46,"tag":208,"props":423,"children":424},{},[425,512],{"type":46,"tag":112,"props":426,"children":427},{},[428,430],{"type":52,"value":429},"First, read the getting started guide for the language you are working in:\n",{"type":46,"tag":108,"props":431,"children":432},{},[433,444,455,466,477,488,499],{"type":46,"tag":112,"props":434,"children":435},{},[436,438],{"type":52,"value":437},"Python -> read ",{"type":46,"tag":123,"props":439,"children":441},{"className":440},[],[442],{"type":52,"value":443},"references\u002Fpython\u002Fpython.md",{"type":46,"tag":112,"props":445,"children":446},{},[447,449],{"type":52,"value":448},"TypeScript -> read ",{"type":46,"tag":123,"props":450,"children":452},{"className":451},[],[453],{"type":52,"value":454},"references\u002Ftypescript\u002Ftypescript.md",{"type":46,"tag":112,"props":456,"children":457},{},[458,460],{"type":52,"value":459},"Go -> read ",{"type":46,"tag":123,"props":461,"children":463},{"className":462},[],[464],{"type":52,"value":465},"references\u002Fgo\u002Fgo.md",{"type":46,"tag":112,"props":467,"children":468},{},[469,471],{"type":52,"value":470},"Java -> read ",{"type":46,"tag":123,"props":472,"children":474},{"className":473},[],[475],{"type":52,"value":476},"references\u002Fjava\u002Fjava.md",{"type":46,"tag":112,"props":478,"children":479},{},[480,482],{"type":52,"value":481},".NET (C#) -> read ",{"type":46,"tag":123,"props":483,"children":485},{"className":484},[],[486],{"type":52,"value":487},"references\u002Fdotnet\u002Fdotnet.md",{"type":46,"tag":112,"props":489,"children":490},{},[491,493],{"type":52,"value":492},"Ruby -> read ",{"type":46,"tag":123,"props":494,"children":496},{"className":495},[],[497],{"type":52,"value":498},"references\u002Fruby\u002Fruby.md",{"type":46,"tag":112,"props":500,"children":501},{},[502,504,510],{"type":52,"value":503},"Rust -> read ",{"type":46,"tag":123,"props":505,"children":507},{"className":506},[],[508],{"type":52,"value":509},"references\u002Frust\u002Frust.md",{"type":52,"value":511}," (in Public Preview)",{"type":46,"tag":112,"props":513,"children":514},{},[515,517,523],{"type":52,"value":516},"Second, read appropriate ",{"type":46,"tag":123,"props":518,"children":520},{"className":519},[],[521],{"type":52,"value":522},"core",{"type":52,"value":524}," and language-specific references for the task at hand.",{"type":46,"tag":55,"props":526,"children":528},{"id":527},"primary-references",[529],{"type":52,"value":530},"Primary References",{"type":46,"tag":108,"props":532,"children":533},{},[534,561,588,615,642,669,683,697,711,725,739],{"type":46,"tag":112,"props":535,"children":536},{},[537,545,547],{"type":46,"tag":79,"props":538,"children":539},{},[540],{"type":46,"tag":123,"props":541,"children":543},{"className":542},[],[544],{"type":52,"value":380},{"type":52,"value":546}," - Why determinism matters, replay mechanics, basic concepts of activities\n",{"type":46,"tag":108,"props":548,"children":549},{},[550],{"type":46,"tag":112,"props":551,"children":552},{},[553,555],{"type":52,"value":554},"Language-specific info at ",{"type":46,"tag":123,"props":556,"children":558},{"className":557},[],[559],{"type":52,"value":560},"references\u002F{your_language}\u002Fdeterminism.md",{"type":46,"tag":112,"props":562,"children":563},{},[564,573,575],{"type":46,"tag":79,"props":565,"children":566},{},[567],{"type":46,"tag":123,"props":568,"children":570},{"className":569},[],[571],{"type":52,"value":572},"references\u002Fcore\u002Fpatterns.md",{"type":52,"value":574}," - Conceptual patterns (signals, queries, saga)\n",{"type":46,"tag":108,"props":576,"children":577},{},[578],{"type":46,"tag":112,"props":579,"children":580},{},[581,582],{"type":52,"value":554},{"type":46,"tag":123,"props":583,"children":585},{"className":584},[],[586],{"type":52,"value":587},"references\u002F{your_language}\u002Fpatterns.md",{"type":46,"tag":112,"props":589,"children":590},{},[591,600,602],{"type":46,"tag":79,"props":592,"children":593},{},[594],{"type":46,"tag":123,"props":595,"children":597},{"className":596},[],[598],{"type":52,"value":599},"references\u002Fcore\u002Fgotchas.md",{"type":52,"value":601}," - Anti-patterns and common mistakes\n",{"type":46,"tag":108,"props":603,"children":604},{},[605],{"type":46,"tag":112,"props":606,"children":607},{},[608,609],{"type":52,"value":554},{"type":46,"tag":123,"props":610,"children":612},{"className":611},[],[613],{"type":52,"value":614},"references\u002F{your_language}\u002Fgotchas.md",{"type":46,"tag":112,"props":616,"children":617},{},[618,627,629],{"type":46,"tag":79,"props":619,"children":620},{},[621],{"type":46,"tag":123,"props":622,"children":624},{"className":623},[],[625],{"type":52,"value":626},"references\u002Fcore\u002Fversioning.md",{"type":52,"value":628}," - Versioning strategies and concepts - how to safely change workflow code while workflows are running\n",{"type":46,"tag":108,"props":630,"children":631},{},[632],{"type":46,"tag":112,"props":633,"children":634},{},[635,636],{"type":52,"value":554},{"type":46,"tag":123,"props":637,"children":639},{"className":638},[],[640],{"type":52,"value":641},"references\u002F{your_language}\u002Fversioning.md",{"type":46,"tag":112,"props":643,"children":644},{},[645,654,656],{"type":46,"tag":79,"props":646,"children":647},{},[648],{"type":46,"tag":123,"props":649,"children":651},{"className":650},[],[652],{"type":52,"value":653},"references\u002Fcore\u002Fstandalone-activities.md",{"type":52,"value":655}," - Standalone Activities: run an Activity directly from a Client without a Workflow (Public Preview)\n",{"type":46,"tag":108,"props":657,"children":658},{},[659],{"type":46,"tag":112,"props":660,"children":661},{},[662,663],{"type":52,"value":554},{"type":46,"tag":123,"props":664,"children":666},{"className":665},[],[667],{"type":52,"value":668},"references\u002F{your_language}\u002Fstandalone-activities.md",{"type":46,"tag":112,"props":670,"children":671},{},[672,681],{"type":46,"tag":79,"props":673,"children":674},{},[675],{"type":46,"tag":123,"props":676,"children":678},{"className":677},[],[679],{"type":52,"value":680},"references\u002Fcore\u002Ftroubleshooting.md",{"type":52,"value":682}," - Decision trees, recovery procedures",{"type":46,"tag":112,"props":684,"children":685},{},[686,695],{"type":46,"tag":79,"props":687,"children":688},{},[689],{"type":46,"tag":123,"props":690,"children":692},{"className":691},[],[693],{"type":52,"value":694},"references\u002Fcore\u002Ferror-reference.md",{"type":52,"value":696}," - Common error types, workflow status reference",{"type":46,"tag":112,"props":698,"children":699},{},[700,709],{"type":46,"tag":79,"props":701,"children":702},{},[703],{"type":46,"tag":123,"props":704,"children":706},{"className":705},[],[707],{"type":52,"value":708},"references\u002Fcore\u002Finteractive-workflows.md",{"type":52,"value":710}," - Testing signals, updates, queries",{"type":46,"tag":112,"props":712,"children":713},{},[714,723],{"type":46,"tag":79,"props":715,"children":716},{},[717],{"type":46,"tag":123,"props":718,"children":720},{"className":719},[],[721],{"type":52,"value":722},"references\u002Fcore\u002Fdev-management.md",{"type":52,"value":724}," - Dev cycle & management of server and workers",{"type":46,"tag":112,"props":726,"children":727},{},[728,737],{"type":46,"tag":79,"props":729,"children":730},{},[731],{"type":46,"tag":123,"props":732,"children":734},{"className":733},[],[735],{"type":52,"value":736},"references\u002Fcore\u002Fcli-workflow-commands.md",{"type":52,"value":738}," - Developer-facing CLI commands for workflow interaction (start, execute, signal, query, update)",{"type":46,"tag":112,"props":740,"children":741},{},[742,751,753],{"type":46,"tag":79,"props":743,"children":744},{},[745],{"type":46,"tag":123,"props":746,"children":748},{"className":747},[],[749],{"type":52,"value":750},"references\u002Fcore\u002Fai-patterns.md",{"type":52,"value":752}," - AI\u002FLLM pattern concepts\n",{"type":46,"tag":108,"props":754,"children":755},{},[756],{"type":46,"tag":112,"props":757,"children":758},{},[759,760,766],{"type":52,"value":554},{"type":46,"tag":123,"props":761,"children":763},{"className":762},[],[764],{"type":52,"value":765},"references\u002F{your_language}\u002Fai-patterns.md",{"type":52,"value":767},", if available. Currently Python only.",{"type":46,"tag":55,"props":769,"children":771},{"id":770},"task-queue-priority-and-fairness",[772],{"type":52,"value":773},"Task Queue Priority and Fairness",{"type":46,"tag":62,"props":775,"children":776},{},[777,779,784],{"type":52,"value":778},"If the developer is building a ",{"type":46,"tag":79,"props":780,"children":781},{},[782],{"type":52,"value":783},"multi-tenant application",{"type":52,"value":785},", proactively recommend Task Queue Fairness. Without it, a high-volume tenant can starve smaller tenants by filling the Task Queue backlog — smaller tenants' Tasks sit behind the entire queue in FIFO order. Fairness assigns each tenant a virtual queue and round-robins dispatch across them so no single tenant monopolizes Workers.",{"type":46,"tag":62,"props":787,"children":788},{},[789],{"type":52,"value":790},"Priority and Fairness also apply to tiered workloads (batch vs. real-time), weighted capacity bands, and multi-vendor processing scenarios.",{"type":46,"tag":108,"props":792,"children":793},{},[794],{"type":46,"tag":112,"props":795,"children":796},{},[797,806],{"type":46,"tag":79,"props":798,"children":799},{},[800],{"type":46,"tag":123,"props":801,"children":803},{"className":802},[],[804],{"type":52,"value":805},"references\u002Fcore\u002Fpriority-fairness.md",{"type":52,"value":807}," - Priority keys, fairness keys and weights, rate limiting, SDK examples, and limitations",{"type":46,"tag":55,"props":809,"children":811},{"id":810},"additional-topics",[812],{"type":52,"value":813},"Additional Topics",{"type":46,"tag":108,"props":815,"children":816},{},[817,831],{"type":46,"tag":112,"props":818,"children":819},{},[820,829],{"type":46,"tag":79,"props":821,"children":822},{},[823],{"type":46,"tag":123,"props":824,"children":826},{"className":825},[],[827],{"type":52,"value":828},"references\u002F{your_language}\u002Fobservability.md",{"type":52,"value":830}," - See for language-specific implementation guidance on observability in Temporal",{"type":46,"tag":112,"props":832,"children":833},{},[834,843],{"type":46,"tag":79,"props":835,"children":836},{},[837],{"type":46,"tag":123,"props":838,"children":840},{"className":839},[],[841],{"type":52,"value":842},"references\u002F{your_language}\u002Fadvanced-features.md",{"type":52,"value":844}," - See for language-specific guidance on advanced Temporal features and language-specific features",{"type":46,"tag":55,"props":846,"children":848},{"id":847},"third-party-integrations",[849],{"type":52,"value":850},"Third-Party Integrations",{"type":46,"tag":62,"props":852,"children":853},{},[854,856,865,867,873],{"type":52,"value":855},"For Temporal plugins and integrations with third-party frameworks and SDKs (Spring Boot, Spring AI, OpenAI Agents SDK, Google ADK, etc.), see ",{"type":46,"tag":79,"props":857,"children":858},{},[859],{"type":46,"tag":123,"props":860,"children":862},{"className":861},[],[863],{"type":52,"value":864},"references\u002Fintegrations.md",{"type":52,"value":866}," — a single catalog table with the language, what each integration does, and a pointer to its reference file under ",{"type":46,"tag":123,"props":868,"children":870},{"className":869},[],[871],{"type":52,"value":872},"references\u002F{language}\u002Fintegrations\u002F",{"type":52,"value":874},".",{"type":46,"tag":55,"props":876,"children":878},{"id":877},"feedback",[879],{"type":52,"value":880},"Feedback",{"type":46,"tag":390,"props":882,"children":884},{"id":883},"reporting-issues-in-this-skill",[885],{"type":52,"value":886},"Reporting Issues in This Skill",{"type":46,"tag":62,"props":888,"children":889},{},[890,892,900],{"type":52,"value":891},"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":46,"tag":893,"props":894,"children":898},"a",{"href":895,"rel":896},"https:\u002F\u002Fgithub.com\u002Ftemporalio\u002Fskill-temporal-developer\u002Fissues\u002Fnew",[897],"nofollow",[899],{"type":52,"value":895},{"type":52,"value":901},". Do not file the issue autonomously.",{"items":903,"total":925},[904,911,928,946,974],{"slug":4,"name":4,"fn":5,"description":6,"org":905,"tags":906,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[907,908,909,910],{"name":14,"slug":15,"type":16},{"name":19,"slug":20,"type":16},{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"slug":912,"name":912,"fn":913,"description":914,"org":915,"tags":916,"stars":925,"repoUrl":926,"updatedAt":927},"temporal-cloud","troubleshoot Temporal Cloud connections","Fix Temporal Cloud connection, auth, and config problems. Use when users hit login failures, can't connect to Cloud, get x509\u002FTLS errors, have namespace or endpoint mismatches, paste broken SDK connection snippets, are confused about which endpoint to use, see \"no pollers\" or RESOURCE_EXHAUSTED, struggle with PrivateLink\u002FPSC, or need help setting up a new namespace. Also use for HA namespace failover and DNS issues. Not for worker performance tuning or scaling.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[917,920,921,924],{"name":918,"slug":919,"type":16},"Cloud","cloud",{"name":19,"slug":20,"type":16},{"name":922,"slug":923,"type":16},"Security","security",{"name":9,"slug":8,"type":16},5,"https:\u002F\u002Fgithub.com\u002Ftemporalio\u002Fskill-temporal-cloud","2026-04-06T18:54:24.441947",{"slug":929,"name":929,"fn":930,"description":931,"org":932,"tags":933,"stars":943,"repoUrl":944,"updatedAt":945},"temporal-workflow-design-critic","audit Temporal workflow designs","Critique, audit, or score a Temporal workflow design for correctness, production readiness, and best-practice compliance. Use when asked to review a Temporal architecture, evaluate whether a design is production ready, identify anti-patterns or risks, assess Temporal fitness for a use case, or give a design a thumbs up\u002Fdown. Not for writing or debugging Temporal code — use temporal-developer for that.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[934,937,940],{"name":935,"slug":936,"type":16},"Architecture","architecture",{"name":938,"slug":939,"type":16},"Code Review","code-review",{"name":941,"slug":942,"type":16},"Engineering","engineering",4,"https:\u002F\u002Fgithub.com\u002Ftemporalio\u002Fskill-temporal-design","2026-05-23T06:01:03.120182",{"slug":947,"name":947,"fn":948,"description":949,"org":950,"tags":951,"stars":971,"repoUrl":972,"updatedAt":973},"temporal-workertuning","tune Temporal worker performance","Tune Temporal Worker performance across Go, Java, TypeScript, Python, and .NET. Use when the user asks to \"configure slot suppliers\", \"set up a worker tuner\", \"enable poller autoscaling\", \"tune worker cache\", \"fix high schedule-to-start latency\", \"diagnose worker bottlenecks\", \"right-size workers for production\", \"choose between fixed-size and resource-based slot suppliers\", \"configure maxConcurrentWorkflowTaskExecutionSize\", \"set up resource-based tuner\", \"interpret worker_task_slots_available\", \"reduce schedule_to_start_latency\", \"scale worker fleet\", \"configure sticky cache\", or mentions Worker tuning, Worker performance, slot suppliers, composite tuners, or poller autoscaling.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[952,955,958,961,964,967,968],{"name":953,"slug":954,"type":16},".NET","net",{"name":956,"slug":957,"type":16},"Go","go",{"name":959,"slug":960,"type":16},"Java","java",{"name":962,"slug":963,"type":16},"Performance","performance",{"name":965,"slug":966,"type":16},"Python","python",{"name":9,"slug":8,"type":16},{"name":969,"slug":970,"type":16},"TypeScript","typescript",2,"https:\u002F\u002Fgithub.com\u002Ftemporalio\u002Fskill-temporal-workertuning","2026-06-12T08:06:29.755112",{"slug":975,"name":975,"fn":976,"description":977,"org":978,"tags":979,"stars":992,"repoUrl":993,"updatedAt":994},"temporal-observability","collect and query Temporal metrics","Instrument, collect, query, and alert on Temporal metrics across Temporal Cloud and self-hosted deployments. Covers Cloud OpenMetrics endpoint, SDK metrics, third-party integrations (Datadog, Grafana, New Relic, Prometheus, OTel Collector, ClickStack), worker fleet health, and PromQL v0-to-v1 migration. Use when the user mentions: \"Temporal metrics\", \"Temporal monitoring\", \"Temporal observability\", \"Temporal alerting\", \"Datadog Temporal\", \"Grafana Temporal\", \"Cloud metrics endpoint\", \"metrics.temporal.io\", \"SDK metrics\", \"worker backlog\", \"scrape Temporal metrics\", \"OpenMetrics\", \"PromQL migration\". Not for writing Workflows\u002FActivities (temporal-developer), Worker tuning (temporal-workertuning), or Cloud admin (temporal-cloud\u002Ftemporal-ops).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[980,983,986,989],{"name":981,"slug":982,"type":16},"Datadog","datadog",{"name":984,"slug":985,"type":16},"Metrics","metrics",{"name":987,"slug":988,"type":16},"Monitoring","monitoring",{"name":990,"slug":991,"type":16},"Observability","observability",1,"https:\u002F\u002Fgithub.com\u002Ftemporalio\u002Fskill-temporal-observability","2026-06-09T07:35:44.598916",{"items":996,"total":992},[997],{"slug":4,"name":4,"fn":5,"description":6,"org":998,"tags":999,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1000,1001,1002,1003],{"name":14,"slug":15,"type":16},{"name":19,"slug":20,"type":16},{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16}]