← ClaudeAtlas

temporallisted

Help developers use Temporal for durable execution workflows. Covers CLI commands, SDK patterns (Go, TypeScript, Python, Java), workflow orchestration, and architectural decisions.
rube-de/cc-skills · ★ 10 · AI & Automation · score 78
Install: claude install-skill rube-de/cc-skills
# Temporal Durable Execution Comprehensive assistance for the Temporal durable execution platform: CLI operations, SDK development across Go/TypeScript/Python/Java, workflow design, and architectural decisions. ## Triggers Use this skill when the user mentions: "temporal", "durable execution", "workflow orchestration", "temporal cli", "temporal sdk", "temporal worker", "temporal activity", "temporal workflow", "temporal schedule", "temporal signal", "temporal query". ## Quick Start ### Local Development Server ```bash # Install CLI brew install temporal # macOS curl -sSf https://temporal.download/cli | sh # Linux # Start local dev server (with Web UI at localhost:8233) temporal server start-dev # Start with persistent storage temporal server start-dev --db-filename temporal.db ``` ### First Workflow (TypeScript example) ```bash npm init -y npm install @temporalio/client @temporalio/worker @temporalio/workflow @temporalio/activity ``` ## Common Tasks by Intent | Developer wants to... | Action | |-----------------------|--------| | Start a workflow | `temporal workflow start --type MyWorkflow --task-queue my-queue --input '{"key":"val"}'` | | Check workflow status | `temporal workflow describe -w <workflow-id>` | | View event history | `temporal workflow show -w <workflow-id>` | | Cancel a workflow | `temporal workflow cancel -w <workflow-id>` | | Send a signal | `temporal workflow signal -w <workflow-id> --name signal-name --input '{"data":true}'` | | Query wor