From channel-setup
Reset a channel's configuration with automatic backup. Use when starting over with a channel setup. Triggers: "reset channel", "start over", "clear config", "reset discord", "reset telegram".
How this skill is triggered — by the user, by Claude, or both
Slash command
/channel-setup:resetThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Reset a channel's configuration. Automatically backs up before deleting.
Reset a channel's configuration. Automatically backs up before deleting.
ls -d ~/.claude/channels/discord* ~/.claude/channels/telegram*
If nothing found: "No channels configured. Nothing to reset."
Show the list and ask which channel/profile to reset (e.g. "discord", "discord-frontend").
Read and display the contents that will be deleted:
.env — bot tokenaccess.json — DM policy, groups, allowed users, pending pairsapproved/ directory — pairing approval filesShow a summary:
Will reset: ~/.claude/channels/discord-frontend/
- .env (bot token)
- access.json (2 groups, 1 allowed user, pairing mode)
- approved/ (0 files)
Ask the user to confirm: "Reset this channel? A backup will be created first."
If they decline: "Cancelled. No changes made."
mkdir -p ~/.claude/channels/<channel>/backup-$(date +%Y%m%d-%H%M%S)
cp ~/.claude/channels/<channel>/.env ~/.claude/channels/<channel>/backup-<timestamp>/
cp ~/.claude/channels/<channel>/access.json ~/.claude/channels/<channel>/backup-<timestamp>/
Tell the user: "Backup saved to ~/.claude/channels//backup-/"
rm -f ~/.claude/channels/<channel>/.env
rm -f ~/.claude/channels/<channel>/access.json
rm -rf ~/.claude/channels/<channel>/approved/
"✅ Channel reset complete." "Backup at: ~/.claude/channels//backup-/" "To reconfigure, run
/channel-setup:setup"
npx claudepluginhub girofu/claude-channel-plugins --plugin channel-setupCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.