Runner definition, and a tilebox.workflow.toml file. The Tilebox command-line tool uses these files to build a workflow release, discover the tasks it can execute, and make the release available to release runners after deployment.
Keep the project small and importable from its root. Release builds import the configured runner object, check that the Python runtime starts, and package the selected files into an immutable artifact.
Project structure
Use a layout where task code and the runner definition are importable from the project root.my-workflow
pyproject.toml
uv.lock
tilebox.workflow.toml
my_workflow
__init__.py
tasks.py
runner.py
Define tasks
Put task classes in a module that can be imported during release validation.Python
Define the runner
Create a module that exports aRunner object. This object defines the task registrations for the workflow, and release builds import it during validation.
Python
Configure the workflow release
Pointtilebox.workflow.toml at the exported Runner object and include the files required by the release runner.
build-release and publish-release, discovers its task identifiers, and records them in the workflow release. A release runner later loads the release artifact and invokes the Python runtime through the command-line tool.
Keep release artifacts small
Include source code, lock files, and small configuration. Exclude local virtual environments, test caches, downloaded provider data, model checkpoints, generated outputs, and other large runtime artifacts. If a task needs a large model or reference file, fetch it lazily at runtime and cache it in a deterministic runner-local path such as~/.cache/tilebox/.... The workflow should still work when a release runner starts with an empty cache.