← mecheval / run / a2-l-bracket-01 / claude-mcp-claude-opus-4-7 / 20260611T174501Z-edb6

run 20260611T174501Z-edb6

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

Summary

statusfail
score0.50 (3/6)
submissionself-run
modelclaude-mcp-claude-opus-4-7 (anthropic)
started2026-06-11T17:45:01.958Z
ended2026-06-11T17:47:10.795Z
tokens630,365 in · 6,937 out · 637,302 total
wallclock128.8s
tool calls47
task hashc8efa8964b7ad82a…
vcad hash212b66243163e9cc…

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
fail
volume off by 1.8%
params + details
params: {
  "type": "mass_props",
  "volume_mm3": 8962.92,
  "tolerance_pct": 0.5
}

details: {
  "volume": {
    "actual_mm3": 9120,
    "deviation_pct": 1.7525538552168258,
    "pass": false,
    "spec_mm3": 8962.92,
    "tolerance_pct": 0.5
  }
}
3
hole_count
fail
found 0/2 holes of ⌀5mm
params + details
params: {
  "type": "hole_count",
  "diameter_mm": 5,
  "expected": 2,
  "diameter_tolerance_mm": 0.05
}

details: {
  "actual": 0,
  "diameter_mm": 5,
  "diameter_tolerance_mm": 0.05,
  "expected": 2,
  "found": []
}
4
hole_positions
fail
2/2 mispositioned
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": [
    {
      "pass": false,
      "reason": "no candidate cylindrical feature of this diameter remained unmatched",
      "spec_xy": [
        10,
        15
      ]
    },
    {
      "pass": false,
      "reason": "no candidate cylindrical feature of this diameter remained unmatched",
      "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,
        "original_mm3": 9120,
        "pass": true,
        "roundtripped_mm3": 9120
      }
    }
  ],
  "tolerance_pct": 0.1
}

Tool calls

