| name: openops | |
| version: 0.1.0 | |
| description: "Production incident management environment for AI agents" | |
| author: "Arya Singh" | |
| tags: | |
| - incident-response | |
| - devops | |
| - production-management | |
| - real-world | |
| environment_class: server.my_env_environment.MyEnvEnvironment | |
| action_class: models.IncidentAction | |
| observation_class: models.IncidentObservation | |
| state_class: models.IncidentState | |
| tasks: | |
| - id: 1 | |
| name: "Simple API Crash" | |
| difficulty: easy | |
| description: "API service crashed - restart to restore" | |
| - id: 2 | |
| name: "Bad Deployment" | |
| difficulty: medium | |
| description: "Database deployment broke queries - rollback needed" | |
| - id: 3 | |
| name: "Cascading Failure" | |
| difficulty: hard | |
| description: "Database overload causing API failures - scale and restart" | |
| grading: | |
| task_1: graders.grade_task_1 | |
| task_2: graders.grade_task_2 | |
| task_3: graders.grade_task_3 |