smithery.ai

revit-build

AgenticRevit 플러그인 빌드 및 배포 자동화 스킬

First seen Apr 9, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,135 B
  • docs SUMMARY.md 79 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Revit Build Skill

Purpose

AgenticRevit 플러그인의 빌드, 테스트, 배포를 자동화합니다.

Commands

Build Debug

cd src && dotnet build -c Debug

Build Release

cd src && dotnet build -c Release

Clean & Rebuild

cd src && dotnet clean && dotnet build -c Release

Deploy to Revit

# Copy DLL to Revit Addins folder
$source = "src/bin/Release/AgenticRevit.dll"
$dest = "$env:APPDATA/Autodesk/Revit/Addins/2025/"
Copy-Item $source $dest -Force
Copy-Item "AgenticRevit.addin" $dest -Force

Build Checklist

  1. [ ] NuGet 패키지 복원
  2. [ ] 컴파일 에러 확인
  3. [ ] 경고 처리
  4. [ ] DLL 복사
  5. [ ] .addin 매니페스트 복사

Troubleshooting

Revit API 참조 에러

  • Revit 2025 SDK 설치 확인
  • .csproj의 HintPath 경로 확인

빌드 실패

  • .NET Framework 4.8 설치 확인
  • x64 플랫폼 설정 확인