Agent Plugins Marketplace
All plugins

temporal-data

v1.30.0

Temporal database patterns for system-time versioned tables

CodexClaude Code2 Skills

By Craig MotlinLicense: Apache-2.015 GitHub starsUpdated 15 hours ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
2 skill or MCP entries
Source updated
Aug 26, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install plugin

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add temporal-data@agent-plugin-marketplace

Paste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/motlin/claude-code-plugins

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/temporal-data/.

Plugin files

plugins/temporal-data/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/temporal-caching/SKILL.md
└── skills/temporal-data/SKILL.md

Included Skills2

temporal-cachingskills/temporal-caching/SKILL.md

Efficient data loading patterns using system_from/system_to for cache validation. Use when implementing incremental sync, conditional fetches, polling for changes, ETags, high watermarks, or avoiding redundant data transfer in systems with temporal tables.

temporal-dataskills/temporal-data/SKILL.md

Temporal database patterns for system-time versioned tables. Use when working with tables that have system_from/system_to columns, temporal queries, non-destructive updates, merge/sync logic, rollback, or schema migrations involving temporal data.

Plugin manifests2

plugins/temporal-data/.codex-plugin/plugin.json
{
  "name": "temporal-data",
  "version": "1.30.0",
  "description": "Temporal database patterns for system-time versioned tables",
  "author": {
    "name": "Craig Motlin"
  },
  "license": "Apache-2.0",
  "homepage": "https://github.com/motlin/claude-code-plugins/tree/main/plugins/temporal-data",
  "repository": "https://github.com/motlin/claude-code-plugins",
  "keywords": [
    "codex",
    "plugin",
    "temporal",
    "data"
  ],
  "interface": {
    "displayName": "Temporal Data",
    "shortDescription": "Temporal database patterns for system-time versioned tables",
    "longDescription": "Temporal database patterns for system-time versioned tables",
    "developerName": "Craig Motlin",
    "category": "Productivity",
    "capabilities": [
      "Skills"
    ],
    "defaultPrompt": [
      "Use the temporal-data plugin."
    ],
    "brandColor": "#3B82F6"
  },
  "skills": "./skills/"
}
plugins/temporal-data/.claude-plugin/plugin.json
{
  "$schema": "https://anthropic.com/claude-code/plugin.schema.json",
  "name": "temporal-data",
  "description": "Temporal database patterns for system-time versioned tables",
  "version": "1.30.0",
  "license": "Apache-2.0",
  "author": {
    "name": "Craig Motlin"
  },
  "skills": [
    "./skills/temporal-data",
    "./skills/temporal-caching"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[temporal-data on Agent Plugins Marketplace](https://pluginsmp.com/plugins/temporal-data)