rhino-eto-ui

rhino-eto-ui is a skill for Claude Code from bcshih/rhino-dev-skills. It costs 121 tokens per session (3,915 once invoked), scanned A, original, MIT.

A reference for building Rhino plug-in user interfaces with Eto.Forms, a toolkit for creating windows, dialogs, panels, and controls that work on Windows and macOS.

In plain words
What is it for?
Use it when creating Rhino dialogs, settings panels, side panels, tabs, forms, or other interfaces in C# or RhinoCommon.
Why use it?
It reduces the need to learn separate interface code for each operating system. It also provides Rhino-specific patterns for layouts, styling, and dockable panels.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the rhino-dev-skills plugin — 5 skills shipped together

Good fit Use it when creating Rhino dialogs, settings panels, side panels, tabs, forms, or other interfaces in C# or RhinoCommon.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bcshih/rhino-dev-skills/rhino-eto-ui
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 bcshih/rhino-dev-skills --skill rhino-eto-ui
Clone the repo
git clone --depth 1 https://github.com/bcshih/rhino-dev-skills

Made for: Claude Code.

Or install rhino-dev-skills, the plugin that ships this one along with the rest of its 5 skills.

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-eto-ui

README.md
[![agentmods](https://agentmods.dev/badge/skills/bcshih/rhino-dev-skills/rhino-eto-ui/github.svg)](https://agentmods.dev/skills/bcshih/rhino-dev-skills/rhino-eto-ui)
Your own site
<a href="https://agentmods.dev/skills/bcshih/rhino-dev-skills/rhino-eto-ui"><img src="https://agentmods.dev/badge/skills/bcshih/rhino-dev-skills/rhino-eto-ui/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-eto-ui

Your own site · 80×15
<a href="https://agentmods.dev/skills/bcshih/rhino-dev-skills/rhino-eto-ui"><img src="https://agentmods.dev/badge/skills/bcshih/rhino-dev-skills/rhino-eto-ui.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 121 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,915 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.
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.00121 $0.03915
Opus 5 $0.00060 $0.01958
Sonnet 5 $0.00024 $0.00783
Haiku 4.5 $0.00012 $0.00392

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

Security

Grade A, and why

rhino-eto-ui 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 11d ago.

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-eto-ui/SKILL.md · 514 lines

How it starts

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

Eto.Forms — Rhino Cross-Platform UI

Eto.Forms renders to WPF/WinForms on Windows, Cocoa on macOS — one codebase for both.

Namespaces

using Eto.Forms;
using Eto.Drawing;
using Rhino.UI; // for UseRhinoStyle and Rhino-specific extensions
public class MyDialog : Dialog<DialogResult>
{
    private TextBox _nameBox;
    private NumericStepper _valueStepper;

    public string InputName => _nameBox.Text;
    public double InputValue => _valueStepper.Value;

    public MyDialog()
    {
        Title = "My Dialog";
        Padding = new Padding(10);
        Resizable = true;
        MinimumSize = new Size(300, 200);

        _nameBox = new TextBox { PlaceholderText = "Enter name..." };
        _valueStepper = new NumericStepper { Value = 1.0, MinValue = 0, MaxValue = 100, Increment = 0.5 };

        var okButton = new Button { Text = "OK" };
        okButton.Click += (s, e) => Close(DialogResult.Ok);

        var cancelButton = new Button { Text = "Cancel" };
        cancelButton.Click += (s, e) => Close(DialogResult.Cancel);

        var layout = new DynamicLayout { Padding = new Padding(5), Spacing = new Size(5, 5) };
        layout.AddRow(new Label { Text = "Name:" }, _nameBox);
        layout.AddRow(new Label { Text = "Value:" }, _valueStepper);
        layout.AddSeparateRow(null, okButton, cancelButton); // null = expander (pushes right)

        Content = layout;
        this.UseRhinoStyle();
        DefaultButton = okButton;
        AbortButton = cancelButton;
    }
}

// Usage in a Command:
var dlg = new MyDialog();
if (dlg.ShowModal(RhinoEtoApp.MainWindow) == DialogResult.Ok)
{
    string name = dlg.InputName;
    double value = dlg.InputValue;
}

Non-Modal Form (Non-Blocking)

public class MyToolWindow : Form
{
    public MyToolWindow()
    {
        Title = "My Tool";
        Size = new Size(250, 400);
        Location = new Point(100, 100);

        // ... build content ...

        this.UseRhinoStyle();
        
        // Prevent close from destroying — hide instead
        Closing += (s, e) =>
        {
            e.Cancel = true;
            Visible = false;
        };
    }
}

// Show/hide (keep alive)
private static MyToolWindow _window;
public static void ShowWindow()
{
    if (_window == null) _window = new MyToolWindow();
    _window.Show();
    _window.BringToFront();
}

Read the full file on GitHub · 514 lines

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. 11d ago First seen · 514 lines · 121 tokens per session scan A a44b0a97f4f3

Subscribe to this mod's changes

rhino-eto-ui is a skill published in the GitHub repository bcshih/rhino-dev-skills (1 stars, last pushed 2mo ago), licensed MIT. It adds 121 tokens to every session and 3,915 once invoked, about $0.0006 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-31.

Related

Other skills, from other repositories

lightningcad

Use when doing architectural facade panel layout and detailing in AutoCAD or ZWCAD — panel numbering, shop drawing generation, material optimization. LightningCAD: building envelope detailing plugin for AutoCAD/ZWCAD.

znlgis/opengis-skills · 45 tokens

image-to-mesh-cad-workflow

End-to-end workflow for converting a 2D concept image into a parametric 3D CAD model when manual outline tracing is unreliable. Bridges the lossy "image → text-description → manual-spline-points" gap by using AI image-to-3D-mesh services (Tripo3D, Rodin, Meshy) as an intermediate step, then auditing the imported mesh…

Ed3Design/ed3design-engineering-bundles · 222 tokens

fusion-mcp-bridge

Use when driving Fusion 360 from Claude Code through the local MCP-Bridge (HTTP server on 127.0.0.1:7654 with bearer-token auth, single-threaded Custom-Event handler). Covers the API quirks that consistently bite without a documented protocol: component activation before geometry, single-revolve over…

Ed3Design/ed3design-engineering-bundles · 204 tokens

cad-construction

Use after the design concept is settled (via design-first-iteration or equivalent) and the user is ready to translate it into parametric CAD geometry — component decomposition, parameter hierarchy, construction sequencing. Primary platform Fusion 360; the workflow also applies to SolidWorks, Onshape, FreeCAD…

Ed3Design/ed3design-engineering-bundles · 175 tokens

mechanical-design-principles

Guides mechanical design decisions toward elegant, manufacturable, serviceable solutions with a strong bias toward tool-less assembly, monolithic parts, and form-follows-function. Provides the design rules (the WHAT and WHY — overhang, wall thickness, snap-fit sizing, tolerances, material matching). Load when the user…

Ed3Design/ed3design-engineering-bundles · 204 tokens

dxf

Generate, regenerate, and validate 2D DXF drawings from Python build123d sources. Use for DXF files, .py drawing scripts, @dxf models, 2D profiles, outlines, templates, gaskets, panels, flat patterns, laser/plasma/waterjet cut layouts, and 2D drawing exports of CAD geometry.

earthtojake/text-to-cad · 75 tokens