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 skills add Utopia5327/claude-plugin-for-revit-bim --skill audit-modelgit 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/audit-model)<a href="https://agentmods.dev/skills/utopia5327/claude-plugin-for-revit-bim/audit-model"><img src="https://agentmods.dev/badge/skills/utopia5327/claude-plugin-for-revit-bim/audit-model/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.
<a href="https://agentmods.dev/skills/utopia5327/claude-plugin-for-revit-bim/audit-model"><img src="https://agentmods.dev/badge/skills/utopia5327/claude-plugin-for-revit-bim/audit-model.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00127 | $0.01357 |
| Opus 5 | $0.00063 | $0.00678 |
| Sonnet 5 | $0.00025 | $0.00271 |
| Haiku 4.5 | $0.00013 | $0.00136 |
Grade A, and why
audit-model 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 9d 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 — 145 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Revit Model Audit
Audit the Revit model for:
"$ARGUMENTS"
Approach
Before scripting, clarify:
- Is this a comprehensive health report or a targeted audit (e.g. just warnings, just families)?
- Does the user want a Dynamo script to run inside Revit, or just guidance on what to look for?
Default to producing a complete Dynamo audit script unless the user asks otherwise.
Comprehensive model health script
This read-only script collects a full health report — no model modifications, safe to run on any project.
import clr
clr.AddReference('RevitServices')
from RevitServices.Persistence import DocumentManager
clr.AddReference('RevitAPI')
from Autodesk.Revit.DB import *
doc = DocumentManager.Instance.CurrentDBDocument
report = {}
try:
# ── 1. Project information ──────────────────────────────────────────────
pi = doc.ProjectInformation
report['Project Name'] = pi.Name
report['Project Number'] = pi.Number
report['Client'] = pi.ClientName
report['Revit Version'] = doc.Application.VersionName
# ── 2. Element counts by category ──────────────────────────────────────
cats = [
('Walls', BuiltInCategory.OST_Walls),
('Floors', BuiltInCategory.OST_Floors),
('Roofs', BuiltInCategory.OST_Roofs),
('Ceilings', BuiltInCategory.OST_Ceilings),
('Doors', BuiltInCategory.OST_Doors),
('Windows', BuiltInCategory.OST_Windows),
('Rooms', BuiltInCategory.OST_Rooms),
('Stairs', BuiltInCategory.OST_Stairs),
('Struct. Columns', BuiltInCategory.OST_StructuralColumns),
('Struct. Framing', BuiltInCategory.OST_StructuralFraming),
('MEP Ducts', BuiltInCategory.OST_DuctCurves),
('MEP Pipes', BuiltInCategory.OST_PipeCurves),
('Levels', BuiltInCategory.OST_Levels),
('Grids', BuiltInCategory.OST_Grids),
]
counts = {}
for name, cat in cats:
n = (FilteredElementCollector(doc)
.OfCategory(cat)
.WhereElementIsNotElementType()
.GetElementCount())
counts[name] = n
report['Element Counts'] = counts
# ── 3. Families ─────────────────────────────────────────────────────────
families = list(FilteredElementCollector(doc).OfClass(Family).ToElements())
report['Total Families'] = len(families)
report['In-Place Families'] = sum(1 for f in families if f.IsInPlace)
# ── 4. Views and sheets ─────────────────────────────────────────────────
all_views = list(FilteredElementCollector(doc).OfClass(View).ToElements())
sheets = [v for v in all_views if isinstance(v, ViewSheet)]
not_on_sheet = [v for v in all_views
if not isinstance(v, ViewSheet)
and not v.IsTemplate
and v.CanBePrinted]
report['Total Views'] = len(all_views)
report['Total Sheets'] = len(sheets)
report['Printable Views'] = len(not_on_sheet)
# ── 5. Model warnings ───────────────────────────────────────────────────
warnings = list(doc.GetWarnings())
report['Model Warnings'] = len(warnings)
# ── 6. Worksets ─────────────────────────────────────────────────────────
report['Is Workshared'] = doc.IsWorkshared
if doc.IsWorkshared:
wt = (FilteredWorksetCollector(doc)
.OfKind(WorksetKind.UserWorkset)
.ToWorksets())
report['User Worksets'] = len(list(wt))
OUT = report
except Exception as e:
import traceback
OUT = 'ERROR: ' + str(e) + '\n' + traceback.format_exc()
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.
- 9d ago First seen · 145 lines · 127 tokens per session scan A c730999b2eb2
audit-model is a skill published in the GitHub repository Utopia5327/claude-plugin-for-revit-bim (6 stars, last pushed 6mo ago), licensed MIT. It adds 127 tokens to every session and 1,357 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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…