PluginBench
Skill
Official
Pass
Audit score 90

temporal-developer

temporalio/skill-temporal-developer

Develop, debug, and manage durable workflows across Python, TypeScript, Go, Java, .NET, Ruby, and Rust using Temporal.

What is temporal-developer?

Temporal is a durable execution platform that automatically survives failures by replaying workflow history. This skill guides you through building workflows and activities, debugging non-determinism errors and stuck workflows, managing workers and task queues, and implementing patterns like signals, queries, sagas, and versioning. Use it when developing Temporal applications, running dev servers, or interacting with workflows via CLI.

  • Build deterministic workflows and non-deterministic activities across 7 languages
  • Debug non-determinism errors, stuck workflows, activity retries, and history replay issues
  • Run local dev servers with Temporal CLI or deploy to self-hosted and Temporal Cloud clusters
  • Implement durable patterns: signals, queries, updates, heartbeats, child workflows, continue-as-new, and sagas
  • Manage workers, task queues, and multi-tenant fairness to prevent queue starvation
  • Version workflow code safely while workflows are running in production

How to install temporal-developer

npx skills add https://github.com/temporalio/skill-temporal-developer --skill temporal-developer
Prerequisites
  • Temporal CLI installed (check with `temporal` command; install via references/core/install_cli.md if needed)
  • One of: Python, TypeScript, Go, Java, .NET, Ruby, or Rust development environment
  • A running Temporal Cluster (local dev server, self-hosted, or Temporal Cloud account)
Claude Code
Cursor
Windsurf
Cline

How to use temporal-developer

  1. 1.Read the language-specific getting started guide (e.g., references/python/python.md for Python)
  2. 2.Review references/core/determinism.md to understand history replay and why determinism matters
  3. 3.Start a local dev server with `temporal server start-dev` or connect to your cluster
  4. 4.Define workflow and activity code in your language following the SDK patterns
  5. 5.Run a worker process to poll task queues and execute your code
  6. 6.Use Temporal CLI commands (temporal workflow start, signal, query, update) to interact with running workflows
  7. 7.Consult references/core/troubleshooting.md and references/core/error-reference.md when debugging issues

Use cases

Good for
  • Building a payment workflow that retries failed transactions and survives server restarts
  • Debugging why a workflow is stuck or producing non-determinism errors during replay
  • Starting a local Temporal dev server for testing workflows before deployment
  • Sending signals to running workflows or querying their state from a client
  • Implementing a saga pattern for distributed transactions across multiple services
Who it's for
  • Backend engineers building durable, fault-tolerant workflows
  • DevOps engineers deploying and managing Temporal clusters
  • Full-stack developers implementing long-running business processes
  • Platform teams managing multi-tenant or tiered workload systems

temporal-developer FAQ

What is the difference between a workflow and an activity?

Workflows are deterministic orchestration functions that define the logic of your process; they must be pure and replay-safe. Activities are non-deterministic operations (API calls, I/O, etc.) that can fail and be retried. Workflows call activities to do the actual work.

Why do I get a non-determinism error?

Non-determinism errors occur when replayed workflow code generates different commands than the original execution. Common causes: random logic, timestamps, loops with non-deterministic iteration, or SDK calls outside activities. See references/core/determinism.md for detailed explanation and fixes.

Can I change my workflow code while workflows are running?

Yes, using versioning strategies. Temporal allows you to safely evolve workflow code without blocking in-flight workflows. See references/core/versioning.md for patterns like workflow versioning and continue-as-new.

How do I prevent one tenant from starving others in a multi-tenant system?

Use Task Queue Fairness (references/core/priority-fairness.md) to assign each tenant a virtual queue and round-robin dispatch across workers, preventing high-volume tenants from monopolizing capacity.

What are the three ways to run a Temporal Cluster?

Temporal CLI dev server (local, single-process, development only), self-hosted (you manage infrastructure and database), and Temporal Cloud (fully managed production service).

Full instructions (SKILL.md)

Source of truth, from temporalio/skill-temporal-developer.


name: temporal-developer description: 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". version: 0.5.0

Skill: temporal-developer

Overview

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.

Core Architecture

