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 command-line task management system that organizes various development workflow tasks into logical namespaces.
Your system should organize tasks into the following structure:
Database tasks - Operations for database management
db.migrate - Run database migrationsdb.seed - Seed the database with initial datadb.reset - Reset the database (clear all data)Testing tasks - Operations for running tests
test.unit - Run unit teststest.integration - Run integration teststest.all - Run all testsDeployment tasks - Operations for deploying the application
deploy.staging - Deploy to staging environmentdeploy.production - Deploy to production environmentAll tasks should accept a context parameter and print a message indicating what operation they would perform (no actual implementation needed).
The system should support:
db.migrate)@generates
# Main collection that organizes all tasks
# Should be importable and executable via CLIProvides task execution and organization capabilities.
@satisfied-by