STET

task_detail

validation/gpt-5-1-codex-mini/flux-pr-1128/task_detail.v1.json

15670 bytes

Back to adjudication
{
  "version": "v1",
  "materialization": {
    "mode": "canonical"
  },
  "identity": {
    "variant_id": "gpt-5-1-codex-mini",
    "requested_model": "gpt-5-1-codex-mini",
    "model_key": "gpt-5-1-codex-mini",
    "run_id": "2026-02-21__03-36-16__gpt-5-1-codex-mini",
    "task_id": "flux-pr-1128",
    "trial_name": "flux-pr-1128.1-of-1.2026-02-21__03-36-16__gpt-5-1-codex-mini"
  },
  "decision": {
    "status": "pass",
    "primary_signal": "tests",
    "matrix_status": "pass_with_warn",
    "reason_codes": [
      "primary_tests",
      "tests_passed",
      "decision_conflict",
      "equivalence_equivalent",
      "review_fail"
    ],
    "flags": [
      "equiv_warn",
      "review_warn"
    ],
    "publish": {
      "include_in_leaderboard": true,
      "weak_signal_risk": false
    },
    "rescue": {
      "candidate": false,
      "eligible": false,
      "decision": "not_candidate",
      "required_artifacts_ok": true
    },
    "notes": [
      "agent retest for \"go test -C v2 ./... -count=1 -timeout=300s\" succeeded on retry"
    ]
  },
  "tests": {
    "outcome": "pass",
    "strength": "strong",
    "commands": [
      "go test -C v2 ./... -count=1 -timeout=300s"
    ],
    "command_results": [
      {
        "command": "go test -C v2 ./... -count=1 -timeout=300s",
        "gold_outcome": "pass",
        "gold_tb_trial_name": "flux-pr-1128.1-of-1.validate-gold-1771692112761383000",
        "gold_failure_mode": "unset",
        "agent_outcome": "pass",
        "agent_tb_trial_name": "flux-pr-1128.1-of-1.validate-override-1771692488878344000",
        "agent_failure_mode": "unset",
        "agent_retried": true
      }
    ],
    "partial_score": {
      "score": 1,
      "numerator": 1,
      "denominator": 1,
      "level": "command",
      "provenance": "fallback_command_level",
      "reason": "test_case_detail_unavailable"
    },
    "tb": {
      "trial_name": "flux-pr-1128.1-of-1.2026-02-21__03-36-16__gpt-5-1-codex-mini",
      "is_resolved": true,
      "failure_mode": "unset",
      "duration_sec": 426.938796,
      "time_budget_sec": 600
    },
    "cache": {
      "cache_hit": false,
      "cache_miss_reason": "missing_pinned_dependencies",
      "environment_group_id": "eg_46b6a6c82a4890b6e6e87c39575fd02c"
    }
  },
  "quality": {
    "equivalence": {
      "status": "used",
      "outcome": "equivalent",
      "evaluator_model": "codex-5.3",
      "confidence": 0.88,
      "issue_type": "stylistic",
      "notes": "The agent patch implements static resolution for root-operation `__typename` (Query/Mutation/Subscription) at planning time, avoids assigning those fields to datasource fetch planning, and updates string resolution to emit the static value. This matches the intended behavior (eliminating backend fetches for root `__typename`) via a different architecture than the gold patch."
    },
    "code_review": {
      "status": "used",
      "signal": "fail",
      "evaluator_model": "codex-5.3",
      "confidence": 0.84,
      "issue_type": "unclear",
      "source_field": "code_review",
      "dimension_scores": {
        "correctness": {
          "score_0_4": 1,
          "confidence_0_1": 0.87,
          "rationale": "The patch implements static root `__typename` handling only in `pkg/...` planner/resolver code, while the requested PR behavior is in the `v2/...` planner pipeline; this likely misses the intended execution path and semantics."
        },
        "edge_case_handling": {
          "score_0_4": 1,
          "confidence_0_1": 0.75,
          "rationale": "The implementation relies on operation-path checks and local planner bookkeeping, but does not include the v2 datasource filtering/resolvability changes needed to consistently avoid backend fetches for root `__typename` across planner stages."
        },
        "introduced_bug_risk": {
          "score_0_4": 2,
          "confidence_0_1": 0.78,
          "rationale": "It introduces a new `StaticValue` fast path into the generic string resolver type, broadening behavior of `resolve.String` globally rather than adding a dedicated static node, which increases regression risk."
        },
        "maintainability_idioms": {
          "score_0_4": 2,
          "confidence_0_1": 0.8,
          "rationale": "The change threads a new map (`staticTypeNameFields`) through planner visitors and adds special logic in multiple places, which is less localized/idiomatic than a dedicated static field node approach."
        }
      },
      "findings": [
        {
          "id": "f1",
          "dimension": "correctness",
          "severity": "major",
          "title": "Patch targets `pkg` planner/resolver instead of the `v2` planning pipeline described by the task",
          "detail": "The requested behavior (and reference implementation) is in `v2/pkg/engine/plan/...`, but this patch modifies `pkg/engine/plan/plan.go` and `pkg/engine/resolve/resolve.go`. That likely leaves the intended v2 planner behavior unchanged.",
          "confidence_0_1": 0.9,
          "citations": [
            {
              "path": "pkg/engine/plan/plan.go",
              "side": "new",
              "start_line": 298,
              "end_line": 299,
              "anchor_kind": "diff",
              "head_sha": "d2044e5abab67824e3fa26ae92ca63ea0e0a6618"
            },
            {
              "path": "pkg/engine/resolve/resolve.go",
              "side": "new",
              "start_line": 1014,
              "end_line": 1033,
              "anchor_kind": "diff",
              "head_sha": "d2044e5abab67824e3fa26ae92ca63ea0e0a6618"
            }
          ]
        },
        {
          "id": "f2",
          "dimension": "introduced_bug_risk",
          "severity": "major",
          "title": "Global `resolve.String` semantics were changed for a planner-specific optimization",
          "detail": "Adding `StaticValue` and a new early return path in `resolveString` changes behavior of a widely used node type. A dedicated static node/value in planning would contain risk better and avoid side effects on unrelated string fields.",
          "confidence_0_1": 0.82,
          "citations": [
            {
              "path": "pkg/engine/resolve/resolve.go",
              "side": "new",
              "start_line": 1014,
              "end_line": 1033,
              "anchor_kind": "diff",
              "head_sha": "d2044e5abab67824e3fa26ae92ca63ea0e0a6618"
            },
            {
              "path": "pkg/engine/resolve/resolve.go",
              "side": "new",
              "start_line": 1563,
              "end_line": 1563,
              "anchor_kind": "diff",
              "head_sha": "d2044e5abab67824e3fa26ae92ca63ea0e0a6618"
            }
          ]
        }
      ],
      "overall": {
        "confidence_overall": 0.84,
        "summary": "The patch likely does not satisfy the intended PR in the targeted v2 planner path, and it introduces a broader resolver-level behavior change that increases regression risk."
      },
      "notes": "The patch likely does not satisfy the intended PR in the targeted v2 planner path, and it introduces a broader resolver-level behavior change that increases regression risk."
    },
    "behavioral_robustness": {
      "status": "used",
      "probe_status": "used",
      "gold_pass_candidate_pass_count": 1,
      "agreement_rate": 1,
      "coverage_delta_status": "unavailable",
      "coverage_delta_reason": "coverage_adapter_unavailable",
      "mutation_lite_status": "unavailable",
      "mutation_lite_reason": "mutation_runner_unavailable",
      "notes": "derived from command-level outcomes; no accepted generated probes"
    },
    "footprint_risk": {
      "status": "used",
      "reason": "none",
      "version": "v1",
      "level": "low",
      "score": 0.2920290653629463,
      "flag": false,
      "severe_flag": false
    },
    "cost": {
      "status": "tokens_only",
      "token_status": "present",
      "cache_token_status": "present",
      "total_input_tokens": 8149667,
      "total_output_tokens": 58928,
      "total_tokens": 8208595,
      "uncached_input_tokens": 1206947,
      "cache_read_input_tokens": 6942720,
      "cached_input_tokens": 6942720,
      "total_cost_usd": 3.2053965,
      "token_source": "openai_cached_tokens_usage",
      "pricing_model_key": "gpt-5.1-codex-mini",
      "pricing_mode": "cache_aware"
    }
  },
  "summary": {
    "task": {
      "matrix_status": "pass_with_warn",
      "tests_outcome": "pass",
      "tests_unknown_cause": null,
      "lane_report_lane": null,
      "lane_report_source": null,
      "lane_report_reasons": null,
      "cache_hit": false,
      "cache_miss_reason": "missing_pinned_dependencies",
      "setup_ms_saved": null,
      "pinned_bytes": null,
      "environment_group_id": "eg_46b6a6c82a4890b6e6e87c39575fd02c",
      "equivalence_status": "used",
      "equivalence_outcome": "equivalent",
      "code_review_status": "used",
      "code_review_signal": "fail",
      "behavioral_robustness_status": "used",
      "coverage_delta_status": "unavailable",
      "mutation_lite_status": "unavailable",
      "probe_accepted_candidates": null,
      "probe_accepted_commands": null,
      "probe_agreement_rate": 1,
      "probe_gold_pass_candidate_pass_count": 1,
      "probe_gold_pass_candidate_fail_count": null,
      "probe_review_required_count": null,
      "flags": [
        "equiv_warn",
        "review_warn"
      ],
      "tb_is_resolved": true,
      "tb_failure_mode": "unset",
      "tb_total_input_tokens": 8149667,
      "tb_total_output_tokens": 58928,
      "tb_total_tokens": 8208595,
      "tb_uncached_input_tokens": 1206947,
      "tb_cache_creation_input_tokens": null,
      "tb_cache_read_input_tokens": 6942720,
      "tb_cached_input_tokens": 6942720,
      "token_status": "present",
      "cache_token_status": "present",
      "token_source": "openai_cached_tokens_usage",
      "task_cost": 3.2053965,
      "cost_status": "present",
      "cost_pricing_mode": "cache_aware",
      "pricing_model_key": "gpt-5.1-codex-mini",
      "equiv_rescue_policy": "on",
      "rescue_candidate": false,
      "rescue_eligible": false,
      "rescue_decision": "not_candidate",
      "publish_include_in_leaderboard": true,
      "publish_exclusion_reasons": [],
      "publish_weak_signal_risk": false,
      "tests_only_outcome": 1,
      "rescue_aware_outcome": 1,
      "partial_score": 1,
      "partial_score_numerator": 1,
      "partial_score_denominator": 1,
      "partial_score_level": "command",
      "partial_score_provenance": "fallback_command_level",
      "partial_score_reason": "test_case_detail_unavailable",
      "partial_score_unknown_count": 0,
      "footprint_risk_status": "used",
      "footprint_risk_reason": "none",
      "footprint_risk_level": "low",
      "footprint_risk_score": 0.2920290653629463,
      "footprint_risk_flag": false,
      "footprint_risk_severe_flag": false
    },
    "run": {
      "model": "gpt-5-1-codex-mini",
      "requested_model": "gpt-5-1-codex-mini",
      "run_id": "2026-02-21__03-36-16__gpt-5-1-codex-mini",
      "passRate": 0.5714285714285714,
      "ciLow": 0.38095238095238093,
      "ciHigh": 0.8095238095238095,
      "effectiveN": 21,
      "tier": 1,
      "validation_counts": {
        "fail_guardrail": 13,
        "fail_high_conf": 1,
        "fail_infra": 2,
        "fail_likely_equiv": 0,
        "fail_no_patch": 1,
        "fail_with_diag": 0,
        "missing": 0,
        "pass": 2,
        "pass_with_warn": 11
      }
    },
    "run_metadata": {
      "agent_name": "codex",
      "model_name": "gpt-5.1-codex-mini",
      "start_time": "2026-02-21T03:36:19.601271+00:00",
      "end_time": "2026-02-21T06:29:08.047412+00:00",
      "commit_hash": "f09baebe0424b002663dfd81a4ba49701bb870e3",
      "accuracy": 0.5,
      "reasoning_effort": "medium"
    }
  },
  "evidence": {
    "task_detail": {
      "path": "validation/gpt-5-1-codex-mini/flux-pr-1128/task_detail.v1.json",
      "exists": true
    },
    "trajectory": {
      "path": "validation/gpt-5-1-codex-mini/flux-pr-1128/trajectory.v1.json",
      "exists": true,
      "non_empty": true,
      "size_bytes": 15389
    },
    "validation": {
      "path": "validation/gpt-5-1-codex-mini/flux-pr-1128/validation.json",
      "exists": true,
      "non_empty": true,
      "size_bytes": 108526
    },
    "results": {
      "path": "runs/2026-02-21__03-36-16__gpt-5-1-codex-mini/results.json",
      "exists": true,
      "non_empty": true,
      "size_bytes": 59870
    },
    "run_metadata": {
      "path": "runs/2026-02-21__03-36-16__gpt-5-1-codex-mini/run_metadata.json",
      "exists": true,
      "non_empty": true,
      "size_bytes": 1662
    },
    "agent_patch": {
      "path": "runs/2026-02-21__03-36-16__gpt-5-1-codex-mini/flux-pr-1128/flux-pr-1128.1-of-1.2026-02-21__03-36-16__gpt-5-1-codex-mini/agent-logs/agent.patch",
      "exists": true,
      "non_empty": true,
      "size_bytes": 5933
    },
    "summary": {
      "path": "reports/summary.json",
      "exists": true,
      "non_empty": true,
      "size_bytes": 96753
    },
    "manifest": {
      "path": "manifest.json",
      "exists": true,
      "non_empty": true,
      "size_bytes": 495
    },
    "validation_inputs": {
      "required_for_rescue_ok": true,
      "gold_patch": {
        "exists": true,
        "non_empty": true,
        "size_bytes": 3434,
        "sha256": "631632451accd577105647733cdd33c7e7773a6bf5554c30e06693b6a3a785ef",
        "required_for_rescue": true
      },
      "repo_tarball": {
        "exists": true,
        "non_empty": true,
        "size_bytes": 4199126,
        "sha256": "7b8038545e59df366cbda0a9578ea79faeaa598daf4ac5f86db0f51ec6d362dc",
        "required_for_rescue": true
      },
      "agent_patch": {
        "exists": true,
        "non_empty": true,
        "size_bytes": 5933,
        "sha256": "5e38de65291827112e6807e663bed218310dbb692f26768caf7eb03c8c8ecc1d",
        "required_for_rescue": true
      }
    }
  },
  "provenance": {
    "identity": [
      {
        "source": "manifest",
        "available": true
      },
      {
        "source": "tb_results",
        "available": true
      }
    ],
    "decision": [
      {
        "source": "validation",
        "available": true
      }
    ],
    "tests": [
      {
        "source": "validation",
        "available": true
      },
      {
        "source": "tb_results",
        "available": true
      }
    ],
    "quality": {
      "equivalence": [
        {
          "source": "validation",
          "available": true
        }
      ],
      "code_review": [
        {
          "source": "validation",
          "available": true
        }
      ],
      "behavioral_robustness": [
        {
          "source": "validation",
          "available": true
        }
      ],
      "footprint_risk": [
        {
          "source": "validation",
          "available": true
        }
      ],
      "cost": [
        {
          "source": "validation",
          "available": true
        },
        {
          "source": "summary",
          "available": true
        }
      ]
    },
    "summary": {
      "task": [
        {
          "source": "summary",
          "available": true
        }
      ],
      "run": [
        {
          "source": "summary",
          "available": true
        }
      ],
      "run_metadata": [
        {
          "source": "run_metadata",
          "available": true
        }
      ]
    },
    "evidence": [
      {
        "source": "filesystem",
        "available": true
      }
    ]
  }
}