← mecheval / run / a2-l-bracket-01 / claude-mcp-claude-opus-4-7 / 20260611T174344Z-af8c

run 20260611T174344Z-af8c

a2-l-bracket-01 · claude-mcp-claude-opus-4-7

Summary

statusPASS
score1.00 (6/6)
submissionself-run
modelclaude-mcp-claude-opus-4-7 (anthropic)
started2026-06-11T17:43:44.429Z
ended2026-06-11T17:45:01.925Z
tokens443,655 in · 4,431 out · 448,086 total
wallclock77.5s
tool calls34
task hashc8efa8964b7ad82a…
vcad hash4a4733b9a6235b78…

Prompt

Make an L-shaped mounting bracket. The base lies in the XY plane, occupying x in [0, 50], y in [0, 30], z in [0, 4] (50mm long, 30mm wide, 4mm thick). A vertical wall stands on the +X edge: x in [46, 50], y in [0, 30], z in [4, 30] (4mm thick, 30mm wide, rising to z = 30). Two through-holes of diameter 5mm pierce the base parallel to Z, centered at (10, 15) and (35, 15) on the top face. Output a single solid.

Checks

0
valid_solid
pass
params + details
params: {
  "type": "valid_solid"
}

details: {
  "root_count": 1,
  "solids_produced": 1
}
1
bbox
pass
params + details
params: {
  "type": "bbox",
  "min": [
    0,
    0,
    0
  ],
  "max": [
    50,
    30,
    30
  ],
  "tolerance_mm": 0.1
}

details: {
  "actual_max": [
    50,
    30,
    30
  ],
  "actual_min": [
    0,
    0,
    0
  ],
  "deviation_max": [
    0,
    0,
    0
  ],
  "deviation_min": [
    0,
    0,
    0
  ],
  "max_abs_deviation_mm": 0,
  "tolerance_mm": 0.1
}
2
mass_props
pass
params + details
params: {
  "type": "mass_props",
  "volume_mm3": 8962.92,
  "tolerance_pct": 0.5
}

details: {
  "volume": {
    "actual_mm3": 8963.172562465077,
    "deviation_pct": 0.002817859191837731,
    "pass": true,
    "spec_mm3": 8962.92,
    "tolerance_pct": 0.5
  }
}
3
hole_count
pass
params + details
params: {
  "type": "hole_count",
  "diameter_mm": 5,
  "expected": 2,
  "diameter_tolerance_mm": 0.05
}

details: {
  "actual": 2,
  "diameter_mm": 5,
  "diameter_tolerance_mm": 0.05,
  "expected": 2,
  "found": [
    [
      10,
      15,
      5
    ],
    [
      35,
      15,
      5
    ]
  ]
}
4
hole_positions
pass
params + details
params: {
  "type": "hole_positions",
  "diameter_mm": 5,
  "positions": [
    [
      10,
      15,
      0
    ],
    [
      35,
      15,
      0
    ]
  ],
  "tolerance_mm": 0.1
}

details: {
  "diameter_mm": 5,
  "per_expected": [
    {
      "distance_mm": 0,
      "matched_hole": [
        10,
        15
      ],
      "pass": true,
      "spec_xy": [
        10,
        15
      ]
    },
    {
      "distance_mm": 0,
      "matched_hole": [
        35,
        15
      ],
      "pass": true,
      "spec_xy": [
        35,
        15
      ]
    }
  ],
  "tolerance_mm": 0.1,
  "unmatched_extras": []
}
5
step_roundtrip
pass
params + details
params: {
  "type": "step_roundtrip",
  "tolerance_pct": 0.1
}

