ソース情報
- リポジトリ
- SocketDev/action
- ソースの最終更新活動
- 2026年8月4日 04:54
- 検出された SKILL.md の言語
- 英語
- スター
- 10
- フォーク
- 3
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/SocketDev/action --skill optimizing-rust-performanceコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Propagate a wheelhouse template change across fleet repos: worktrees, push/PR fallback, cleanup.
Run this repo's GitHub Actions locally with Agent-CI before pushing CI-sensitive changes.
Audit package exports for dead, internal-only, or weakly-consumed subpaths before pruning.
SOC 職業分類に基づく
SKILL.md を表示中
| name | optimizing-rust-performance |
| description | Audits measured Rust performance. |
| metadata | {"internal":true} |
Profile a release-like artifact first. Identify whether CPU, allocation, retained memory, contention, code size, or startup is the binding cost before changing idiomatic code.
unsafe, SIMD, custom allocators, and target-specific features behind explicit
invariants, supported-target dispatch, and a measured win. For SIMD, reach for
std::arch intrinsics behind is_x86_feature_detected! / #[cfg(target_arch)],
std::simd on nightly, the wide crate for stable ergonomic portable SIMD, or the
SIMD-accelerated memchr family for byte scans. Do NOT -C target-cpu=native or a
baseline -C target-feature=+avx2 in a build distributed to CPUs you do not control — it
bakes in the build machine's ISA and SIGILLs on older CPUs; runtime
is_x86_feature_detected! dispatch is the portable path. Pin only to a floor a controlled
target guarantees — a homogeneous fleet, a per-ISA build matrix, or a local build where
build host == run host — and record why. Enforced by
scripts/fleet/check/build-microarch-is-portable.mts.