Skip to main content
Glama
assoujojo82-coder

synergieloc — French Real-Estate Legal Calculations

cao_generer_ifc

Generate an IFC4 BIM file from a building scene: spatial hierarchy, GUIDs, and materials with physical properties make it openable in Revit, ArchiCAD, or Solibri.

Instructions

WHEN the drawing must leave as a real BIM file, openable in Revit/ArchiCAD/Solibri — not just a drawing. Draw a building scene and get an IFC4 file: real spatial hierarchy (project/site/building/storeys), each element with a real IFC GUID and a material carrying physical properties (density, thermal conductivity). Doors/windows are classified IfcDoor/IfcWindow and positioned, but no boolean opening is cut in the host wall (documented limitation). Call cao_verifier first. Same scene as cao_generer_dxf.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mursNoWalls: plan segments extruded vertically
planNo2D reference lines
boitesNoBoxes (furniture, volumes): center x,y + dims l,p,h (mm)
cerclesNoCircles on the 2D plan, alongside plan[] lines: each has a centre and a radius, in the same unit as the plan. Use for round shapes a polyline would render badly — fillets, posts, manholes.
reseauxNoPlumbing pipe runs (EF/EC/EU/EV/EP/chauffage) — used only by cao_pdf (technical plan + linear-meter quantities per type).
toituresNoRoofs — used only by cao_pdf. WITHOUT this field: a flat roof is auto-generated over the footprint of ALL walls (legacy default). WITH it: compose freely — each entry can target a subset of walls (via `murs`), letting you build an L-shaped building's roof, or add a dormer on top of a main roof.
plomberieNoSanitary fixtures (sink, WC, shower…) — used only by cao_pdf. Same positioning as electricite.
decorationNoPaint/finish per wall — used only by cao_pdf. Colors the elevations (exterior face) and the axonometric view (face auto-detected by orientation relative to the building's centroid).
ouverturesNoDoors/windows embedded in a wall — used only by cao_pdf (elevations + axonometric view), no effect on dxf/metres.
electriciteNoElectrical symbols (outlets, switches, lights…) — used only by cao_pdf (dedicated technical plan + quantities), no effect on dxf/metres/render. Position: attached to a wall (`mur`+`position`, like ouvertures) or free (`x`,`y`).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.1

TDQS

A4.8/5.0
Behavior5/5

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

No annotations exist, so the description carries the full burden and delivers: output format (IFC4), structural content (project/site/building/storeys hierarchy, IFC GUIDs, material density/thermal conductivity), a documented limitation (no boolean opening cut in the host wall), and a precondition (cao_verifier first). Disclosing the missing opening is exactly the kind of behavioral trait that prevents agent disappointment.

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

Conciseness5/5

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

Five sentences and roughly 100 words, with the most decision-relevant information front-loaded in the opening WHEN clause. No filler — each sentence contributes a distinct fact: trigger condition, output content, limitation, prerequisite, and sibling anchor.

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?

For a 10-parameter, no-annotation, no-output-schema tool, the description covers output content, the documented limitation, and the precondition. The main gap: it never states how the IFC file is delivered (file path, download, inline content?), which an agent needs to complete the workflow. It also leaves implicit which scene subsets (toitures, plomberie, decoration) are honored in IFC output, though the 'same scene' statement mitigates this.

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

Parameters4/5

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

Schema coverage is 100% — all 10 parameters have descriptions — so the baseline is 3. The description adds value above that: 'Same scene as cao_generer_dxf' lets an agent reuse knowledge of the sibling's scene structure, and it clarifies that ouvertures, though labeled 'used only by cao_pdf' in the schema, do produce IfcDoor/IfcWindow elements in this tool.

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

Purpose5/5

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

States a specific verb+resource: 'get an IFC4 file' with real spatial hierarchy, per-element IFC GUIDs, and materials carrying physical properties. It distinguishes from siblings with 'not just a drawing' and anchors itself against the closest sibling via 'Same scene as cao_generer_dxf.' An agent navigating 40 sibling tools can tell exactly what this tool produces.

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

Usage Guidelines5/5

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

Opens with an explicit WHEN trigger — 'drawing must leave as a real BIM file, openable in Revit/ArchiCAD/Solibri' — and contrasts it with 'not just a drawing.' It names the alternative (cao_generer_dxf) and gives a mandatory prerequisite: 'Call cao_verifier first.' Explicit when-to-use plus a sequencing rule.

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