ワンクリックで
build
Verify that all packages compile successfully
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Verify that all packages compile successfully
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | build |
| description | Verify that all packages compile successfully |
Compile all Go packages to catch import or syntax errors fast.
Run the build command for all packages:
go build ./...
If you need to build specific bot binaries to verify them individually:
for bot in bluebot bunkbot covabot djcova ratbot; do
go build ./cmd/$bot/ || echo "BROKEN: $bot"
done
Report the outcome.
Mandatory rules for general git use in this repository. Follow these constraints before starting work, committing, or pushing.
Use for any Go code writing, refactoring, or review in starbunk-go. This agent cares about clean, idiomatic, readable Go — thoughtful naming, aesthetic structure, and code that feels good to read.
Comprehensive health check that runs build, test, lint, builds docker containers, checks container health/status, and reports to the user.
Feature developer and task runner agent. Start a new task on a fresh branch, orchestrate worktrees, do the implementation work, and open a PR when done.
Autonomously diagnose and fix a failing CI pipeline on the current branch.
PR Comment Addresser agent. Fetches all unresolved PR comments, evaluates their relevance, lists them for the user to select from, implements the selected fixes, and closes the addressed (and skipped) comments while ignoring new ones.