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 export-dynamo-filegit 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/export-dynamo-file)<a href="https://agentmods.dev/skills/utopia5327/claude-plugin-for-revit-bim/export-dynamo-file"><img src="https://agentmods.dev/badge/skills/utopia5327/claude-plugin-for-revit-bim/export-dynamo-file/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/export-dynamo-file"><img src="https://agentmods.dev/badge/skills/utopia5327/claude-plugin-for-revit-bim/export-dynamo-file.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.00180 | $0.01707 |
| Opus 5 | $0.00090 | $0.00853 |
| Sonnet 5 | $0.00036 | $0.00341 |
| Haiku 4.5 | $0.00018 | $0.00171 |
Grade A, and why
export-dynamo-file 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 — 193 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Export Dynamo Graph File (.dyn)
Generate a complete, openable Dynamo .dyn file for:
"$ARGUMENTS"
What this produces
A .dyn file is a Dynamo graph saved as JSON. When the user opens it in Dynamo
(File → Open or double-click), they get a ready-to-run graph with a Python Script node
pre-filled with the generated code — no manual node creation or copy-pasting required.
Workflow
-
First, generate the Python script for the task (follow all guidelines from
generate-dynamoskill — boilerplate imports, transactions, error handling, OUT=result). -
Then wrap it in a valid
.dynfile using the template below. -
If you have file system access (Cowork / Claude Code), save the
.dynfile directly to the user's desktop or a path they specify. Otherwise, output the complete JSON so they can save it manually asscriptname.dyn.
.dyn file template
Build the JSON programmatically — never try to manually JSON-escape multi-line Python
code by hand. Instead, use Python's json.dumps() to produce the correct JSON string,
or build the structure as a dict and serialize it. Here is the canonical template:
import json, uuid
# The Python script to embed (write the full script as a normal Python string here)
python_code = """
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
try:
# --- generated logic here ---
result = []
OUT = result
except Exception as e:
import traceback
OUT = 'ERROR: ' + str(e) + '\\n' + traceback.format_exc()
""".strip()
# Unique IDs for the graph and nodes
graph_id = str(uuid.uuid4())
node_id = str(uuid.uuid4())
graph = {
"Uuid": graph_id,
"IsCustomNode": False,
"Description": "Generated by revit-bim Claude plugin",
"Name": "BIM Script", # ← set to a meaningful name based on the task
"ElementResolver": {"ResolutionMap": {}},
"Inputs": [],
"Outputs": [],
"Nodes": [
{
"ConcreteType": "PythonNodeModels.PythonNode, PythonNodeModels",
"NodeType": "PythonScriptNode",
"Code": python_code, # json.dumps handles escaping automatically
"Engine": "IronPython2",
"EngineName": "IronPython2",
"VariableInputPorts": True,
"Id": node_id,
"Inputs": [
{
"Id": "in0",
"Name": "IN[0]",
"Description": "Input #0",
"UsingDefaultValue": False,
"Level": 2,
"UseLevels": False,
"KeepListStructure": False
}
],
"Outputs": [
{
"Id": "out0",
"Name": "OUT",
"Description": "Result of the python script",
"UsingDefaultValue": False,
"Level": 2,
"UseLevels": False,
"KeepListStructure": False
}
],
"Replication": "Disabled",
"Description": "Runs an embedded Python script."
}
],
"Connectors": [],
"Dependencies": [],
"NodeLibraryDependencies": [],
"EnableLaceByDefault": True,
"Bindings": [],
"View": {
"Dynamo": {
"ScaleFactor": 1.0,
"HasRunWithoutCrash": False,
"IsVisibleInDynamoLibrary": True,
"Version": "2.13.1.3887",
"RunType": "Manual",
"RunPeriod": "1000"
},
"Camera": {
"Name": "Background Preview",
"EyeX": -17.0, "EyeY": 24.0, "EyeZ": 50.0,
"LookX": 12.0, "LookY": -13.0, "LookZ": -58.0,
"UpX": 0.0, "UpY": 1.0, "UpZ": 0.0
},
"NodeViews": [
{
"Name": "Python Script",
"ShowGeometry": True,
"Id": node_id,
"IsSetAsInput": False,
"IsSetAsOutput": False,
"Excluded": False,
"X": 250.0,
"Y": 100.0
}
],
"Annotations": [],
"X": -100.0,
"Y": -50.0,
"Zoom": 1.0
}
}
# Serialize to JSON with proper indentation and escaping
dyn_json = json.dumps(graph, indent=2, ensure_ascii=False)
# Save to file
output_path = r"C:\Users\YourName\Desktop\script_name.dyn" # ← ask user or use a sensible default
with open(output_path, 'w', encoding='utf-8') as f:
f.write(dyn_json)
print("Saved: " + output_path)
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 · 193 lines · 180 tokens per session scan A 5178089b0358
export-dynamo-file is a skill published in the GitHub repository Utopia5327/claude-plugin-for-revit-bim (6 stars, last pushed 6mo ago), licensed MIT. It adds 180 tokens to every session and 1,707 once invoked, about $0.0009 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…