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.
npx agentmods add skills/utopia5327/claude-plugin-for-revit-bim/revit-api-codenpx skills add Utopia5327/claude-plugin-for-revit-bim --skill revit-api-codegit clone --depth 1 https://github.com/Utopia5327/claude-plugin-for-revit-bimWrote 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.
[](https://agentmods.dev/skills/utopia5327/claude-plugin-for-revit-bim/revit-api-code)<a href="https://agentmods.dev/skills/utopia5327/claude-plugin-for-revit-bim/revit-api-code"><img src="https://agentmods.dev/badge/skills/utopia5327/claude-plugin-for-revit-bim/revit-api-code.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00166 | $0.01441 |
| Opus 5 | $0.00083 | $0.00720 |
| Sonnet 5 | $0.00033 | $0.00288 |
| Haiku 4.5 | $0.00017 | $0.00144 |
Grade A, and why
revit-api-code 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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 207 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Generate Revit API Code
Generate Revit API code for:
"$ARGUMENTS"
Clarify the target
Before writing code, confirm:
- C# or Python?
- C# → Revit macro (internal,
.csfile in Revit's SharpDevelop IDE) or add-in (.dll) - Python → pyRevit script (
.pyfile in a pyRevit extension bundle)
- C# → Revit macro (internal,
- Where will it run?
- Macro: runs from Manage → Macros, no installation needed
- External command: compiled
.dll, registered in.addinfile - pyRevit: drop into extension folder, appears as ribbon button automatically
- Revit version? Affects API availability.
C# External Command (Add-in)
Complete, production-ready boilerplate for an IExternalCommand:
using System;
using System.Collections.Generic;
using System.Linq;
using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
namespace RevitBIMPlugin
{
[Transaction(TransactionMode.Manual)]
[Regeneration(RegenerationOption.Manual)]
public class MyCommand : IExternalCommand
{
public Result Execute(
ExternalCommandData commandData,
ref string message,
ElementSet elements)
{
UIApplication uiapp = commandData.Application;
UIDocument uidoc = uiapp.ActiveUIDocument;
Document doc = uidoc.Document;
try
{
using (Transaction tx = new Transaction(doc, "My BIM Operation"))
{
tx.Start();
// ── Your code here ────────────────────────────────
// Example: count all walls
var walls = new FilteredElementCollector(doc)
.OfCategory(BuiltInCategory.OST_Walls)
.WhereElementIsNotElementType()
.ToElements();
tx.Commit();
TaskDialog.Show("BIM Manager",
$"Operation completed. Found {walls.Count} walls.");
}
return Result.Succeeded;
}
catch (Exception ex)
{
message = ex.Message;
return Result.Failed;
}
}
}
}
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.
- 4d ago First seen · 207 lines · 166 tokens per session scan A 07d7c8bc5bec
revit-api-code is a skill published in the GitHub repository Utopia5327/claude-plugin-for-revit-bim (6 stars, last pushed 6mo ago), licensed MIT. It adds 166 tokens to every session and 1,441 once invoked, about $0.0008 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.
Other skills, from other repositories
rhinocommon-geometry
Deep reference for Rhino.Geometry namespace — all geometry types, operations, and patterns in RhinoCommon. Use this skill whenever working with Rhino geometry in C# or Python: Point3d, Vector3d, Curve, Surface, Brep, Mesh, NURBS, intersections, boolean operations, transforms, planes, bounding boxes. Triggers on…
os2-wpf-theme
Apply the OS2 WPF theme (TripleZeroLabs.Os2) correctly in any XAML or C# file. Activate when building or editing a WPF window, page, view, or UserControl; styling any WPF control (Button, TextBox, DataGrid, ComboBox, CheckBox, nav sidebar, tabs, dialog, banner); building a settings screen, form, dashboard, or toolbar…
dotnet-winforms-basics
Building WinForms on .NET 8+. High-DPI, dark mode (experimental), DI patterns, modernization tips.
wpf-best-practices
Best practices for building WPF desktop applications with C# and .NET. Use when working on WPF projects, .NET desktop apps, XAML UI, MVVM architecture, system tray apps, or any C# project using Windows Presentation Foundation.
avalonia-zafiro-development
Mandatory skills, conventions, and behavioral rules for Avalonia UI development using the Zafiro toolkit.
html-ppt-hermes-cyber-terminal
OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.