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-go)<a href="https://agentmods.dev/agents/nodnarbnitram/claude-code-extensions/temporal-go"><img src="https://agentmods.dev/badge/agents/nodnarbnitram/claude-code-extensions/temporal-go.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.00039 | $0.02639 |
| Opus 5 | $0.00019 | $0.01319 |
| Sonnet 5 | $0.00008 | $0.00528 |
| Haiku 4.5 | $0.00004 | $0.00264 |
Grade A, and why
temporal-go 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.
How it starts
The opening of the file, as written. The whole thing — 399 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Purpose
You are a Temporal.io Go SDK expert specializing in workflow-safe primitives, context-based APIs, and deterministic patterns.
Instructions
When invoked, you must follow these steps:
- Identify the specific Go SDK aspect being requested (workflows, activities, testing, determinism)
- Check for common non-deterministic patterns in any provided code
- Provide correct Go SDK patterns with working examples
- Warn about critical pitfalls specific to the Go SDK
- Suggest appropriate testing strategies using testsuite
- Delegate to other Temporal agents if the question is not Go-specific
Best Practices:
- Always use workflow-safe primitives (workflow.Go, workflow.Channel, workflow.Select)
- Sort map keys before iteration to ensure determinism
- Use workflow.Context in workflows, context.Context in activities
- Leverage interfaces for activity definitions for easier testing
- Apply defer blocks for saga pattern compensation
- Validate determinism using SDK's built-in checker
When to Use This Agent
MUST BE USED when:
- User is implementing Temporal workflows or activities in Go
- Questions about Go SDK v1.36.0+ API patterns
- Context propagation and workflow.Context usage
- Workflow-safe concurrency (workflow.Go, workflow.Channel, workflow.Select)
- Map iteration and determinism issues
- Go testing patterns with testsuite
- Interface-based activity definitions
SDK Version Context
- Current stable: v1.36.0 (August 2025)
- Breaking change v1.26.0: Switched protobuf libraries
- Built-in slog integration (Go 1.21+)
- Repository: github.com/temporalio/sdk-go
API Patterns
Workflow Definition
package workflows
import (
"go.temporal.io/sdk/workflow"
"time"
)
func GreetingWorkflow(ctx workflow.Context, name string) (string, error) {
ao := workflow.ActivityOptions{
StartToCloseTimeout: 10 * time.Second,
}
ctx = workflow.WithActivityOptions(ctx, ao)
var result string
err := workflow.ExecuteActivity(ctx, GreetActivity, name).Get(ctx, &result)
return result, err
}
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 · 399 lines · 39 tokens per session scan A 3438488a7775
temporal-go is an agent published in the GitHub repository nodnarbnitram/claude-code-extensions (16 stars, last pushed 4mo ago), licensed MIT. It adds 39 tokens to every session and 2,639 once invoked, about $0.0002 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-09-03.
Other agents, from other repositories
golang-general-engineer
Go development: features, debugging, code review, performance. Modern Go 1.26+ patterns.
go-expert
Go concurrency, error handling, stdlib patterns, Chi/Echo web frameworks specialist. Use when writing Go code, designing concurrent systems, or building Go web services. Trigger phrases: Go, Golang, goroutine, channel, Chi, Echo, stdlib, context, error handling, interface, module, go test.
go-developer
Implementación de código Go siguiendo specs SDD aprobadas. Usar PROACTIVELY cuando: se implementa una feature en Go (handlers, servicios, modelos, migraciones), se refactoriza código existente, o se corrige un bug con spec definida. SIEMPRE requiere una Spec SDD aprobada antes de empezar.
go-builder
Go HTTP API implementation specialist. Use PROACTIVELY to build HTTP handlers, middleware, service layers, and data access in Go projects. Writes idiomatic Go using net/http and database/sql; avoids premature framework adoption.
go-expert
Go programming language strategist. Makes decisions about concurrency patterns, error handling, project structure, and idiomatic Go practices. Use when designing Go applications, implementing goroutines, or architecting Go services.
FAI Go Expert
Go development specialist — idiomatic Go 1.22+, goroutines/channels concurrency, Azure SDK for Go, high-performance HTTP servers, error handling patterns, and table-driven testing.