Transpiler Mate API

transpiler-mate-api is the stable, execution-environment-neutral contract shared by Transpiler Mate runtimes and independently distributed transpiler plugins.

Use it to declare a stateless plugin, describe its typed options, inspect a runtime-prepared CWL context, and report failures in a form a host can understand.

Choose what you need

Scope

This package provides Python contracts. It deliberately does not provide:

  • plugin discovery or a Python entry-point group;
  • a command-line or HTTP interface;
  • CWL source loading and normalization;
  • application orchestration;
  • an output or artifact protocol;
  • logging, retry, exit-code, or error-rendering policy.

Those responsibilities belong to a runtime. Consequently, a plugin package can expose a valid plugin object using this API, but the host runtime determines how that object is discovered and invoked.

Requirements

  • Python 3.10 or newer
  • Pydantic 2
  • CWL objects from cwl-utils

Install the public contract with:

python -m pip install transpiler-mate-api