Skip to main content
Glama

rupa_proksi

Read-only

Build a convex collision proxy from a GLB mesh and get its measured cost. Points can be attached directly to a scene node as a convex shape, with exact Rapier collider checks and automatic point reduction to avoid zero-volume hulls.

Instructions

Bangun proksi tabrakan CEMBUNG dari sebuah GLB, berikut ongkosnya yang terukur. Titiknya bisa langsung dipasang ke rupa_adegan_node sebagai fisika.bentuk = "cembung".

Diukur dengan collider Rapier yang PERSIS akan berjalan (projectPoint), bukan dengan model hull terpisah — mengukur proksi dengan alat yang berbeda dari yang menjalankannya berarti mengukur benda yang berbeda.

PERINGATAN YANG TERUKUR: convexHull Rapier RUSAK DIAM-DIAM di atas sekitar 8.000 titik — tidak null, tidak melempar, tidak memperingatkan; ia mengembalikan collider bervolume NOL, dan benda dengan collider bervolume nol tidak menabrak apa pun: ia jatuh menembus dunia. Karena itu titiknya selalu direduksi lebih dulu dan hasilnya dijaga dua pemeriksa eksak.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
arahNoBanyak arah penopang. Makin banyak makin rapat proksinya, dan ongkos ketepatannya ikut dilaporkan supaya bisa dipilih dengan angka.
berkasYesJalur absolut .glb
sertakan_titikNoSertakan larik titiknya. Matikan kalau cuma ingin angkanya.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.6.2

TDQS

A3.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, so safety is covered. The description goes beyond by disclosing the critical behavioral trait: the silent failure of Rapier's convexHull above ~8000 points, including a detailed warning with consequences (zero-volume collider, objects falling through world) and mitigation (pre-reduction and exact checks). This is exactly the kind of beyond-annotations context that helps an agent avoid a nasty surprise.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose and integration point, followed by the measurement rationale and a critical warning. It's dense but every sentence adds value; the warning is essential and well-placed. Slightly long for a tool description, but justifiably so.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (3 params, no output schema, annotations for safety), the description covers the key aspects: purpose, integration, measurement methodology, and a critical gotcha. It doesn't describe the return format beyond cost and points, but since there's no output schema, that information is missing. However, the description provides enough for an agent to call it correctly, and the warning is a critical addition.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters. The description adds context for the 'arah' parameter by explaining how it affects proxy tightness and cost reporting, which is marginally useful, but the basic semantics are already in the schema. No significant compensation needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it builds a convex collision proxy from a GLB and measures the cost, with a specific verb and resource. It differentiates from siblings by mentioning it works with rupa_adegan_node's 'cembung' shape, but it doesn't explicitly name an alternative tool for collision generation, though the sibling list includes rupa_tabrakan.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for generating collision proxies, and it provides a specific integration point, but it doesn't explicitly state when to use this over alternatives like rupa_tabrakan. It gives context on measurement methodology (using projectPoint) but no explicit when-not-to-use or alternative selection guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.