← Back to list

build
by joshcanfield
Scoreboard software for Bremerton Ice Center
⭐ 1🍴 0📅 Jan 9, 2026
SKILL.md
name: build description: Validate the full project build (Java + TypeScript UI). Detects compilation errors, test failures, and build warnings. Use when making code changes and need to verify everything compiles. allowed-tools: Bash(./gradlew:), Bash(./gradlew build:), Bash(./gradlew clean:), Bash(cmd.exe:), Bash(python:), Bash(cat:)
Build Validator
Run full project build and return concise status with any errors.
Context Reduction Strategy
IMPORTANT: To minimize context usage, use one of these approaches:
Option 1: Use Task Agent (Recommended)
Use the Task tool with subagent_type=general-purpose to run build in a separate context:
Task: Run ./gradlew clean build --no-daemon and summarize results. Report only:
- BUILD SUCCESSFUL or BUILD FAILED
- Any compilation errors (file:line + message)
- Any test failures (count only, details via java-test skill)
- Do NOT include task progress or successful compilations
Option 2: Direct Run with Filtered Summary
Run build and manually extract only errors:
./gradlew clean build --no-daemon
After running, report ONLY:
- Final status: BUILD SUCCESSFUL or BUILD FAILED
- Compilation errors (if any)
- Test summary (X passed, Y failed)
Commands
Full clean build:
./gradlew clean build --no-daemon
Incremental build (faster):
./gradlew build --no-daemon
UI-only build:
./gradlew uiBuild --info
Output Guidelines
DO NOT include in response:
- Task progress lines (
:compileJava UP-TO-DATE, etc.) - Successful compilation messages
- Download progress
- Full stack traces (max 5 lines per error)
- Deprecation warnings (unless critical)
DO include in response:
- Final BUILD status
- Each compilation error with file:line
- Test failure count (use java-test skill for details)
- Key actionable messages
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon