원클릭으로
build
Validate C# scripts compile by running a standalone syntax check
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Validate C# scripts compile by running a standalone syntax check
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Implement a plan with coordinated agents
Verify completed plan implementation, fix gaps, and commit fixes
Clean temporary files and build artifacts
Close GitHub issues that have been implemented, with verification
Stage and commit current changes with an auto-generated message
Create an implementation plan from GitHub issues or a description
| name | build |
| description | Validate C# scripts compile by running a standalone syntax check |
Validate that the package's C# scripts have no syntax errors. Since this is a UPM package (not a Unity project), full compilation requires Unity. This skill runs a lightweight validation using dotnet build against a validation project if available, or falls back to Roslyn syntax checking.
Usage: /build
Behavior:
Log location: .claude/tmp/last-build.log
mkdir -p .claude/tmp to ensure log directory exists.rm -f .claude/tmp/last-build.log..cs files in Editor/, Runtime/, and Tests/Editor/ and verify they exist.Validation~/Validation.csproj exists, run: dotnet build Validation~/Validation.csproj > .claude/tmp/last-build.log 2>&1.cs file and check for obvious issues (unbalanced braces, missing semicolons, duplicate class names).tail -10 .claude/tmp/last-build.logtail -100 .claude/tmp/last-build.log, then echo "=== Full log: .claude/tmp/last-build.log ==="