The 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:

  • Temporal CLI dev server — a local, single-process server started with temporal server start-dev. Suitable for development and testing only, not production.
  • Self-hosted — you deploy and manage the Temporal server and its dependencies (e.g., database) in your own infrastructure for production use.
  • Temporal Cloud — a fully managed production service operated by Temporal. No cluster infrastructure to manage.

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:

  • Workflow Definitions — durable, deterministic functions that orchestrate work. These must not have side effects.
  • Activity Implementations — non-deterministic operations (API calls, file I/O, etc.) that can fail and be retried.

Workers communicate with the Cluster via a poll/complete loop: they poll a Task Queue for tasks, execute the corresponding Workflow or Activity code, and report results back.

History Replay: Why Determinism Matters

Temporal achieves durability through history replay:

  1. Initial Execution - Worker runs workflow, generates Commands, stored as Events in history
  2. Recovery - On restart/failure, Worker re-executes workflow from beginning
  3. Matching - SDK compares generated Commands against stored Events
  4. Restoration - Uses stored Activity results instead of re-executing

If Commands don't match Events = Non-determinism Error = Workflow blocked

Workflow CodeCommandEvent
Execute activityScheduleActivityTaskActivityTaskScheduled
Sleep/timerStartTimerTimerStarted
Child workflowStartChildWorkflowExecutionChildWorkflowExecutionStarted

See references/core/determinism.md for detailed explanation.

Getting Started

Ensure Temporal CLI is installed

Check if temporal CLI is installed. If not, follow the instructions at references/core/install_cli.md to install it for your platform.

