一键导入
check
Run the full CI test suite locally (go test, go vet, golangci-lint, and devops-validate)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run the full CI test suite locally (go test, go vet, golangci-lint, and devops-validate)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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.
| name | check |
| description | Run the full CI test suite locally (go test, go vet, golangci-lint, and devops-validate) |
Run all local CI checks to ensure code is ready for PR.
Run the following checks sequentially:
bash scripts/devops-validate.sh
go vet ./...
golangci-lint run
go test ./...
Report the results of each step clearly. If any step fails, analyze the output and suggest fixes.