npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@intlpullhq/skills

v0.1.8

Published

IntlPull Localization Skill for AI Agents (Claude, Cursor, Windsurf)

Downloads

51

Readme

IntlPull Localization Skill

The "Remotion" of Localization: A programmable, logic-safe i18n skill for AI Agents.

This skill equips Claude with Standardized Localization Engineering Knowledge. Unlike generic translation prompts that often break code, this skill enforces a Logic-Safe Protocol to ensure your application is internationalized without introducing regressions.

🛡️ Why "Logic-Safe"?

Localization is not just replacing text; it's about context. This skill is trained to distinguish between:

  • User-facing UI text (Safe to extract)
  • Code logic, IDs, & Keys (Critical to preserve)

It performs real-time Threat Modeling before suggesting any refactor, ensuring that your useEffect dependencies, data-testid attributes, and internal logic remain untouched.

🚀 Features

  • Surgical Extraction: Identifies safe text candidates with high precision.
  • Framework Native: Specialized patterns for Next.js, React, React Native, iOS, Android, and more.
  • CLI Automation: Seamlessly orchestrates @intlpullhq/cli to check status, upload/download strings, and fix missing keys.
  • Context-Aware Naming: Generates semantic keys (e.g., Settings.Profile.title) rather than generic ones (e.g., text_1).

📦 Installation

Option 1: Via skills.sh (Recommended — works with all AI agents)

npx skills add intlpull/skills

This installs the skill into your active AI agent (Claude Code, Cursor, Windsurf, Gemini CLI, and more). Tracked on the skills.sh leaderboard.

Option 2: Via @intlpullhq/skills npm package

npx @intlpullhq/skills

Interactive installer — detects installed agents and symlinks the skill automatically.

Option 3: Manual Installation

Copy SKILL.md directly into your agent's skills directory:

# Claude Code
mkdir -p ~/.claude/skills/intlpull-localization
curl -o ~/.claude/skills/intlpull-localization/SKILL.md \
  https://raw.githubusercontent.com/intlpull/skills/main/SKILL.md

# Or copy from this repo
mkdir -p .claude/skills/intlpull-localization
cp SKILL.md .claude/skills/intlpull-localization/SKILL.md

Supported Agents

| Agent | Config Dir | Auto-detected | |-------|-----------|---------------| | Claude Code | ~/.claude/skills/ | ✅ | | Antigravity | ~/.gemini/antigravity/skills/ | ✅ | | Cursor | ~/.cursor/skills/ | ✅ | | Windsurf | ~/.codeium/windsurf/skills/ | ✅ | | Gemini CLI | ~/.gemini/skills/ | ✅ | | Amp | ~/.amp/skills/ | ✅ | | Kiro | ~/.kiro/skills/ | ✅ |

💡 Usage Examples

Once installed, Claude becomes your Localization Engineer.

1. The "Refactor" Prompt

"Localize this entire component, but be careful with the logic."

Claude's Action:

  1. Scans the file for string literals.
  2. Filters out CSS classes, IDs, and logic values.
  3. Proposes a useTranslation refactor.
  4. Generates the corresponding JSON key-value pairs.

2. The "fix" Prompt

"I have some missing keys in the Spanish translation file."

Claude's Action: Runs the CLI to identify and autofill missing keys:

# Preview what would be fixed
npx @intlpullhq/cli fix --dry-run

# Auto-fix missing translations (defaults to source: en)
npx @intlpullhq/cli fix

# Fix for a specific target language
npx @intlpullhq/cli fix --source en --target es

3. The "Audit" Prompt

"Check if I missed any hardcoded strings in the settings page."

Claude's Action: Manually reviews the code against the "Safe Extraction" rules and flags anything that should be internationalized.

🛡️ Best Practices Enforced

  1. Atomic Changes: Suggests small, verifiable steps rather than massive, risky refactors.
  2. Semantic Keys: Auth.Login.submitButton instead of submit.
  3. No Logic Breaking: Strictly avoids touching const values used in logic, useEffect arrays, or switch cases.

Troubleshooting

  • Agent refactoring CSS?: The skill has strict negative constraints. If you see this, please report it!
  • CLI not working?: Ensure @intlpullhq/cli is installed in your project: npm i -D @intlpullhq/cli.
  • Skill not loading?: Verify the SKILL.md is at ~/.agents/skills/intlpull-localization/SKILL.md or in your agent's specific skills dir.

Links

License

MIT