소스 정보
- 저장소
- kylecorry31/Trail-Sense
- 최근 소스 활동
- 2026년 8월 22일 17:35
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2,845
- 포크
- 177
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/kylecorry31/Trail-Sense --skill android-check-pr-translations명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Add Trail Sense UI automation tests using AutomationLibrary and ToolTestBase for tool workflows or androidTests.
Add Trail Sense Room persistence for a model, including entity mapping, DAO, repository, AppDatabase migration, and tool registration.
Scaffold a Trail Sense quick action with class, persisted Tools id, registration, string, and icon resources.
SKILL.md 표시 중
| name | android-check-pr-translations |
| description | Audit changed Android translations in a GitHub PR. |
| disable-model-invocation | true |
Audit the translation accuracy of Android string resources and localized guide files changed in a GitHub pull request.
Run the extraction script from the skill's folder to get the changed translated content from the PR:
python3 scripts/extract_pr_strings.py <pr-number> --output /tmp/pr-strings.json
Read the extracted JSON from /tmp/pr-strings.json.
This step is complete when the output includes:
locales: changed translated <string> resources with the English source for each key.files: changed localized guide .txt files, including guide pages, field guides, and tool_keywords.txt, with the matching guides/en-US/... source text.Use the /translation-review skill to review each of the locales and files translations. Include the string key and locale name in your finding so I can identify which language has the inaccurate translation.
If the field guide contains a localized or changed Wikipedia link, check that the link is valid and points to the same topic as the English source.
scripts/extract_pr_strings.py (skill-local)The script parses the output of gh pr diff and extracts:
<string> elements from res/values-*/strings.xml patch hunks.guides/<locale>/*.txt, excluding guides/en-US.Usage:
python3 scripts/extract_pr_strings.py <pr-number> --output /tmp/pr-strings.json
Output schema:
{
"pr_number": 1234,
"locales": {
"values-pl": {
"added": [{"key": "some_key", "value": "translated text", "english": "English source text"}],
"removed": [{"key": "old_key", "value": "old translated text", "english": "English source text"}]
}
},
"files": [
{
"path": "guides/pl-rPL/tool_keywords.txt",
"locale"
locales.*.added — strings newly introduced or whose value was changed (new value)locales.*.removed — strings that were deleted or whose value was changed (old value)locales.*.english — the corresponding value from app/src/main/res/values/strings.xml; empty string if the key is not foundres/values-*/strings.xml files are included; the English res/values/strings.xml is excludedfiles[].added — added or changed translated guide lines grouped into contiguous diff blocksfiles[].removed — removed translated guide lines grouped into contiguous diff blocksfiles[].english — the complete matching English source guide file; empty string if the source file is not found