원클릭으로
build-log
View and analyze build logs. Use when user wants to see build errors, check previous build output, or debug build failures.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
View and analyze build logs. Use when user wants to see build errors, check previous build output, or debug build failures.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run matmul performance benchmarks. Use when user wants to measure TFLOPS, compare kernel performance, or verify correctness after code changes.
SM120 (Blackwell) CUDA expert. Use for wgmma/mma PTX inline assembly, TMA, narrow precision (FP4/FP6/FP8), and block-scaled GEMM development.
Run LLM inference tests with Qwen or other models. Use when testing model loading, inference, CUDA Graph, or generation quality.
Run all checks including lint, typecheck, and tests. Use before creating PRs or for comprehensive validation.
CUDA kernel development workflow. Use when writing, testing, or optimizing GPU kernels. Follows the Edit-Build-Validate-Benchmark-Commit cycle.
Run Ruff linter and formatter on Python code. Use before commits or when checking code style and quality issues.
| name | build-log |
| description | View and analyze build logs. Use when user wants to see build errors, check previous build output, or debug build failures. |
View and analyze PyGPUkit build logs.
Build logs are stored in .claude/logs/build/
Format: build_sm{SM}_cuda{VERSION}_{TIMESTAMP}.log
# List recent logs
ls -lt .claude/logs/build/
# View latest log
cat .claude/logs/build/$(ls -t .claude/logs/build/ | head -1)
# View specific log
cat .claude/logs/build/build_sm120a_cuda13.1_20241227_120000.log
# Search for errors
grep -i error .claude/logs/build/$(ls -t .claude/logs/build/ | head -1)
# Search for warnings
grep -i warning .claude/logs/build/$(ls -t .claude/logs/build/ | head -1)
# Show last 50 lines of latest log
tail -50 .claude/logs/build/$(ls -t .claude/logs/build/ | head -1)
| Pattern | Meaning |
|---|---|
nvcc fatal | CUDA compilation error |
error: no operator | C++ type mismatch |
undefined reference | Linker error (missing symbol) |
CMake Error | Build configuration issue |
fatal error C1083 | Missing header file |
error: or fatal: patternsLogs are automatically cleaned up (last 10 kept). To manually clean:
# Remove all logs older than 7 days
find .claude/logs/build/ -mtime +7 -delete
# Keep only last 5 logs
ls -t .claude/logs/build/*.log | tail -n +6 | xargs rm -f