Read All Relevant References

  1. First, read the getting started guide for the language you are working in:
    • Python -> read references/python/python.md
    • TypeScript -> read references/typescript/typescript.md
    • Go -> read references/go/go.md
    • Java -> read references/java/java.md
    • .NET (C#) -> read references/dotnet/dotnet.md
    • Ruby -> read references/ruby/ruby.md
    • Rust -> read references/rust/rust.md (in Public Preview)
  2. Second, read appropriate core and language-specific references for the task at hand.

Primary References

  • references/core/determinism.md - Why determinism matters, replay mechanics, basic concepts of activities
    • Language-specific info at references/{your_language}/determinism.md
  • references/core/patterns.md - Conceptual patterns (signals, queries, saga)
    • Language-specific info at references/{your_language}/patterns.md
  • references/core/gotchas.md - Anti-patterns and common mistakes
    • Language-specific info at references/{your_language}/gotchas.md
  • references/core/versioning.md - Versioning strategies and concepts - how to safely change workflow code while workflows are running
    • Language-specific info at references/{your_language}/versioning.md
  • references/core/standalone-activities.md - Standalone Activities: run an Activity directly from a Client without a Workflow (Public Preview)
    • Language-specific info at references/{your_language}/standalone-activities.md
  • references/core/troubleshooting.md - Decision trees, recovery procedures
  • references/core/error-reference.md - Common error types, workflow status reference
  • references/core/interactive-workflows.md - Testing signals, updates, queries
  • references/core/dev-management.md - Dev cycle & management of server and workers
  • references/core/cli-workflow-commands.md - Developer-facing CLI commands for workflow interaction (start, execute, signal, query, update)
  • references/core/ai-patterns.md - AI/LLM pattern concepts
    • Language-specific info at references/{your_language}/ai-patterns.md, if available. Currently Python only.

Task Queue Priority and Fairness

If 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.

Priority and Fairness also apply to tiered workloads (batch vs. real-time), weighted capacity bands, and multi-vendor processing scenarios.

  • references/core/priority-fairness.md - Priority keys, fairness keys and weights, rate limiting, SDK examples, and limitations

Additional Topics

  • references/{your_language}/observability.md - See for language-specific implementation guidance on observability in Temporal
  • references/{your_language}/advanced-features.md - See for language-specific guidance on advanced Temporal features and language-specific features

Third-Party Integrations

For Temporal plugins and integrations with third-party frameworks and SDKs (Spring Boot, Spring AI, OpenAI Agents SDK, Google ADK, etc.), see references/integrations.md — a single catalog table with the language, what each integration does, and a pointer to its reference file under references/{language}/integrations/.

Feedback

Reporting Issues in This Skill

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 https://github.com/temporalio/skill-temporal-developer/issues/new. Do not file the issue autonomously.

Related skills

More from temporalio/skill-temporal-developer and the wider catalog.

WEweread-skills logo

weread-skills

tencent/wechatreading

Search, manage, and explore WeChat Reading books with notes, reviews, and personalized recommendations.

20k installs
AIai-model-nodejs logo

ai-model-nodejs

tencentcloudbase/cloudbase-skills

Call AI models from Node.js backends, cloud functions, and CloudRun with image generation support.

6.9k installs
AIai-model-nodejs logo

ai-model-nodejs

tencentcloudbase/skills

Use this skill for Node.js backend AI via @cloudbase/node-sdk (>=3.16.0) — cloud functions, CloudRun, Express, Koa, NestJS, serverless APIs, scheduled jobs, LLM proxies. Only SDK supporting image generation (ai.createImageModel + generateImage). Text models via ai.createModel with groups cloudbase, hunyuan-exp, or custom-*. Model IDs (deepseek-v4-flash, deepseek-v3.2, hunyuan-2.0-instruct-20251111, glm-5, kimi-k2.6) go in the model field of generateText/streamText. MUST run two-step preflight before code — see body. Keywords: backend, 云函数, 云托管, serverless, LLM proxy, agent orchestration, generateText, streamText, generateImage, createModel, hunyuan-image, Token Credits, TokenHub, Hunyuan, DeepSeek, GLM, Kimi, MiniMax. NOT for browser/Web (use ai-model-web) or Mini Program (use ai-model-wechat).

862 installs
AIai-model-web logo

ai-model-web

tencentcloudbase/skills

Use this skill when a browser/Web app (React, Vue, Angular, Next, Nuxt, static sites, SPAs, dashboards, AI chat UI) needs AI models via @cloudbase/js-sdk. Default routing for page/页面/Web/前端/frontend/网页/H5 AI — call directly from browser, do NOT propose a Node.js proxy. Covers generateText and streamText. Models via ai.createModel with groups cloudbase, hunyuan-exp, or custom-*. Model IDs (deepseek-v4-flash, deepseek-v3.2, hunyuan-2.0-instruct-20251111, glm-5, kimi-k2.6) go in the model field. MUST run two-step preflight before code — see body. Keywords: 页面, Web, 前端, React, Vue, Next, Nuxt, SPA, AI chat UI, generateText, streamText, createModel, hunyuan-exp, Token Credits, TokenHub, Hunyuan, DeepSeek, GLM, Kimi, MiniMax. NOT for Node.js backend (use ai-model-nodejs), Mini Program (use ai-model-wechat), or image generation (Node SDK only).

802 installs
AIai-model-wechat logo

ai-model-wechat

tencentcloudbase/skills

Use this skill for WeChat Mini Program AI via wx.cloud.extend.AI (小程序, 企业微信小程序, wx.cloud apps). Features generateText and streamText with callbacks (onText, onEvent, onFinish). Models via wx.cloud.extend.AI.createModel with groups hunyuan-exp (小程序成长计划), cloudbase (main managed), or custom-*. Model IDs (deepseek-v4-flash, deepseek-v3.2, hunyuan-2.0-instruct-20251111, glm-5, kimi-k2.6) go in the data wrapper model field. API differs from JS/Node SDK — streamText needs data wrapper, generateText returns raw response. MUST run two-step preflight before code — see body. Keywords: Mini Program AI, wx.cloud.extend.AI, 小程序成长计划, ai_miniprogram_inspire_plan, Token Credits 资源包, generateText, streamText, createModel, hunyuan-exp, TokenHub, Hunyuan, DeepSeek, GLM, Kimi, MiniMax. NOT for browser/Web (use ai-model-web), Node.js backend (use ai-model-nodejs), or image generation (use ai-model-nodejs).

930 installs
AUauth-nodejs-cloudbase logo

auth-nodejs-cloudbase

tencentcloudbase/skills

CloudBase Node SDK auth guide for server-side identity, user lookup, and custom login tickets. This skill should be used when Node.js code must read caller identity, inspect end users, or bridge an existing user system into CloudBase; not when configuring providers or building client login UI.

838 installs