{
  "tool_id": "meet_day_attempts",
  "slug": "meet-day-attempt-selector",
  "path": "/meet-day-attempt-selector/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aifithub.io/meet-day-attempt-selector/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aifithub.io/engines/meet-day-attempt-selector.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aifithub.io/methodology/meet-day-attempt-selector/",
  "sample_input": {
    "tool": "meet_day_attempts",
    "squat_1rm": 180,
    "bench_1rm": 120,
    "deadlift_1rm": 200,
    "squat_confidence": "moderate",
    "bench_confidence": "moderate",
    "deadlift_confidence": "moderate"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "squat_1rm": {
        "type": "number"
      },
      "bench_1rm": {
        "type": "number"
      },
      "deadlift_1rm": {
        "type": "number"
      },
      "squat_confidence": {
        "type": "string",
        "enum": [
          "conservative",
          "moderate",
          "aggressive"
        ]
      },
      "bench_confidence": {
        "type": "string",
        "enum": [
          "conservative",
          "moderate",
          "aggressive"
        ]
      },
      "deadlift_confidence": {
        "type": "string",
        "enum": [
          "conservative",
          "moderate",
          "aggressive"
        ]
      }
    },
    "required": [
      "tool",
      "squat_1rm",
      "bench_1rm",
      "deadlift_1rm"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "squat": {
        "type": "object"
      },
      "bench": {
        "type": "object"
      },
      "deadlift": {
        "type": "object"
      },
      "conservativeTotal": {
        "type": "number"
      },
      "moderateTotal": {
        "type": "number"
      },
      "aggressiveTotal": {
        "type": "number"
      }
    }
  }
}
