Pythonic task execution library for managing shell-oriented subprocesses and organizing executable Python code into CLI-invokable tasks
Overall
score
96%
{
"context": "This criteria evaluates how well the engineer uses Invoke's Collection system to organize tasks into hierarchical namespaces. It focuses on proper use of Collection classes, sub-collection creation, and task organization patterns.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Collection import",
"description": "Imports the Collection class from the invoke module",
"max_score": 10
},
{
"name": "Task decorator usage",
"description": "Uses the @task decorator to define all individual task functions",
"max_score": 15
},
{
"name": "Sub-collection creation",
"description": "Creates three separate Collection instances for db, test, and deploy namespaces",
"max_score": 20
},
{
"name": "Task addition",
"description": "Adds individual tasks to their respective sub-collections using the add_task() method or Collection constructor",
"max_score": 20
},
{
"name": "Root collection",
"description": "Creates a root Collection instance and adds sub-collections using add_collection() method",
"max_score": 20
},
{
"name": "Namespace naming",
"description": "Properly names sub-collections (db, test, deploy) when adding them to the root collection to enable dotted notation access",
"max_score": 15
}
]
}Install with Tessl CLI
npx tessl i tessl/pypi-invokedocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10