or run

tessl search
Log in

Version

Workspace
tessl
Visibility
Public
Created
Last updated
Describes
pypipkg:pypi/invoke@2.2.x
tile.json

tessl/pypi-invoke

tessl install tessl/pypi-invoke@2.2.0

Pythonic 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%

rubric.jsonevals/scenario-9/

{
  "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
    }
  ]
}