tessl install tessl/pypi-invoke@2.2.0Pythonic task execution library for managing shell-oriented subprocesses and organizing executable Python code into CLI-invokable tasks
Agent Success
Agent success rate when using this tile
96%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.25x
Baseline
Agent success rate without this tile
77%
Build a simple task automation script that uses configuration files to manage application settings.
Create a Python script that defines tasks for managing application settings. The tool should:
Your solution should work with the following configuration files:
invoke.yaml (default configuration):
app:
name: myapp
port: 8000
debug: true
deploy:
timeout: 30
backup: trueproduction.yaml (production overrides):
app:
port: 80
debug: false
deploy:
timeout: 60Implement the following tasks in a file named tasks.py:
@generates
from invoke import task
@task
def show_config(c):
"""Display current application configuration."""
pass
@task
def deploy(c):
"""Print deployment message using configuration."""
passProvides task execution and configuration management capabilities.
@satisfied-by