plugins marketplace
← All plugins

temporal

v0.2.2

Comprehensive skill for the entire Temporal lifecycle — developing applications, using the Temporal CLI, running and managing Temporal Server, and working with Temporal Cloud.

Codex1 skill

by TemporalMIT5kupdated 3 weeks ago

Source

git clone https://github.com/openai/plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/temporal/ inside the repository.

Layout

plugins/temporal/
├── .codex-plugin/plugin.json
└── skills/temporal-developer/SKILL.md

Skills1

temporal-developerskills/temporal-developer/SKILL.md

Develop, debug, and manage Temporal applications across Python, TypeScript, Go, and Java. Use when the user is building workflows, activities, or workers with a Temporal SDK, debugging issues like non-determinism errors, stuck workflows, or activity retries, using Temporal CLI, Temporal Server, or Temporal Cloud, or working with durable execution concepts like signals, queries, heartbeats, versioning, continue-as-new, child workflows, or saga patterns.

Manifests1

plugins/temporal/.codex-plugin/plugin.json
{
  "name": "temporal",
  "version": "0.2.2",
  "description": "Comprehensive skill for the entire Temporal lifecycle — developing applications, using the Temporal CLI, running and managing Temporal Server, and working with Temporal Cloud.",
  "author": {
    "name": "Temporal",
    "url": "https://temporal.io/"
  },
  "homepage": "https://temporal.io/",
  "repository": "https://github.com/temporalio/codex-temporal-plugin",
  "license": "MIT",
  "keywords": [
    "temporal",
    "workflow",
    "durable-execution",
    "python",
    "typescript",
    "go",
    "java",
    "microservices",
    "distributed-systems"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Temporal",
    "shortDescription": "Develop, run, and manage Temporal applications across the entire platform lifecycle",
    "longDescription": "Comprehensive guidance for working with Temporal — developing workflows, activities, and workers across Python, TypeScript, Go, and Java SDKs; using the Temporal CLI for local development and operations; running and managing self-hosted Temporal Server; and working with Temporal Cloud for production deployments.",
    "developerName": "Temporal",
    "category": "Developer Tools",
    "capabilities": [
      "Read",
      "Write"
    ],
    "websiteURL": "https://temporal.io/",
    "privacyPolicyURL": "https://temporal.io/global-privacy-policy",
    "termsOfServiceURL": "https://temporal.io/terms-of-service",
    "brandColor": "#141414",
    "defaultPrompt": [
      "Create a workflow using Temporal."
    ],
    "composerIcon": "./assets/temporal-logo.svg",
    "logo": "./assets/temporal-logo.svg",
    "screenshots": []
  }
}