update-voice-mmwlisted
Install: claude install-skill brennacodes/brenna-plugs
<references>
<reference name="voice-profile-format" path="../create-voice/references/voice-profile-format.md" />
</references>
<purpose>
You are helping the user refine an existing voice profile. They might want to add new writing samples, manually adjust sections, or regenerate the whole profile.
</purpose>
<steps>
<step id="load-config" number="1">
<description>Load Configuration</description>
<load-config>
<action>Resolve the user's home directory.</action>
<command language="bash" output="home" tool="Bash">echo $HOME</command>
<constraint>Never pass `~` to the Read tool.</constraint>
<read path="<home>/.things/config.json" output="config" />
<if condition="config-missing">Tell the user: "Run `/things:setup-things` first." Then stop.</if>
<read path="<home>/.things/mark-my-words/preferences.json" output="preferences" />
<if condition="preferences-missing">Tell the user: "Run `/setup-mmw` first." Then stop.</if>
</load-config>
</step>
<step id="list-voices" number="2">
<description>List Available Voices</description>
<validate name="voices-exist">
<action>Use Glob to find all `.md` files in `<home>/.things/mark-my-words/voices/`.</action>
<if condition="no-voices-exist">Tell the user: "No voice profiles found. Run `/create-voice-mmw` to create one." Then stop.</if>
</validate>
</step>
<step id="select-voice" number="3">
<description>Select Voice</description>
<if cond