rhino-architect

rhino-architect is a skill for Claude Code, Codex from tanishqbhattad/rhino-mcp. It costs 85 tokens per session (3,134 once invoked), scanned A, original, MIT.

A set of tools for creating and analysing building models in Rhino 3D, a program for three-dimensional design. It covers work from rough building shapes to plans, sections and material information.

In plain words
What is it for?
It helps with massing studies, floor plates, cores, facades, openings, floor plans, sections, area schedules, materials and viewport captures.
Why use it?
It gives architectural projects an organised workflow and checks the Rhino scene before changes are made. This helps keep the model structured as it develops.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit It helps with massing studies, floor plates, cores, facades, openings, floor plans, sections, area schedules, materials and viewport captures.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tanishqbhattad/rhino-mcp/rhino-architect
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add tanishqbhattad/rhino-mcp --skill rhino-architect
Clone the repo
git clone --depth 1 https://github.com/tanishqbhattad/rhino-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for rhino-architect

README.md
[![agentmods](https://agentmods.dev/badge/skills/tanishqbhattad/rhino-mcp/rhino-architect/github.svg)](https://agentmods.dev/skills/tanishqbhattad/rhino-mcp/rhino-architect)
Your own site
<a href="https://agentmods.dev/skills/tanishqbhattad/rhino-mcp/rhino-architect"><img src="https://agentmods.dev/badge/skills/tanishqbhattad/rhino-mcp/rhino-architect/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for rhino-architect

Your own site · 80×15
<a href="https://agentmods.dev/skills/tanishqbhattad/rhino-mcp/rhino-architect"><img src="https://agentmods.dev/badge/skills/tanishqbhattad/rhino-mcp/rhino-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,134 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00085 $0.03134
Opus 5 $0.00043 $0.01567
Sonnet 5 $0.00017 $0.00627
Haiku 4.5 $0.00009 $0.00313

Measured 8d ago against content hash 7bb9cdc8a041, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

rhino-architect scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/curtain_wall.py, scripts/stair_dogleg.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/rhino-architect/SKILL.md · 142 lines

How it starts

The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Rhino Architect

You are operating Rhino 8 through the rhino-architect MCP connector. You are acting as an architect's modeling partner: work in the order an architect works, verify visually after every phase, and never leave geometry unorganized.

Session start (always)

  1. ping - confirms the bridge, and returns unit_system, mode, and scene_version. If ping fails: tell the user to open Rhino and run AIBridge. Do not retry more than twice.
  2. If the scene is not empty, query_scene(scope="summary") then analyze_architecture to understand what exists before touching anything.
  3. If this is a design session, get_design_brief. If it returns nothing and the user has described a project, store it with set_design_brief and add explicit constraints via add_design_rule (e.g. "floor-to-floor 3600mm", "grid 8400mm").
  4. All dimensions below assume millimeters. If ping reports a different unit system, convert every number or ask the user to switch.

The phase order

Work big-to-small. Do not model detail before the massing is approved.

brief -> layers -> massing -> [verify] -> floors/structure -> [verify]
      -> core -> envelope/openings -> [verify] -> drawings -> schedules -> log_session

Phase 1 - Layers. One create_layer_tree call sets up the whole hierarchy (paths use ::, e.g. Building::Walls). Never create geometry on the default layer.

Phase 2 - Massing. create_object(type="massing", params={footprint:[[x,y,0],...], levels:N, level_height:H}). For linked steps use one atomic batch with $N references:

{"atomic": true, "commands": [
  {"type": "create_object", "params": {"type": "massing", "params": {"footprint": [[0,0,0],[30000,0,0],[30000,18000,0],[0,18000,0]], "levels": 4, "level_height": 3600}, "layer": "Massing"}},
  {"type": "derive_floors_from_mass", "params": {"mass_id": "$1.mass_id", "level_heights": [4200,3600,3600,3600]}}
]}

Phase 3 - Verify. After every phase: capture_review_set (or thumbnail for quick checks). Look at the images. If something is wrong, fix it before proceeding. Mutating tools already return an auto-thumbnail - read it.

Read the full file on GitHub · 142 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago Changed · +15 lines 7bb9cdc8a041
  2. 12d ago First seen · 127 lines · 85 tokens per session scan A ddef78cb873b

Subscribe to this mod's changes

rhino-architect is a skill published in the GitHub repository tanishqbhattad/rhino-mcp (21 stars, last pushed 9d ago), licensed MIT. It adds 85 tokens to every session and 3,134 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

furniture-fit

Assess whether furniture fits in a measured Pascal room or layout. Use this skill for sofa, table, bed, cabinet, appliance, staging, placement, collision, clearance, or rotated-footprint questions. Produce a tool-backed spatial report that distinguishes footprint fit from unsupported height, door-swing, assembly, and…

pascalorg/editor · 80 tokens

pascal-3d

Connect to Pascal and use its MCP tools to create, inspect, edit, validate, save, or hand off editable 3D building scenes. Use this skill whenever a user asks an agent to work in Pascal, make a room or building model, inspect a Pascal project, perform spatial edits, connect Pascal MCP, or return a verified Pascal…

pascalorg/editor · 92 tokens

design-is

Audit a design against Dieter Rams' ten "Good design is..." principles, then hand off a /make-plan prompt for one of three outcomes — new design, refine design, or redesign. Use when the user says "audit this design", "design review", "check this UI against Rams", "is this UI good", "critique this design", "design…

thedotmack/claude-mem · 91 tokens

hps-true-blueprint

OpenDesign's engineering blueprint: how the sandbox, sidecar, and daemon fit — the system diagram and the invariants. Built as a decision-grade product management deck for engineering org.

nexu-io/open-design · 44 tokens

create-design-system

Skill to use if user asks you to create a design system or UI kit.

asgeirtj/system_prompts_leaks · 19 tokens

hi-fi-design

The design process for high-fidelity, polished work — the system prompt tells Claude to invoke it before starting any design.

asgeirtj/system_prompts_leaks · 27 tokens