tessl install tessl/pypi-luigi@2.8.0Python workflow management framework for building complex pipelines of batch jobs with dependency resolution and task scheduling.
Agent Success
Agent success rate when using this tile
72%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.31x
Baseline
Agent success rate without this tile
55%
A tiny two-stage workflow that relies on the dependency's built-in configuration system to route logs and send failure notifications. The runtime should hand the dependency a standard config file (ini/toml) to decide where logs go, how they are prefixed, and who receives alerts—no custom parsing or manual email/log wiring.
main with a config path feeds that file into the dependency's config loader so scheduler address, log destination, and notification recipients all come from config before tasks execute, and returns success when both stages pass. @test@generates
def main(config_path: str | None = None) -> int:
"""
Executes a two-stage workflow controlled by a config file.
Returns 0 on success, non-zero when a stage fails.
"""Workflow orchestration with configuration-driven logging and notification support.