Flat keys with dot notation (not nested objects):
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versioni18nExecute the skills CLI command in your project's root directory to begin installation:
Fetches i18n from lobehub/lobe-chat and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate i18n. Access via /i18n in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
74.8K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
74.8K
stars
src/locales/default/ - Never edit JSON files in locales/pnpm i18n to generate translations (or manually translate zh-CN/en-US for dev preview)Flat keys with dot notation (not nested objects):
// ✅ Correct
export default {
'alert.cloud.action': '立即体验',
'sync.actions.sync': '立即同步',
'sync.status.ready': '已连接',
};
// ❌ Avoid nested objects
export default {
alert: { cloud: { action: '...' } },
};
Patterns: {feature}.{context}.{action|status}
Parameters: Use {{variableName}} syntax
'alert.cloud.desc': '我们提供 {{credit}} 额度积分',
Avoid key conflicts:
// ❌ Conflict
'clientDB.solve': '自助解决',
'clientDB.solve.backup.title': '数据备份',
// ✅ Solution
'clientDB.solve.action': '自助解决',
'clientDB.solve.backup.title': '数据备份',
src/locales/default/{namespace}.tssrc/locales/default/index.tslocales/zh-CN/{namespace}.json and locales/en-US/{namespace}.jsonpnpm i18n before creating PR — do NOT run it yourself (very slow)import { useTranslation } from 'react-i18next';
const { t } = useTranslation('common');
t('newFeature.title');
t('alert.cloud.desc', { credit: '1000' });
// Multiple namespaces
const { t } = useTranslation(['common', 'chat']);
t('common:save');
Most used: common (shared UI), chat (chat features), setting (settings)
Others: auth, changelog, components, discover, editor, electron, error, file, hotkey, knowledgeBase, memory, models, plugin, portal, providers, tool, topic
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
We added i18n from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
i18n fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Keeps context tight: i18n is the kind of skill you can hand to a new teammate without a long onboarding doc.
Keeps context tight: i18n is the kind of skill you can hand to a new teammate without a long onboarding doc.
i18n has been reliable in day-to-day use. Documentation quality is above average for community skills.
i18n reduced setup friction for our internal harness; good balance of opinion and flexibility.
Useful defaults in i18n — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend i18n for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Registry listing for i18n matched our evaluation — installs cleanly and behaves as described in the markdown.
i18n fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 33