Notre avis
Ajoute une nouvelle entrée de compétence dans le tableau `skills` du composant React SkillsSection.
Points forts
- Suit un modèle cohérent et facile à reproduire.
- Utilise JSX et des classes CSS pour un rendu professionnel.
- Permet d'étendre une liste de compétences existante sans casser le code.
Limites
- Ne fonctionne que pour ce composant spécifique.
- Nécessite une compréhension de base de JSX et des fragments.
- Le formatage du nom de la compétence est imposé.
Lorsque vous devez ajouter une nouvelle compétence à une section de compétences React existante.
Si vous utilisez une structure de données différente ou un framework non basé sur JSX.
Analyse de sécurité
SûrThe skill only modifies a local source file by adding a predefined code snippet; it does not involve network access, command execution, or dangerous operations. The use of $ARGUMENTS is for content insertion, not for arbitrary code execution.
Aucun point d'attention détecté
Exemples
Add a new skill entry for Python to the skills array in src/components/sections/SkillsSection.jsx. Follow the pattern: name: 'Python', description: (<>...with bold Python on first mention...</>).Insert a new skill entry for Docker into the SkillsSection component. Use the existing JSX fragment format and bold 'Docker' on first mention.Add a new skill entry to the skills array in src/components/sections/SkillsSection.jsx.
The skill to add: $ARGUMENTS
Follow the exact pattern used by existing entries:
{
name: "Skill Name",
description: (<>Description text with <span className="font-semibold dark:text-white">Skill Name</span> highlighted on first mention. Additional detail about experience and usage.</>)
}
Rules:
- Bold the skill name on first mention using
<span className="font-semibold dark:text-white">Skill Name</span> - Bold other technology names mentioned using the same span pattern
- Write 2-4 sentences in a first-person professional tone matching existing entries
- Use JSX fragment syntax (
<>...</>) for the description value - Add the new entry at the end of the
skillsarray, before the closing] - Do not modify any existing entries
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.