What problem does it solve? Codebases often duplicate string logic: a slug written by a form must match the slug a background job derives, labels read "1 comments", and excerpts cut text mid-emoji. This Skill documents the @sdxc/strings package, which centralizes these transformations in one dependency-free implementation. ## Core Features & Use Cases - English Inflection: pluralize, singularize, camelize, underscore, dasherize, humanize, and ordinalize for deriving identifiers and labels from class or field names. - Headline Casing & Slugs: Chicago-style titleize that keeps words like GraphQL and iOS intact, plus slugify for stable kebab-case URL identifiers. - Grapheme-Safe Text Measurement: truncate, excerpt, wordCount, initials, and capitalize built on Intl.Segmenter, so emoji and scripts without spaces are handled correctly. - Use Case: A form accepts a title like "Cómo usar Remix v3" and a background job must derive the identical slug como-usar-remix-v3 so the published URL never moves. ## Quick Start Ask the agent to add the @sdxc/strings workspace dependency and use its slugify, titleize, or excerpt functions to generate a slug, headline, or summary from your text.