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

@worldware/i18n-skills

v1.1.0

Published

Agent skills for i18n workflows: extract text, localize, and work with msg / msg-cli

Readme

i18n-skills

Agent skills for i18n workflows — extract hard-coded UI copy, localize, and work with msg / msg-cli.

Compatible with Cursor, Claude Code, Codex, VS Code Copilot, and any client that follows the Agent Skills standard.

Published as @worldware/i18n-skills. Skills live at .agents/skills/ inside the package.

Install

From npm:

npm install @worldware/i18n-skills

Skills are at node_modules/@worldware/i18n-skills/.agents/skills/. Copy or symlink them into your project (.agents/skills/ or .cursor/skills/) or your user skill directory.

From GitHub (skills CLI):

npx skills add worldware-studios/i18n-skills

Cursor (GitHub import): Customize → Skills / Rules → add https://github.com/worldware-studios/i18n-skills.

User-level (clone or copy):

# Copy or symlink individual skills
ln -s "$(pwd)/.agents/skills/extract-text" ~/.agents/skills/extract-text

# Cursor also loads ~/.cursor/skills/
ln -s "$(pwd)/.agents/skills/extract-text" ~/.cursor/skills/extract-text

Project-level:

cp -R .agents/skills/extract-text /path/to/project/.agents/skills/
# or: /path/to/project/.cursor/skills/

Layout

.
├── .agents/skills/          # Skills discovered by agents (portable path)
│   └── extract-text/        # Externalize hard-coded TS/JS strings for i18n
│       ├── SKILL.md
│       └── references/      # Optional on-demand docs
├── fixtures/                # Dry-run / demo projects for skills
├── templates/skill/         # Copy this when adding a new skill
├── scripts/                 # Collection-level tooling
├── package.json             # npm package @worldware/i18n-skills
├── CATALOG.md               # Human-readable skill index
└── CONTRIBUTING.md          # How to add or change skills

Each skill is a directory whose name matches the name field in SKILL.md.

Create a new skill

./scripts/new-skill.sh my-skill-name

Then edit .agents/skills/my-skill-name/SKILL.md — especially the description (what + when).

Validate

npm test
# or: ./scripts/validate-skills.sh

Requires skills-ref when you want full frontmatter validation:

npm install -g @agentskills/skills-ref   # if published
# or clone agentskills and run skills-ref validate

Skill checklist

  • [ ] Folder name matches name in frontmatter (lowercase, hyphens)
  • [ ] description includes what the skill does and when to use it
  • [ ] SKILL.md stays concise (under ~500 lines); details go in references/
  • [ ] Scripts are self-contained and documented
  • [ ] Entry added to CATALOG.md

Versioning and releases

Pushes to main run semantic-release. Squash-merge PR titles must follow Conventional Commits (type(scope): summary) so the landed commit can bump the npm version:

  • feat — minor
  • fix, perf — patch
  • feat! / BREAKING CHANGE — major

ci, chore, docs, test, and refactor do not publish a new version.

References

License

MIT — see LICENSE. Individual skills may declare a different license in frontmatter.