- Home
- /
- Categories
- /
- i18n
i18n
Localization and translation
coding-context
by weegigs
Detect languages in target files and inject appropriate language skills. Use before implementing code to ensure language-specific patterns are loaded.
php-intl
by peixotorms
Use when working with multibyte strings, UTF-8 encoding, character encoding conversion, locale-aware formatting (dates, numbers, currencies), transliteration, pluralization, or internationalization. Covers mb_strlen, mb_substr, mb_strtolower, mb_strtoupper, mb_detect_encoding, mb_convert_encoding, iconv, grapheme functions, emoji handling, unicode processing, locale-aware sorting, ICU library, intl extension (Collator, NumberFormatter, IntlDateFormatter, MessageFormatter, Transliterator, Normalizer), currency formatting, date formatting, transliteration, string normalization (NFC, NFD, NFKC, NFKD), and the UTF-8 input-to-output pipeline.
avoid-repeated-params
by marius-townhouse
Use when functions have multiple parameters of same type. Use when parameter order is easy to confuse. Use when designing function signatures.
skill-optimizer
by ttokit
Analyzes and optimizes existing skills based on official best practices. Evaluates quality score, proposes structural improvements (Progressive Disclosure), description enhancement, and error handling additions. Use when: "improve skill", "optimize skill", "follow best practices", "review skill", "check SKILL.md", "analyze SKILL.md quality".
my-skill
by deletexiumu
Describe what this skill does in one sentence, and in what context/task type it should be used. Include key features and supported languages if applicable.
cleaning
by weegigs
Language-specific code cleaning patterns. Use alongside the code-cleaner agent or independently for language idioms.
domain-language-types
by marius-townhouse
Use when naming types. Use when types describe structure not meaning. Use when domain experts won't understand type names.
ctx:help
by Shakes-tzd
Help users discover Contextune capabilities and understand how to use natural language commands. Use when users ask about Contextune features, available commands, how to use the plugin, or what they can do. Activate for questions like "what can Contextune do?", "how do I use this?", "show me examples", "what commands are available?"
code-standards
by qiaoshouqing
"Setup universal code quality standards in your project. Use when the user wants to generate coding standards files (CLAUDE.md, AGENTS.md, GEMINI.md, etc.) or mentions 'code standards', 'code review setup', or similar intent in any language."
content-writing
by mokbhai
Write compelling project descriptions and business communications that focus on outcomes, impact, and value without exposing technical implementation details or internal logic. Use this skill when creating: (1) Project descriptions for stakeholders, executives, or portfolios, (2) Business impact summaries and outcome documentation, (3) Executive summaries that explain "what" we're building without revealing "how" it works, (4) Marketing materials or external-facing project communications, (5) Any content that needs to persuade stakeholders by emphasizing business value over technical details. Perfect for explaining projects to non-technical audiences while maintaining appropriate boundaries around proprietary information.
wordpress-wp-cli
by 1TeamSoftware
"Comprehensive WordPress WP-CLI command reference covering all 350+ commands across 38 command groups. This skill should be used when performing WordPress site administration, configuration, migration, content management, plugin/theme management, user management, database operations, or any WordPress task via the command line. Covers wp core, wp config, wp db, wp plugin, wp theme, wp user, wp post, wp comment, wp term, wp media, wp menu, wp option, wp cache, wp cron, wp rewrite, wp scaffold, wp search-replace, wp language, wp site (multisite), wp widget, wp role, wp cap, wp export/import, wp eval, wp i18n, wp embed, wp package, and more."
axim-rest-framework
by Axim-one
Build Spring Boot REST APIs with Axim REST Framework. Use when creating entities, repositories, services, controllers, error handling, or pagination with the axim-rest-framework (Spring Boot + MyBatis). Covers @XEntity, @XRepository, IXRepository, query derivation, save/modify/upsert, XPagination, XPage, error codes, i18n exceptions, and declarative REST client.
@tank/bdd-issue-fixer
by tankpkg
Resolve GitHub issues using BDD — read the issue, write a behavioral test, confirm it fails (RED), fix the code, confirm it passes (GREEN), open a PR with test + fix as proof. Covers issue triage (bug vs feature vs invalid vs duplicate), issue-to-Gherkin translation, the relentless RED-GREEN fix cycle, fix verification, PR submission with evidence, and related issue detection. Synthesizes Smart/Molak (BDD in Action), Beck (TDD By Example), Nicieja (Writing Great Specifications), SWE-bench (Princeton NLP), and Sweep.dev patterns. Trigger phrases: "fix this issue", "resolve issue", "fix GitHub issue", "BDD fix", "issue to test", "write test for issue", "red green fix", "triage issue", "duplicate issue", "related issues", "fix and PR", "issue fixer", "auto-fix issue", "resolve bug report"
daily-news
by qiaoshouqing
"Generate daily design inspiration & novel things report. Use when user asks for 'design news', 'design daily', 'design inspiration', '设计日报', '设计灵感', 'デザインニュース', 'what's new in design', 'novel products', '新奇事物'. Aggregates from Dribbble, Awwwards, Product Hunt, Behance, design influencers on Twitter, and more."
youtube-transcript
by range3
Fetch subtitles/transcripts from YouTube videos and use them as context for summarization, analysis, translation, or Q&A. Use this skill whenever a user shares a YouTube URL and asks to summarize, explain, or discuss the video content, or when they explicitly ask for subtitles or a transcript. Trigger on any youtube.com, youtu.be, or YouTube Shorts link that appears in conversation where understanding the video content is needed.
documentation
by developerinlondon
Documentation standards: ASCII box-drawing diagrams (not Mermaid), structured plan format, compact tables for comparisons. Use when writing docs, plans, READMEs, or architecture documents in any project.
mise
by mritd
"Install missing language runtimes and dev tools via mise. Use when (1) a command fails due to missing runtime (e.g. node not found, python3 not found, go command not found), (2) user asks to install/setup a language runtime or SDK (node, python, go, rust, java, ruby, etc.), (3) user mentions version management for languages, or (4) setting up a new development environment."
schema-architect
by Await-d
"Design database table schemas from any relationship description, including full index strategy analysis. Use this skill whenever the user wants to figure out how to structure a database — regardless of how they phrase it. Trigger on: (1) natural language describing entities and how they relate ('users can place multiple orders', '一个用户可以有多个订单'), (2) questions like 'what tables do I need for X' or '怎么建表' or '表结构怎么设计', (3) TypeScript/Go/Python interfaces or API JSON responses to reverse-engineer a schema from, (4) mermaid/PlantUML ER diagrams to turn into table definitions, (5) any mention of '数据库设计', '建表', '表结构', 'schema design', 'data model', 'ER diagram', (6) system descriptions with entities like users/orders/products/roles that need to be stored, (7) requirements docs or feature specs implying data persistence needs, (8) any mention of query performance, index design, or '索引' alongside schema design. Also trigger on vague phrasing: 'how do I store this?', 'how should I design this?', '帮我设计数据库', '怎么设计这个系统的表'. Do NOT trigger for: writing SQL queries against an existing schema, adding columns to existing tables, database migration scripts, choosing between databases (MySQL vs PostgreSQL), explaining SQL concepts, Redis/cache key design, GraphQL schema (unless also wanting SQL tables), or Prisma schema conversion to SQL (that's a mechanical translation, not a design task)."
moai-alfred-expertise-detection
by AJBcoding
Enterprise AI-powered user expertise detection with behavioral analysis, communication pattern recognition, code complexity assessment, Context7 integration, and adaptive response calibration; activates for personalized guidance generation, complexity adjustment, tutorial depth selection, and communication style matching
Shopify i18n Basics
by sarojpunde
Internationalization fundamentals for multi-language Shopify themes
analyze-size
by otrebu
Analyze codebase size and language distribution using cloc. Use when user wants to understand codebase scale, primary languages, code composition, or assess project complexity. Provides total LOC, size category, language breakdown percentages, and key insights.
language-fundamentals-skill
by pluginagentmarketplace
Master programming languages from Python to Rust. Learn core concepts like variables, OOP, functional programming, algorithms, data structures, and competitive programming techniques. Use when exploring programming languages, learning CS fundamentals, or preparing for technical interviews.
book-translation-guide
by madeyexz
Workflow for translating entire books using AI agents. Split markdown books into chapters, batch translate 5 at a time, and verify completeness. Works with any language pair.
brand-alignment
by peterbamuhigire
Ensures every website element — layout, messaging, navigation, imagery, CTAs — reflects the client's brand identity and speaks clearly to their ideal customer. Use before and during page building to validate that the site feels intentional, cohesive, and trustworthy.