version: "0.1" name: "cicd-debugger-env" description: "AI environment for debugging CI/CD pipelines with deterministic + LLM grading" entrypoint: command: "python" args: - "inference.py" interface: observation_type: "json" action_type: "json" max_steps: 30 tasks: - id: "cicd-debugger-001" description: "Fix typo in npm test command" difficulty: "easy" metadata: broken_token: "npm tset" fixed_token: "npm test" - id: "cicd-debugger-002" description: "Fix YAML indentation in test job" difficulty: "easy" - id: "cicd-debugger-003" description: "Fix missing checkout step" difficulty: "easy" - id: "cicd-debugger-004" description: "Fix wrong Python version pin" difficulty: "easy" - id: "cicd-debugger-005" description: "Fix dependency install command" difficulty: "medium" - id: "cicd-debugger-006" description: "Fix cache key mismatch" difficulty: "medium" - id: "cicd-debugger-007" description: "Fix environment variable propagation" difficulty: "medium" - id: "cicd-debugger-008" description: "Fix test stage permissions" difficulty: "medium" - id: "cicd-debugger-009" description: "Fix artifact upload path" difficulty: "medium" - id: "cicd-debugger-010" description: "Fix matrix include-exclude logic" difficulty: "hard" - id: "cicd-debugger-011" description: "Fix conditional deploy stage logic" difficulty: "hard" - id: "cicd-debugger-012" description: "Fix multi-job dependency ordering" difficulty: "hard" - id: "cicd-debugger-013" description: "Fix cross-platform shell command behavior" difficulty: "hard"