details: {
  "per_solid": [
    {
      "bbox": {
        "max_abs_deviation_mm": 0,
        "original_max": [
          50,
          30,
          30
        ],
        "original_min": [
          0,
          0,
          0
        ],
        "pass": true,
        "roundtripped_max": [
          50,
          30,
          30
        ],
        "roundtripped_min": [
          0,
          0,
          0
        ],
        "tolerance_mm": 0.06557438524302
      },
      "index": 0,
      "pass": true,
      "volume": {
        "deviation_pct": 0.005616755320254926,
        "original_mm3": 8963.172562465077,
        "pass": true,
        "roundtripped_mm3": 8963.676001936843
      }
    }
  ],
  "tolerance_pct": 0.1
}

Tool calls

0
open_document
ok
1ms
args
{}
1
create
err
3ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "difference",
  "name": "L-Bracket",
  "params": {
    "children": [
      {
        "type": "union",
        "params": {
          "children": [
            {
              "type": "cube",
              "params": {
                "size": [
                  50,
                  30,
                  4
                ]
              }
            },
            {
              "type": "translate",
              "params": {
                "offset": [
                  46,
                  0,
                  0
                ],
                "child": {
                  "type": "cube",
                  "params": {
                    "size": [
                      4,
                      30,
                      30
                    ]
                  }
                }
              }
            }
          ]
        }
      },
      {
        "type": "translate",
        "params": {
          "offset": [
            10,
            15,
            -1
          ],
          "child": {
            "type": "cylinder",
            "params": {
              "radius": 2.5,
              "height": 6
            }
          }
        }
      },
      {
        "type": "translate",
        "params": {
          "offset": [
            35,
            15,
            -1
          ],
          "child": {
            "type": "cylinder",
            "params": {
              "radius": 2.5,
              "height": 6
            }
          }
        }
      }
    ]
  }
}
2
create_cad_loon
ok
13ms
args
{
  "source": "[let base [cube 50 30 4]\n  [let wall [translate 46 0 0 [cube 4 30 30]]\n    [let body [union base wall]\n      [let hole1 [translate 10 15 -1 [cylinder 2.5 6]]\n        [let hole2 [translate 35 15 -1 [cylinder 2.5 6]]\n          [let holes [union hole1 hole2]\n            [root [difference holes body] \"steel\"]]]]]]]",
  "format": "json"
}
3
create
ok
5ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "cube",
  "name": "Base",
  "params": {
    "size": {
      "x": 50,
      "y": 30,
      "z": 4
    }
  }
}
4
create
ok
2ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "cube",
  "name": "WallRaw",
  "params": {
    "size": {
      "x": 4,
      "y": 30,
      "z": 30
    }
  }
}
5
create
ok
2ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "translate",
  "name": "Wall",
  "parent_part_id": "2",
  "params": {
    "offset": {
      "x": 46,
      "y": 0,
      "z": 0
    },
    "child": 2
  }
}
6
read
ok
5ms
args
{
  "document_id": "doc_1781199824603_1"
}
7
read
ok
3ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "3"
}
8
delete
ok
3ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "2"
}
9
read
ok
3ms
args
{
  "document_id": "doc_1781199824603_1"
}
10
read
ok
4ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "3"
}
11
create
ok
3ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "union",
  "name": "Body",
  "params": {
    "left": 1,
    "right": 3
  }
}
12
read
ok
2ms
args
{
  "document_id": "doc_1781199824603_1"
}
13
delete
ok
2ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "1"
}
14
delete
ok
1ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "3"
}
15
read
ok
2ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "4"
}
16
create
err
3ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "cylinder",
  "name": "Hole1Raw",
  "params": {
    "radius": 2.5,
    "height": 6
  }
}
17
create
err
2ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "cylinder",
  "name": "Hole2Raw",
  "params": {
    "radius": 2.5,
    "height": 6
  }
}
18
create
ok
3ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "cylinder",
  "name": "Hole1Raw",
  "params": {
    "radius": 2.5,
    "height": 6,
    "segments": 64
  }
}
19
create
ok
3ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "cylinder",
  "name": "Hole2Raw",
  "params": {
    "radius": 2.5,
    "height": 6,
    "segments": 64
  }
}
20
create
ok
2ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "translate",
  "name": "Hole1",
  "parent_part_id": "5",
  "params": {
    "offset": {
      "x": 10,
      "y": 15,
      "z": -1
    },
    "child": 5
  }
}
21
create
ok
2ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "translate",
  "name": "Hole2",
  "parent_part_id": "6",
  "params": {
    "offset": {
      "x": 35,
      "y": 15,
      "z": -1
    },
    "child": 6
  }
}
22
create
ok
3ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "union",
  "name": "Holes",
  "params": {
    "left": 7,
    "right": 8
  }
}
23
create
ok
3ms
args
{
  "document_id": "doc_1781199824603_1",
  "type": "difference",
  "name": "L-Bracket",
  "params": {
    "left": 4,
    "right": 9
  }
}
24
read
ok
2ms
args
{
  "document_id": "doc_1781199824603_1"
}
25
delete
ok
2ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "4"
}
26
delete
ok
1ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "5"
}
27
delete
ok
1ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "6"
}
28
delete
ok
1ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "7"
}
29
delete
ok
1ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "8"
}
30
delete
ok
1ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "9"
}
31
read
ok
2ms
args
{
  "document_id": "doc_1781199824603_1",
  "part_id": "10"
}
32
render_view
ok
116ms
args
{
  "document_id": "doc_1781199824603_1"
}
33
get_document
ok
2ms
args
{
  "document_id": "doc_1781199824603_1"
}

