xcstrings-manager

xcstrings-manager is a skill for Claude Code from sunghyun-k/claude-swift-plugins. It costs 40 tokens per session (1,965 once invoked), scanned A, original, MIT.

A tool for managing translations in Apple's .xcstrings localization files. It shows translation completion by language, missing entries, and the text for a selected key.

In plain words
What is it for?
Use it to check translation status, list missing keys for one or all languages, and look up localized values for a specific key.
Why use it?
It makes missing or incomplete translations easier to find across an iOS project. It also separates entries that are intentionally excluded from translation.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable.

Runs only inside a plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else, and the catalogue could not identify which plugin ships it.

Good fit Use it to check translation status, list missing keys for one or all languages, and look up localized values for a specific key.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code.

Its marketplace also offers this one on its own, as the plugin xcstrings-manager/plugin install xcstrings-manager after adding the marketplace above.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for xcstrings-manager

README.md
[![agentmods](https://agentmods.dev/badge/skills/sunghyun-k/claude-swift-plugins/xcstrings-manager/github.svg)](https://agentmods.dev/skills/sunghyun-k/claude-swift-plugins/xcstrings-manager)
Your own site
<a href="https://agentmods.dev/skills/sunghyun-k/claude-swift-plugins/xcstrings-manager"><img src="https://agentmods.dev/badge/skills/sunghyun-k/claude-swift-plugins/xcstrings-manager/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for xcstrings-manager

Your own site · 80×15
<a href="https://agentmods.dev/skills/sunghyun-k/claude-swift-plugins/xcstrings-manager"><img src="https://agentmods.dev/badge/skills/sunghyun-k/claude-swift-plugins/xcstrings-manager.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,965 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00040 $0.01965
Opus 5 $0.00020 $0.00983
Sonnet 5 $0.00008 $0.00393
Haiku 4.5 $0.00004 $0.00197

Measured 9d ago against content hash 2e5ccd4d075c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

xcstrings-manager scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/xcstrings-manager/skills/xcstrings-manager/SKILL.md · 207 lines

How it starts

The opening of the file, as written. The whole thing — 207 lines — stays where its author put it; the contents beside it link to each section on GitHub.

xcstrings 번역 관리 스킬

iOS xcstrings 파일의 번역을 관리하는 스킬입니다.

사전 준비

스크립트 사용 전, 프로젝트에서 .xcstrings 파일 위치를 먼저 확인해야 합니다.

번역 상태 확인

언어별 번역 완료율을 확인합니다.

python3 ${CLAUDE_PLUGIN_ROOT}/scripts/status.py <xcstrings_path>

옵션:

  • --json: JSON 형식으로 출력

출력 예시:

Total keys: 124
  - Translatable: 123
  - No translate: 1 (APP_STORE)
--------------------------------------------------
ko       [====================] 100.0% (123/123)
en       [====================] 100.0% (123/123)
ja       [====================-]  99.0% (122/123)

번역 제외(shouldTranslate: false) 키는 통계에서 분리되어 표시됩니다.

누락 번역 조회

번역이 누락된 키를 언어별로 조회합니다.

# 모든 언어의 누락 키 조회
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/list.py <xcstrings_path> --missing

# 특정 언어의 누락 키 조회
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/list.py <xcstrings_path> --missing=ja

조회

특정 키의 번역을 조회합니다.

python3 ${CLAUDE_PLUGIN_ROOT}/scripts/get.py <xcstrings_path> "KEY_NAME"

옵션:

  • --lang=LANG: 특정 언어만 조회 (여러 번 사용 가능)

예시:

# 모든 언어 조회
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/get.py file.xcstrings "BUTTON_SAVE"

# 특정 언어만 조회
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/get.py file.xcstrings "BUTTON_SAVE" --lang=ko --lang=ja

목록 조회

python3 ${CLAUDE_PLUGIN_ROOT}/scripts/list.py <xcstrings_path>

옵션:

  • --count: 개수만 출력
  • --missing: 누락 번역 조회 (위 섹션 참조)
  • --no-translate: 번역 제외 키만 조회

추가

새 번역 키를 추가합니다.

python3 ${CLAUDE_PLUGIN_ROOT}/scripts/add.py <xcstrings_path> "KEY_NAME" --lang=LANG:VALUE [...]

옵션:

  • --lang=LANG:VALUE: 언어별 번역 (여러 번 사용 가능)
  • --plural=LANG:CATEGORY:VALUE: 복수형 variation (여러 번 사용 가능, 아래 복수형 섹션 참조)
  • --json=LANG:JSON: localization 객체를 JSON으로 직접 지정 (substitutions 등 복합 구조용)
  • --no-translate: 번역 제외로 마킹 (고유명사 등)

--lang, --plural, --json 중 최소 1개 필수. 같은 언어를 두 옵션에 동시에 줄 수 없음.

예시:

# 한국어, 영어 추가
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/add.py file.xcstrings "BUTTON_SAVE" \
  --lang=ko:저장 --lang=en:Save

# 다국어 일괄 추가
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/add.py file.xcstrings "BUTTON_SAVE" \
  --lang=ko:저장 \
  --lang=en:Save \
  --lang=ja:保存 \
  --lang=zh-Hans:保存

# 번역 제외 (고유명사)
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/add.py file.xcstrings "APP_STORE" \
  --lang=ko:"App Store" --no-translate

Read the full file on GitHub · 207 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 207 lines · 40 tokens per session scan A 2e5ccd4d075c

Subscribe to this mod's changes

xcstrings-manager is a skill published in the GitHub repository sunghyun-k/claude-swift-plugins (3 stars, last pushed 1mo ago), licensed MIT. It adds 40 tokens to every session and 1,965 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

chinese-documentation

A Chinese technical-documentation style guide covering spacing, punctuation, numbers, terminology, and links when Chinese and English appear together.

jnMetaCode/superpowers-zh · 62 tokens

azure-ai-translation-text-py

Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications. Triggers: "text translation", "translator", "translate text", "transliterate", "TextTranslationClient".

microsoft/skills · 60 tokens

harden

Improve interface resilience through better error handling, i18n support, text overflow handling, and edge case management. Makes interfaces robust and production-ready. Use when the user asks to harden, make production-ready, handle edge cases, add error states, or fix overflow and i18n issues.

fengshao1227/ccg-workflow · 62 tokens

seedance-vocab-ja

This skill should be used when the user asks for Japanese Seedance 2.0 prompt wording, Japanese cinematic vocabulary, or translation of camera, lighting, action, VFX, audio, and production terms into Japanese.

Emily2040/seedance-2.0 · 50 tokens

asc-subscription-localization

Bulk-localize subscription, subscription-group, and in-app purchase display names across App Store locales using asc, including API 4.4.1 version-scoped v2 resources. Use when filling or updating subscription/IAP names and descriptions without App Store Connect UI work.

rorkai/app-store-connect-cli-skills · 60 tokens

i18n-helper

A helper for adding internationalization, which lets software show different languages and regional text. It finds user-visible text written directly in code and moves it into language files.

laolaoshiren/claude-code-skills-zh · 33 tokens