AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

I18n Helper

skill-sourav15mukherjee-skillforge-free-skills-i18n-helper · by sourav15mukherjee

>-

No reviews yet
0 installs
40 views
0.0% view→install

Install

$ agentstack add skill-sourav15mukherjee-skillforge-free-skills-i18n-helper

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-sourav15mukherjee-skillforge-free-skills-i18n-helper)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of I18n Helper? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

i18n/Localization Helper

Extract hardcoded strings, generate locale files, and validate translation completeness across languages.

Workflow

  1. Detect the i18n framework in use

``bash grep -E "i18next|react-intl|vue-i18n|next-intl|@formatjs" package.json 2>/dev/null ` Check for config files: i18n.ts, next.config.js with i18n key, src/locales/`. If no framework found, recommend one and help set it up.

  1. Discover existing locale files

``bash find . -maxdepth 4 \( -name "*.json" -o -name "*.yaml" \) -path "*/locale*" -o -path "*/i18n/*" -o -path "*/translations/*" | grep -v node_modules `` Parse each file, build key inventory per language. Note structure: flat vs nested keys.

  1. Scan source code for hardcoded strings

Find user-facing strings in JSX text, component props, toast/alert calls, page titles, form validation messages. Exclude: CSS classes, console.log, import paths, test strings, URLs.

  1. Generate translation keys

Naming convention: page.section.element `` "Welcome back" → common.welcomeBack "Submit" → common.buttons.submit "Email is required" → forms.validation.emailRequired ``

  1. Extract and update source code

Replace hardcoded strings with translation calls: ```tsx // Before Welcome back

// After (i18next) const { t } = useTranslation(); {t("common.welcomeBack")} ```

  1. Generate or update locale files

Create JSON/YAML for each language. Non-primary languages get placeholders: ``json { "common": { "welcomeBack": "[ES] Welcome back" } } ``

  1. Validate locale completeness

`` en.json: 142/142 keys (100%) es.json: 128/142 keys (90.1%) — 14 missing fr.json: 135/142 keys (95.1%) — 7 missing ``

  1. Find unused translation keys

Report keys in locale files never referenced in source code.

Rules

  • Never modify non-primary locale files without user confirmation
  • Preserve existing key structure and ordering
  • Mark placeholder translations with [TODO] or [LANG] prefix
  • Do not extract developer-facing strings (logs, error codes)
  • Handle pluralization using the framework's syntax
  • Handle interpolation: "Hello, {{name}}" not string concatenation
  • Process one file at a time, show changes before applying
  • Sort keys alphabetically within namespaces

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.