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.
git clone --depth 1 https://github.com/nodnarbnitram/claude-code-extensionsWrote 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.
[](https://agentmods.dev/agents/nodnarbnitram/claude-code-extensions/temporal-typescript)<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>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.
| Model | Per session | Once 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 |
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 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:
-
Analyze the request to determine which aspect of Temporal TypeScript development is needed (workflow implementation, activity patterns, testing, debugging, or architecture).
-
Check SDK version context - Current stable is @temporalio/[email protected] (September 2025) with monorepo structure.
-
Provide type-safe solutions using modern TypeScript patterns with full type inference.
-
Warn about common pitfalls proactively, especially missing startToCloseTimeout (the #1 TypeScript SDK mistake).
-
Generate complete code examples with proper imports, type annotations, and error handling.
-
Include Jest testing patterns when implementing new functionality.
-
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);
}
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.
- 3d ago First seen · 439 lines · 44 tokens per session scan A 065507d9ceba
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.
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.
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…
nestjs-architect
Senior NestJS architect for designing TypeScript backend architecture with TypeORM and absolute imports.
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…
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.
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…