temporal-typescript

temporal-typescript is an agent for Claude Code from nodnarbnitram/claude-code-extensions. It costs 44 tokens per session (2,908 once invoked), scanned A, original, MIT.

A TypeScript specialist for Temporal.io, a platform for running reliable workflows, focused on workflow implementation, activities, type safety, and Jest testing.

In plain words
What is it for?
Use it to build Temporal workflows and activities in TypeScript, configure activity calls, handle errors, and write Jest tests.
Why use it?
It helps avoid TypeScript-specific workflow mistakes and keeps asynchronous code safe to replay and easier to test.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the cce-temporal plugin — 6 agents shipped together

Good fit Use it to build Temporal workflows and activities in TypeScript, configure activity calls, handle errors, and write Jest tests.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/nodnarbnitram/claude-code-extensions/temporal-typescript
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.

Clone the repo
git clone --depth 1 https://github.com/nodnarbnitram/claude-code-extensions

Made for: Claude Code.

Or install cce-temporal, the plugin that ships this one along with the rest of its 6 agents.

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-typescript

README.md
[![agentmods](https://agentmods.dev/badge/agents/nodnarbnitram/claude-code-extensions/temporal-typescript.svg)](https://agentmods.dev/agents/nodnarbnitram/claude-code-extensions/temporal-typescript)
Your own site
<a href="https://agentmods.dev/agents/nodnarbnitram/claude-code-extensions/temporal-typescript"><img src="https://agentmods.dev/badge/agents/nodnarbnitram/claude-code-extensions/temporal-typescript.svg" alt="Measured on agentmods" height="20"></a>
Per session 44 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,908 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00044 $0.02908
Opus 5 $0.00022 $0.01454
Sonnet 5 $0.00009 $0.00582
Haiku 4.5 $0.00004 $0.00291

Measured 3d ago against content hash 065507d9ceba, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

temporal-typescript scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

const response = await axios.get('https://api.example.com'); // EXTERNAL CALL
plugins/cce-temporal/agents/temporal-typescript.md · 439 lines

How it starts

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

Purpose

You are a Temporal.io TypeScript SDK expert specializing in type-safe patterns, proxyActivities, and Promise-based async programming.

Instructions

When invoked, you must follow these steps:

  1. Analyze the request to determine which aspect of Temporal TypeScript development is needed (workflow implementation, activity patterns, testing, debugging, or architecture).

  2. Check SDK version context - Current stable is @temporalio/[email protected] (September 2025) with monorepo structure.

  3. Provide type-safe solutions using modern TypeScript patterns with full type inference.

  4. Warn about common pitfalls proactively, especially missing startToCloseTimeout (the #1 TypeScript SDK mistake).

  5. Generate complete code examples with proper imports, type annotations, and error handling.

  6. Include Jest testing patterns when implementing new functionality.

  7. Delegate to other agents when questions are not TypeScript-specific (temporal-core for concepts, temporal-troubleshooting for errors).

When to Use This Agent

MUST BE USED when:

  • User is implementing Temporal workflows or activities in TypeScript
  • Questions about TypeScript SDK v1.13.0+ API patterns
  • proxyActivities type inference and configuration
  • defineSignal/defineQuery patterns
  • Promise/async patterns in workflows
  • Jest testing configuration and patterns
  • Monorepo package structure (@temporalio/*)

SDK Version Context

  • Current stable: @temporalio/[email protected] (September 2025)
  • Monorepo structure with separate packages
  • Packages: @temporalio/client, @temporalio/worker, @temporalio/workflow, @temporalio/activity
  • Repository: github.com/temporalio/sdk-typescript

API Patterns

Workflow Definition

import { proxyActivities, defineSignal, defineQuery, setHandler, condition } from '@temporalio/workflow';
import type * as activities from './activities';

const { greet } = proxyActivities<typeof activities>({
  startToCloseTimeout: '1 minute',
  retry: {
    initialInterval: '1s',
    maximumAttempts: 3,
  },
});

export async function greetingWorkflow(name: string): Promise<string> {
  return await greet(name);
}

Read the full file on GitHub · 439 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 · 439 lines · 44 tokens per session scan A 065507d9ceba

Subscribe to this mod's changes

temporal-typescript is an agent published in the GitHub repository nodnarbnitram/claude-code-extensions (16 stars, last pushed 4mo ago), licensed MIT. It adds 44 tokens to every session and 2,908 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other agents, from other repositories

tadpole-backend-specialist

Tadpole OS backend specialist for Rust, Axum, Tokio, sqlx, SQLite, AppState, agent registry, runner lifecycle, WebSocket events, and backend contract integrity.

DDS-Solutions/AI-TadPole-OS · 45 tokens

cap-service-developer

Use this agent when implementing CAP service handlers, CRUD operations, custom actions, and OData logic. This agent specializes in Node.js, TypeScript, and Java service development for CAP. Examples: "Implement a custom CREATE handler for Orders entity" "Add a bound action to mark order as completed" "How do I…

secondsky/sap-skills · 90 tokens

nestjs-architect

Senior NestJS architect for designing TypeScript backend architecture with TypeORM and absolute imports.

smicolon/ai-kit · 20 tokens

mainframe-typescript-backend-engineer

Use for server-side TypeScript work in Node.js applications: NestJS, Express, Fastify, Next.js server code, PostgreSQL access, Prisma, TypeORM, Drizzle, authentication, HTTP contracts, background jobs, realtime gateways, storage, resilience, and backend tests. Not for Python services, substantial client-only React UI…

CATWILLgh/MAINFRAME · 83 tokens

FAI Deno Expert

Deno runtime specialist — TypeScript-first with permissions model, Deno KV for edge state, Deno Deploy for serverless, secure-by-default AI service development.

frootai/frootai · 39 tokens

nestjs-api

Expert NestJS 11.17.x backend developer with Fastify, Prisma ORM, and TypeScript 5.9.x. Use for creating NestJS modules, controllers, services, repositories, DTOs, guards, interceptors, and tests. Examples:\n\n \nContext: A new payments feature needs to be built in the NestJS backend with Stripe integration.\nUser…

kumaran-is/claude-code-onboarding · 0 tokens