{
  "tool_id": "junk_volume_detector",
  "slug": "junk-volume-detector",
  "path": "/junk-volume-detector/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aifithub.io/junk-volume-detector/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aifithub.io/engines/junk-volume-detector.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aifithub.io/methodology/junk-volume-detector/",
  "sample_input": {
    "tool": "junk_volume_detector",
    "csv_log": "week,exercise,sets,reps,weight\n1,squat,3,5,100\n2,squat,3,5,102.5\n3,squat,3,5,103"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "csv_log": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "csv_log"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "totalSets": {
        "type": "number"
      },
      "effectiveSets": {
        "type": "number"
      },
      "junkSets": {
        "type": "number"
      },
      "junkPctOverall": {
        "type": "number"
      },
      "perExercise": {
        "type": "array"
      }
    }
  }
}
