Gestion des profils vocaux

VérifiéSûr

Gère les profils de voix sauvegardés pour un style d'écriture cohérent. Permet de lister, appliquer ou supprimer des voix enregistrées, utiles pour maintenir un ton ou un style spécifique dans l'écriture.

Spar Skills Guide Bot
ContenuDébutant
7002/06/2026
Claude Code
#voice-profiles#writing-style#consistency#wordsmith#editing

Recommandé pour

Notre avis

Gérer des profils de voix sauvegardés pour appliquer un style d'écriture cohérent sur différents textes.

Points forts

  • Permet de lister, appliquer et supprimer facilement des profils vocaux
  • Prend en charge la création de profils personnalisés à partir d'échantillons de texte
  • S'intègre avec l'outil d'écriture Wordsmith pour une application transparente

Limites

  • Nécessite l'outil Wordsmith pour l'application
  • Les profils doivent être créés manuellement ou extraits à partir d'échantillons
  • Limité aux contextes d'édition de texte
Quand l'utiliser

Utilisez cette compétence lorsque vous devez maintenir un ton d'écriture cohérent dans plusieurs documents ou projets.

Quand l'éviter

Ne l'utilisez pas pour des modifications ponctuelles ou lorsque la cohérence stylistique n'est pas requise.

Analyse de sécurité

Sûr
Score qualité85/100

The skill only uses the Read tool to access voice profiles in ~/.claude/voices/; no destructive, exfiltrating, or obfuscated actions are possible.

Aucun point d'attention détecté

Exemples

List all voice profiles
List all saved voice profiles.
Apply a voice to text
Edit this paragraph using the hemingway voice profile.
Delete a voice profile
Delete the voice profile named technical-docs.

name: voices description: List, apply, or delete saved voice profiles. Use when user wants to see available voices or apply a saved voice to writing. model: haiku allowed-tools: Read

Voice Library

Manage saved voice profiles for consistent writing style.

Commands

| Command | Action | |---------|--------| | /wordsmith:voices | List all saved voice profiles | | /wordsmith:voices [name] | Show details for specific voice | | /wordsmith:voices delete [name] | Remove a voice profile |

Voice Storage

Voices are stored in ~/.claude/voices/ as JSON files:

~/.claude/voices/
├── hemingway.json
├── technical-docs.json
└── brand-voice.json

Voice Profile Schema

{
  "name": "profile-name",
  "description": "Brief description of when to use",
  "extractedFrom": "Source material used for extraction",
  "characteristics": {
    "sentenceLength": "short/medium/long/varied",
    "vocabulary": "simple/technical/elevated/mixed",
    "tone": "formal/casual/authoritative/warm",
    "structure": "linear/nested/fragmented"
  },
  "patterns": [
    "Pattern 1 observed in source",
    "Pattern 2 observed in source"
  ],
  "avoids": [
    "Things this voice never does"
  ],
  "exampleTransform": {
    "before": "Generic sentence",
    "after": "Same idea in this voice"
  }
}

Workflow

List All Voices

  1. Read all files in ~/.claude/voices/
  2. Display as table: Name | Description | Source

Apply Voice

Use with /wordsmith:writing by specifying voice name:

  • "edit this using hemingway voice"
  • "write in brand-voice style"

Create New Voice

Use /wordsmith:writing with sample text:

  • "extract voice from this writing sample"

The writing skill handles extraction and saves to ~/.claude/voices/.

Skills similaires