create-schedule

create-schedule is a skill for Claude Code from Utopia5327/claude-plugin-for-revit-bim. It costs 127 tokens per session (1,281 once invoked), scanned A, original, MIT.

A Dynamo Python workflow for creating Revit schedules, which are tables inside a building model that list and count elements or materials. It can configure fields, filters, and quantity-takeoff settings.

In plain words
What is it for?
Use it to create schedules for a chosen category, add fields such as marks, types, dimensions, or areas, apply filters, and optionally place the schedule on a sheet.
Why use it?
Building teams often need repeatable tables of doors, walls, rooms, windows, or materials. Automating schedule setup reduces manual configuration and keeps reports tied to model data.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Part of the revit-bim plugin — 25 skills, 3 agents, 2 hooks shipped together

Good fit Use it to create schedules for a chosen category, add fields such as marks, types, dimensions, or areas, apply filters, and optionally place the schedule on a sheet.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/utopia5327/claude-plugin-for-revit-bim/create-schedule
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 Utopia5327/claude-plugin-for-revit-bim --skill create-schedule
Clone the repo
git clone --depth 1 https://github.com/Utopia5327/claude-plugin-for-revit-bim

Made for: Claude Code.

Or install revit-bim, the plugin that ships this one along with the rest of its 25 skills, 3 agents, 2 hooks.

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 create-schedule

README.md
[![agentmods](https://agentmods.dev/badge/skills/utopia5327/claude-plugin-for-revit-bim/create-schedule/github.svg)](https://agentmods.dev/skills/utopia5327/claude-plugin-for-revit-bim/create-schedule)
Your own site
<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.

agentmods 80×15 button for create-schedule

Your own site · 80×15
<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>
Per session 127 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,281 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.00127 $0.01281
Opus 5 $0.00063 $0.00641
Sonnet 5 $0.00025 $0.00256
Haiku 4.5 $0.00013 $0.00128

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

Security

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.

skills/create-schedule/SKILL.md · 154 lines

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()

Read the full file on GitHub · 154 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. 8d ago First seen · 154 lines · 127 tokens per session scan A bad8235e3e39

Subscribe to this mod's changes

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.

Related

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.

nexu-io/open-design · 81 tokens

applying-brand-guidelines

This skill applies consistent corporate branding and styling to all generated documents including colors, fonts, layouts, and messaging.

anthropics/claude-cookbooks · 27 tokens

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.

nexu-io/open-design · 53 tokens

kami

A design and typesetting guide for creating professional documents and product landing pages, such as resumes, white papers, portfolios, and slide decks.

tw93/Kami · 157 tokens

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…

tw93/Waza · 78 tokens

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.

daymade/claude-code-skills · 48 tokens