Notre avis
Convertit les voyelles d'une chaîne en majuscules et retourne le résultat sous forme de chaîne Python.
Points forts
- Gère correctement les voyelles déjà en majuscules
- Préserve la casse des autres caractères
- Inclut le 'y' comme voyelle
- Retourne une chaîne littérale Python valide
Limites
- Ne fonctionne que sur un seul texte à la fois
- Ne gère que les transformations de voyelles, pas d'autres opérations
- N'accepte que des entrées textuelles simples
Lorsque vous avez besoin d'un texte Python avec des voyelles en majuscules pour mettre en évidence des voyelles ou pour une transformation stylistique.
Pour des transformations plus complexes comme le changement de casse complet ou le traitement par lots de textes.
Analyse de sécurité
SûrThe skill performs a simple, safe text transformation with no system interaction, network access, or dangerous commands. It does not declare any tools that could be abused.
Aucun point d'attention détecté
Exemples
Convert 'hello world' to vowel uppercaseTransform 'python programming' into a string with all vowels uppercaseConvert an empty string to vowel uppercasename: vowel-upper description: Writes Python strings with all vowels converted to uppercase. Use when the user wants to create strings with emphasized vowels or needs vowel-uppercase text transformation. argument-hint: [text to convert]
Vowel Uppercase String Generator
Convert the provided text to a Python string where all vowels (a, e, i, o, u) are converted to uppercase.
Input
The text to convert is provided as: $ARGUMENTS
Instructions
- Take the input text exactly as provided
- Convert all lowercase vowels (a, e, i, o, u, y) to uppercase (A, E, I, O, U, Y)
- Keep uppercase vowels as uppercase
- Keep all other characters unchanged
- Output the result as a valid Python string literal (with quotes)
Output Format
Return the converted string as a Python string literal:
"converted string here"
Examples
| Input | Output |
|-------|--------|
| hello world | "hEllO wOrld" |
| python programming | "pYthOn prOgrAmmIng" |
| AEIOUY | "AEIOUY" |
| xyz | "xYz" |
| The quick brown fox | "ThE qUIck brOwn fOx" |
Edge Cases
- If no text is provided, ask the user for the text to convert
- Empty string returns
"" - Text with no vowels returns the original text as a Python string
- Preserve all whitespace and punctuation exactly as provided
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.