ワンクリックで
localize-search
Scan TSX files for potentially unlocalized user-facing strings while excluding known false positives.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Scan TSX files for potentially unlocalized user-facing strings while excluding known false positives.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run the npm package update check script and summarize available updates.
Orchestrate full localization by running localize-search, localize-update, and localize-strings in sequence.
Run the build-add-in localization workflow when UI strings are added or changed, including extracting strings, generating translation prompts, updating TSV language files, embedding localized output, and validating results.
Wrap unlocalized user-facing TSX strings with loc() using minimal, targeted source edits.
Run repository quality checks (compile, lint, style, spell-check, tests, and related validation), then produce an error report with likely root causes and suggested fixes.
| name | localize-search |
| description | Scan TSX files for potentially unlocalized user-facing strings while excluding known false positives. |
Use this skill to locate likely unlocalized user-facing strings in TSX files without making code changes.
src/.src/shared/.src/blocks/.localize-scan-ignore comments.<code>...</code> blocks.TS, HTML, CSS, and Libraries in src/components/PageEdit.tsx.Find JSX text nodes that may be user-facing:
>\s*[A-Za-z][^<{]{0,120}<truesrc/**/*.tsxFind likely user-facing attributes with hardcoded text:
\b(placeholder|label|title|header|tooltip|text|aria-label)\s*=\s*\{?"[A-Za-z][^"]{0,120}"\}?truesrc/**/*.tsxPost-filter results:
src/shared/**.src/blocks/**.localize-scan-ignore.<code>...</code> blocks.TS, HTML, CSS, and Libraries tab labels in src/components/PageEdit.tsx.Return a flat list grouped by file with:
candidate or review required for brand/product-like strings)Sort output by file path, then line number.
Do not modify files in this workflow.