temporal-developer

temporal-developer is a skill for Claude Code, Codex from latitude-dev/latitude-llm. It costs 125 tokens per session (1,337 once invoked), scanned A, original, MIT.

A development guide for Temporal, a platform that runs long-lived workflows and resumes them after failures. It covers workflows, activities, workers, signals, queries, replays, and timeout-related issues in Python, TypeScript, and Go.

In plain words
What is it for?
Use it to create or debug Temporal workflows and activities, configure workers, handle signals and queries, investigate timeouts, and fix replay or non-determinism problems.
Why use it?
It helps developers build workflow code that behaves reliably across restarts and failures. It also addresses common problems such as stuck workflows and non-deterministic replay errors.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/latitude-dev/latitude-llm/temporal-developer
Any agent
npx skills add latitude-dev/latitude-llm --skill temporal-developer
Clone the repo
git clone --depth 1 https://github.com/latitude-dev/latitude-llm

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for temporal-developer

README.md
[![agentmods](https://agentmods.dev/badge/skills/latitude-dev/latitude-llm/temporal-developer.svg)](https://agentmods.dev/skills/latitude-dev/latitude-llm/temporal-developer)
Your own site
<a href="https://agentmods.dev/skills/latitude-dev/latitude-llm/temporal-developer"><img src="https://agentmods.dev/badge/skills/latitude-dev/latitude-llm/temporal-developer.svg" alt="Measured on agentmods" height="20"></a>
Per session 125 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,337 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00125 $0.01337
Opus 5 $0.00063 $0.00668
Sonnet 5 $0.00025 $0.00267
Haiku 4.5 $0.00013 $0.00134

Measured 3d ago against content hash f3af03e5f77e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

temporal-developer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/temporal-developer/SKILL.md · 118 lines

How it starts

The opening of the file, as written. The whole thing — 118 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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, and Go.

Core Architecture

┌─────────────────────────────────────────────────────────────────┐
│                     Temporal Cluster                            │
│  ┌─────────────────┐  ┌─────────────────┐  ┌────────────────┐  │
│  │  Event History  │  │   Task Queues   │  │   Visibility   │  │
│  │  (Durable Log)  │  │  (Work Router)  │  │   (Search)     │  │
│  └─────────────────┘  └─────────────────┘  └────────────────┘  │
└─────────────────────────────────────────────────────────────────┘
                              ▲
                              │ Poll / Complete
                              ▼
┌─────────────────────────────────────────────────────────────────┐
│                         Worker                                   │
│  ┌─────────────────────────┐  ┌──────────────────────────────┐  │
│  │   Workflow Definitions  │  │   Activity Implementations   │  │
│  │   (Deterministic)       │  │   (Non-deterministic OK)     │  │
│  └─────────────────────────┘  └──────────────────────────────┘  │
└─────────────────────────────────────────────────────────────────┘

Components:

  • Workflows - Durable, deterministic functions that orchestrate activities
  • Activities - Non-deterministic operations (API calls, I/O) that can fail and retry
  • Workers - Long-running processes that poll task queues and execute code
  • Task Queues - Named queues connecting clients to workers

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

Read the full file on GitHub · 118 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 118 lines · 125 tokens per session scan A f3af03e5f77e

Subscribe to this mod's changes

temporal-developer is a skill published in the GitHub repository latitude-dev/latitude-llm (4,611 stars, last pushed yesterday), licensed MIT. It adds 125 tokens to every session and 1,337 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.