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 create-schedulegit 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/create-schedule)<a href="https://agentmods.dev/skills/utopia5327/claude-plugin-for-revit-bim/create-schedule"><img src="https://agentmods.dev/badge/skills/utopia5327/claude-plugin-for-revit-bim/create-schedule/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/create-schedule"><img src="https://agentmods.dev/badge/skills/utopia5327/claude-plugin-for-revit-bim/create-schedule.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.01281 |
| Opus 5 | $0.00063 | $0.00641 |
| Sonnet 5 | $0.00025 | $0.00256 |
| Haiku 4.5 | $0.00013 | $0.00128 |
Grade A, and why
create-schedule 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.
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 — 154 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create Revit Schedule
Create a Revit schedule for:
"$ARGUMENTS"
Before scripting
Clarify:
- Which category? (Doors, Walls, Rooms, Windows, etc.)
- Which fields should appear in the schedule? (Mark, Type, Width, Height, Area, etc.)
- Should it be placed on a sheet? If so, which sheet number?
- Any filters? (e.g. only doors on Level 2, only walls with Fire Rating = 2HR)
Schedule creation script
import clr
clr.AddReference('RevitServices')
from RevitServices.Persistence import DocumentManager
from RevitServices.Transactions import TransactionManager
clr.AddReference('RevitAPI')
from Autodesk.Revit.DB import *
doc = DocumentManager.Instance.CurrentDBDocument
# ── Configuration — edit these ───────────────────────────────────────────────
SCHEDULE_NAME = 'BIM Manager - Door Schedule'
CATEGORY = BuiltInCategory.OST_Doors # ← change category as needed
# Built-in parameters to add as schedule fields
# (comment out the ones you don't need, add others)
DESIRED_PARAMS = [
BuiltInParameter.ALL_MODEL_MARK,
BuiltInParameter.ALL_MODEL_TYPE_NAME,
BuiltInParameter.DOOR_WIDTH,
BuiltInParameter.DOOR_HEIGHT,
BuiltInParameter.ALL_MODEL_DESCRIPTION,
BuiltInParameter.ALL_MODEL_MANUFACTURER,
]
TransactionManager.Instance.EnsureInTransaction(doc)
try:
# ── Create the schedule ──────────────────────────────────────────────────
category_id = ElementId(CATEGORY)
schedule = ViewSchedule.CreateSchedule(doc, category_id)
schedule.Name = SCHEDULE_NAME
# ── Get all schedulable fields ───────────────────────────────────────────
all_fields = list(schedule.Definition.GetSchedulableFields())
# ── Add desired parameter fields ─────────────────────────────────────────
desired_ids = set(ElementId(p) for p in DESIRED_PARAMS)
added = 0
for sf in all_fields:
if sf.ParameterId in desired_ids:
schedule.Definition.AddField(sf)
added += 1
# Fallback: if none matched, add the first 6 available fields
if added == 0:
for sf in all_fields[:6]:
schedule.Definition.AddField(sf)
# ── Add sorting by the first field ──────────────────────────────────────
if all_fields:
sort_field = ScheduleSortGroupField(all_fields[0].FieldId)
schedule.Definition.AddSortGroupField(sort_field)
TransactionManager.Instance.TransactionTaskDone()
OUT = 'Schedule created: ' + schedule.Name + ' (Id: ' + str(schedule.Id.IntegerValue) + ')'
except Exception as e:
TransactionManager.Instance.ForceCloseTransaction()
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.
- 8d ago First seen · 154 lines · 127 tokens per session scan A bad8235e3e39
create-schedule 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,281 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
kami-landing
Produce a print-grade single-page kami (紙 / 纸) document — warm parchment canvas, ink-blue accent, serif at one weight, no italic, no cool grays. The output reads like a professional white paper or studio one-pager, not an app UI. Multilingual by design (EN · zh-CN · ja). One self-contained HTML file, zero dependencies.
applying-brand-guidelines
This skill applies consistent corporate branding and styling to all generated documents including colors, fonts, layouts, and messaging.
html-ppt-obsidian-claude-gradient
OpenDesign's enterprise AI-adoption brief: local-first agents at work, the risk controls, the ROI, and the rollout plan. Built as a decision-grade AI literacy deck for leadership, IT, security.
kami
A design and typesetting guide for creating professional documents and product landing pages, such as resumes, white papers, portfolios, and slide decks.
read
Reads URLs and PDFs by fetching source content, defaulting to concise summaries for plain read requests and clean Markdown when asked to convert, save, quote, cite, or feed downstream work. Use when users ask in any language to read, fetch, check, summarize, quote, cite, convert, or save a URL or PDF. Not for local…
mermaid-tools
Extracts Mermaid diagrams from markdown files and generates high-quality PNG images using bundled scripts. Activates when working with Mermaid diagrams, converting diagrams to PNG, extracting diagrams from markdown, or processing markdown files with embedded Mermaid code.