0
open_document
ok
2ms
args
{}
1
create_cad_loon
err
7ms
args
{
  "source": "[let\n  [let base [cube 50 30 4]]\n  [let wall [translate 46 0 4 [cube 4 30 26]]]\n  [let body [union wall base]]\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 hole2 hole1]]\n  [root [difference holes body] \"steel\"]]",
  "format": "json"
}
2
create
err
8ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cube",
  "params": {
    "x": 50,
    "y": 30,
    "z": 4
  },
  "name": "Base"
}
3
create
err
1ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cube",
  "params": {
    "x": 4,
    "y": 30,
    "z": 26
  },
  "name": "WallRaw"
}
4
create
err
2ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cylinder",
  "params": {
    "radius": 2.5,
    "height": 6
  },
  "name": "Hole1Raw"
}
5
create
err
1ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cylinder",
  "params": {
    "radius": 2.5,
    "height": 6
  },
  "name": "Hole2Raw"
}
6
create_cad_loon
ok
8ms
args
{
  "source": "[root\n  [difference\n    [union\n      [translate 10 15 -1 [cylinder 2.5 6]]\n      [translate 35 15 -1 [cylinder 2.5 6]]]\n    [union\n      [translate 46 0 4 [cube 4 30 26]]\n      [cube 50 30 4]]]\n  \"steel\"]",
  "format": "json"
}
7
create
ok
5ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cube",
  "params": {
    "size": {
      "x": 50,
      "y": 30,
      "z": 4
    }
  },
  "name": "Base"
}
8
create
ok
4ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cube",
  "params": {
    "size": {
      "x": 4,
      "y": 30,
      "z": 26
    }
  },
  "name": "WallRaw"
}
9
create
ok
1ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cylinder",
  "params": {
    "radius": 2.5,
    "height": 6,
    "segments": 64
  },
  "name": "HoleRaw1"
}
10
create
ok
1ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cylinder",
  "params": {
    "radius": 2.5,
    "height": 6,
    "segments": 64
  },
  "name": "HoleRaw2"
}
11
read
ok
2ms
args
{
  "document_id": "doc_1781199902134_1"
}
12
delete
ok
3ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "1"
}
13
delete
ok
2ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "2"
}
14
delete
ok
2ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "3"
}
15
delete
ok
1ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "4"
}
16
create
ok
3ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cube",
  "params": {
    "size": {
      "x": 50,
      "y": 30,
      "z": 4
    }
  },
  "name": "Bracket"
}
17
create
ok
2ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cube",
  "params": {
    "size": {
      "x": 4,
      "y": 30,
      "z": 26
    }
  },
  "name": "WallShape"
}
18
create
ok
3ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "translate",
  "params": {
    "child": 2,
    "offset": {
      "x": 46,
      "y": 0,
      "z": 4
    }
  },
  "name": "WallPos"
}
19
read
ok
1ms
args
{
  "document_id": "doc_1781199902134_1"
}
20
delete
ok
3ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "1"
}
21
delete
ok
1ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "2"
}
22
delete
ok
1ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "3"
}
23
create
ok
1ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cube",
  "params": {
    "size": {
      "x": 50,
      "y": 30,
      "z": 4
    }
  },
  "name": "Bracket"
}
24
create
err
3ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "union",
  "params": {
    "other": {
      "type": "translate",
      "params": {
        "offset": {
          "x": 46,
          "y": 0,
          "z": 4
        },
        "child": {
          "type": "cube",
          "params": {
            "size": {
              "x": 4,
              "y": 30,
              "z": 26
            }
          }
        }
      }
    }
  },
  "parent_part_id": "1",
  "name": "AddWall"
}
25
get_changelog
ok
2ms
args
{
  "feature": "parent_part_id",
  "limit": 5
}
26
create
ok
2ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cube",
  "params": {
    "size": {
      "x": 4,
      "y": 30,
      "z": 26
    }
  },
  "name": "WallShape"
}
27
create
ok
2ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "translate",
  "params": {
    "child": 2,
    "offset": {
      "x": 46,
      "y": 0,
      "z": 4
    }
  },
  "name": "WallPos",
  "parent_part_id": "2"
}
28
create
ok
4ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "union",
  "params": {
    "left": 1,
    "right": 3
  },
  "name": "BaseAndWall",
  "parent_part_id": "1"
}
29
read
ok
3ms
args
{
  "document_id": "doc_1781199902134_1"
}
30
get_document
ok
2ms
args
{
  "document_id": "doc_1781199902134_1"
}
31
delete
ok
3ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "1"
}
32
delete
ok
2ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "2"
}
33
delete
ok
2ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "3"
}
34
delete
ok
1ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "4"
}
35
get_document
ok
2ms
args
{
  "document_id": "doc_1781199902134_1"
}
36
create
ok
3ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cube",
  "params": {
    "size": {
      "x": 50,
      "y": 30,
      "z": 4
    }
  },
  "name": "Base"
}
37
create
ok
3ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "cube",
  "params": {
    "size": {
      "x": 4,
      "y": 30,
      "z": 26
    }
  },
  "name": "Wall"
}
38
create
err
3ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "translate",
  "params": {
    "offset": {
      "x": 46,
      "y": 0,
      "z": 4
    }
  },
  "name": "WallPos",
  "parent_part_id": "2"
}
39
create
ok
3ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "translate",
  "params": {
    "offset": {
      "x": 46,
      "y": 0,
      "z": 4
    },
    "child": 2
  },
  "name": "WallPos",
  "parent_part_id": "2"
}
40
create
ok
3ms
args
{
  "document_id": "doc_1781199902134_1",
  "type": "union",
  "params": {
    "left": 1,
    "right": 3
  },
  "name": "BaseWall",
  "parent_part_id": "1"
}
41
get_document
ok
2ms
args
{
  "document_id": "doc_1781199902134_1"
}
42
delete
ok
2ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "2"
}
43
get_document
ok
2ms
args
{
  "document_id": "doc_1781199902134_1"
}
44
delete
ok
3ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "1"
}
45
delete
ok
1ms
args
{
  "document_id": "doc_1781199902134_1",
  "part_id": "3"
}
46
get_document
ok
1ms
args
{
  "document_id": "doc_1781199902134_1"
}

What the model built

isometric render via vcad-render · the model's actual .vcad output, faceted at 28 segments per cylinder · download 20260611T174501Z-edb6.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": "Wall",
      "op": {
        "type": "Cube",
        "size": {
          "x": 4,
          "y": 30,
          "z": 26
        }
      }
    },
    "3": {
      "id": 3,
      "name": "WallPos",
      "op": {
        "type": "Translate",
        "child": 2,
        "offset": {
          "x": 46,
          "y": 0,
          "z": 4
        }
      }
    },
    "4": {
      "id": 4,
      "name": "BaseWall",
      "op": {
        "type": "Union",
        "left": 1,
        "right": 3
      }
    }
  },
  "materials": {},
  "part_materials": {},
  "roots": [
    {
      "root": 4,
      "material": "default"
    }
  ]
}

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