Wozcode-plugin woz-settings
Manage WOZCODE plugin settings - toggle attribution, status line, spinner verbs.
install
source · Clone the upstream repo
git clone https://github.com/WithWoz/wozcode-plugin
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/WithWoz/wozcode-plugin "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/woz-settings" ~/.claude/skills/withwoz-wozcode-plugin-woz-settings && rm -rf "$T"
manifest:
skills/woz-settings/SKILL.mdsource content
WOZCODE Settings
Manage WOZCODE plugin settings stored in
~/.claude/settings.json under the wozcode key.
TRIGGER when: user says "woz settings", "woz config", "configure woz", "toggle attribution", "turn off status line", "disable co-authored-by", or similar.
Usage
Run the settings helper to show or update settings:
Show current settings
node ${CLAUDE_PLUGIN_ROOT}/scripts/settings-helper.js --show
Display the JSON output as a readable table for the user.
Update a setting
node ${CLAUDE_PLUGIN_ROOT}/scripts/settings-helper.js --set <key> <value>
Where
<key> is a setting name and <value> is true or false.
Available settings:
| Key | Default | Description |
|---|---|---|
| | Co-Authored-By on commits + PR badge |
| | Master toggle for the WOZCODE status line |
| | Show session savings in status line |
| | Show lifetime savings in status line |
| | Show quick tips in status line |
| | WOZ-themed spinner verbs |
Examples:
# Disable attribution node ${CLAUDE_PLUGIN_ROOT}/scripts/settings-helper.js --set attribution false # Turn off status line tips node ${CLAUDE_PLUGIN_ROOT}/scripts/settings-helper.js --set statusLineTips false # Disable spinner verbs node ${CLAUDE_PLUGIN_ROOT}/scripts/settings-helper.js --set spinnerVerbs false
After updating settings, tell the user:
- All changes take effect immediately
- For
,statusLine
, andattribution
: also tell them to runspinnerVerbs
so Claude Code picks up the change in the current session/reload-plugins