ソース情報
- リポジトリ
- SocketDev/socket-btm
- ソースの最終更新活動
- 2026年8月1日 14:58
- 検出された SKILL.md の言語
- 英語
- スター
- 3
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/SocketDev/socket-btm --skill optimizing-go-performanceコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Run this repo's GitHub Actions locally with Agent-CI before pushing CI-sensitive changes.
Audit Actions permissions/allowlists against the fleet baseline; --conform fixes drift.
Propagate a wheelhouse template change across fleet repos: worktrees, push/PR fallback, cleanup.
SOC 職業分類に基づく
SKILL.md を表示中
| name | optimizing-go-performance |
| description | Audits measured Go performance. |
| metadata | {"internal":true} |
Use -benchmem and the relevant pprof/trace evidence before changing allocations,
concurrency, pooling, or an API for escape behavior.
fmt, append/map growth, interface/reflection paths,
goroutine-per-item work, channel contention, and default-use sync.Pool.golang.org/x/sys/cpu runtime feature dispatch with a
//go:build !amd64 && !arm64 scalar fallback; no cgo, no GOEXPERIMENT. Do NOT raise
GOAMD64 to v2/v3/v4 for a binary distributed to CPUs you do not control — it raises the
ISA floor and crashes on older CPUs; a single default v1 binary plus x/sys/cpu dispatch
still uses AVX2 when present and runs everywhere. Pin GOAMD64 only to a floor a controlled
target guarantees — a homogeneous fleet or a per-ISA build matrix — and record why.
Enforced by scripts/fleet/check/build-microarch-is-portable.mts.