원클릭으로
revit-root-router
Revit 二次开发总控入口(薄封装)。统一做任务分流与环境加载,再路由到子 skill 执行。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Revit 二次开发总控入口(薄封装)。统一做任务分流与环境加载,再路由到子 skill 执行。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | revit-root-router |
| description | Revit 二次开发总控入口(薄封装)。统一做任务分流与环境加载,再路由到子 skill 执行。 |
这是 revit 技能集合的唯一默认入口。目标只有两个:
use-private-env.sh 执行~/... 为参考路径,不是安装强依赖。规则:未明确指定子 skill 时,先走本入口,再进入子 skill。
任何涉及 shell 命令的步骤,先走包装脚本:
~/.hermes/skills/revit/scripts/use-private-env.sh <command>
禁止默认裸跑 <command>,避免遗漏 ~/.config/revit-skill.env。
revit-plugin-dev-workflowrevit-build-deployrevit-coding-patternsrevit-tunit-testingrevit-skill-governancebash scripts/check-revit-skill-guard.sh .
Build and deploy Revit 2026 plugins (SuperRoky and FmRoky). Use when compiling, deploying, or troubleshooting build issues for any Revit plugin project. Covers build scripts, SSH sync, git push/pull via GitLab, DeployAddin, Copy-Item deploy, and .addin file formats.
Revit 2026 plugin code patterns, pitfalls, and FAQ. Covers WPF cross-thread, ExternalEvent, preview image extraction, Material namespace conflict, OpenMcdf 3.x, and other common issues. Nice3point-specific patterns → references/nice3point-patterns.md. Scotec/FmRoky patterns → references/scotec-patterns.md.
Revit 2026 插件开发全生命周期。阶段 0 需求分流 → 阶段 1 Wiki+编码+编译 → 阶段 2 测试 → 阶段 3 维护 → 阶段 4 发布。Hermes 不直接修改 Revit 源码,默认委托 Claude Code 完成编码与代码审查。
Review and harden the Revit skill ecosystem against the latest dual-diagram architecture, single-source-of-truth rules, guardrails, and eval evidence. Use when auditing `revit-plugin-dev-workflow`, `revit-build-deploy`, `revit-coding-patterns`, related references, or when skill docs start drifting from the actual Revit development topology/SOP.
Nice3point TUnit 框架在 Revit 插件项目中的工程规范。覆盖测试项目结构、RevitApiTest 基类、HookExecutor 注解、Document Fixture、常见错误。触发条件:写测试、运行测试、测试报错、CI 配置。