Localization Checker
Scan source code for untranslated strings and generate a translation report
Example Prompt
Scan our codebase for untranslated strings and create an issue with the missing translations
About
This skill scans your application's source code for hardcoded or untranslated strings that should be localized. It compares found strings against existing translation files, identifies missing translations for each supported locale, and generates a prioritized report with the untranslated strings ready for the translation team.
Workflow Steps
List source code directories to identify files that may contain user-facing strings
๐ List DirectoryRead source files and extract hardcoded strings that appear to need translation
๐ Read FileRead existing translation files from the repository to compare coverage
๐ Read Repo FileIdentify missing translations for each locale and prioritize by user impact
๐ง Structured ReasoningCreate a GitHub issue with the list of untranslated strings for the translation team
โ Create IssueTools Used
List Directory
List all files and subdirectories in a given directory path
Read File
Read the contents of a file at a specified path on the local filesystem
Create Issue
Create a new issue in a GitHub repository with title, body, labels, and assignees
Read Repo File
Read the contents of a file from a GitHub repository at a specific branch or commit
Structured Reasoning
Break down a complex problem into sequential reasoning steps with explicit chain-of-thought