ソース情報
- リポジトリ
- 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-parser-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-parser-performance |
| description | Audits parser and tokenizer performance. |
| metadata | {"internal":true} |
Profile release-like parsing against representative valid, malformed, small, large, ASCII, and Unicode corpora. Preserve grammar behavior, diagnostics, source locations, and resource limits.
Use optimizing-compiler-performance only for a profile-proven codegen issue.
A lexer scanning identifiers, strings, template bodies, or whitespace is the case that pays
off for hand SIMD — the optimizer will not autovectorize a data-dependent find-first-of-a-
byte-set scan, so reach for explicit SIMD or a memchr-family primitive. Portable SIMD is
runtime CPU dispatch; do not ship -C target-cpu=native or GOAMD64=v2|v3|v4 in a build
distributed to CPUs you do not control. Pin only to a floor a controlled target guarantees,
and record why, enforced by scripts/fleet/check/build-microarch-is-portable.mts.
readString scanning 0xE2 for U+2028/U+2029 handling that the Rust and C++ ports omit.
Correctness beats cross-port delimiter symmetry.