ソース情報
- リポジトリ
- 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-cpp-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-cpp-performance |
| description | Audits measured C++ performance. |
| metadata | {"internal":true} |
Profile an optimized, symbolized, production-like build. Explain allocations, indirection, dispatch, and generated code before introducing a low-level optimization.
std::function,
map/tree lookup, pointer-rich storage, accidental copies, and lock contention.pmr, aliasing, SIMD, LTO/PGO, and branch/cold hints as measured,
lifetime-safe, portable-by-default decisions—not generic fast paths. For SIMD, compile
SSE2/AVX2/NEON intrinsics behind runtime CPU dispatch with a scalar fallback — e.g. a
simd.cpp carrying skip_whitespace / scan_identifier_chars / find_line_terminator —
never a -march-pinned distributable that assumes the build host's ISA when it ships to
CPUs you do not control. Pin -march only to a floor a controlled target guarantees, and
record why. Enforced by scripts/fleet/check/build-microarch-is-portable.mts.