What the model built

isometric render via vcad-render · the model's actual .vcad output, faceted at 28 segments per cylinder · download 20260611T174344Z-af8c.vcad

.vcad source

{
  "version": "0.1",
  "nodes": {
    "1": {
      "id": 1,
      "name": "Base",
      "op": {
        "type": "Cube",
        "size": {
          "x": 50,
          "y": 30,
          "z": 4
        }
      }
    },
    "2": {
      "id": 2,
      "name": "WallRaw",
      "op": {
        "type": "Cube",
        "size": {
          "x": 4,
          "y": 30,
          "z": 30
        }
      }
    },
    "3": {
      "id": 3,
      "name": "Wall",
      "op": {
        "type": "Translate",
        "child": 2,
        "offset": {
          "x": 46,
          "y": 0,
          "z": 0
        }
      }
    },
    "4": {
      "id": 4,
      "name": "Body",
      "op": {
        "type": "Union",
        "left": 1,
        "right": 3
      }
    },
    "5": {
      "id": 5,
      "name": "Hole1Raw",
      "op": {
        "type": "Cylinder",
        "radius": 2.5,
        "height": 6,
        "segments": 64
      }
    },
    "6": {
      "id": 6,
      "name": "Hole2Raw",
      "op": {
        "type": "Cylinder",
        "radius": 2.5,
        "height": 6,
        "segments": 64
      }
    },
    "7": {
      "id": 7,
      "name": "Hole1",
      "op": {
        "type": "Translate",
        "child": 5,
        "offset": {
          "x": 10,
          "y": 15,
          "z": -1
        }
      }
    },
    "8": {
      "id": 8,
      "name": "Hole2",
      "op": {
        "type": "Translate",
        "child": 6,
        "offset": {
          "x": 35,
          "y": 15,
          "z": -1
        }
      }
    },
    "9": {
      "id": 9,
      "name": "Holes",
      "op": {
        "type": "Union",
        "left": 7,
        "right": 8
      }
    },
    "10": {
      "id": 10,
      "name": "L-Bracket",
      "op": {
        "type": "Difference",
        "left": 4,
        "right": 9
      }
    }
  },
  "materials": {},
  "part_materials": {},
  "roots": [
    {
      "root": 10,
      "material": "default"
    }
  ]
}

generated 2026-06-19T01:47:55.625Z · static site, regenerate with npm run build -w @mecheval/leaderboard