From skyglide
This skill removes the Skyglide profile from CLAUDE.md. Use when the user wants to uninstall, remove, or delete their Skyglide profile or reset Skyglide.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skyglide:uninstallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill removes the Skyglide personalisation profile from CLAUDE.md. Uninstalling the Skyglide plugin from Cowork does NOT automatically clean up the profile embedded in CLAUDE.md, so this skill handles that.
This skill removes the Skyglide personalisation profile from CLAUDE.md. Uninstalling the Skyglide plugin from Cowork does NOT automatically clean up the profile embedded in CLAUDE.md, so this skill handles that.
CLAUDE_DIR=$(find /sessions/*/mnt/.claude -maxdepth 0 -type d 2>/dev/null | head -1)
echo "Found: $CLAUDE_DIR"
Check if a Skyglide block exists:
grep -c "SKYGLIDE:START" $CLAUDE_DIR/CLAUDE.md 2>/dev/null || echo "0"
Before removing, confirm:
Are you sure you want to remove your Skyglide profile? This will stop personalisation in all future Cowork sessions. You can always set it up again later by saying "set up Skyglide".
Wait for confirmation before proceeding.
Remove everything between (and including) the <!-- SKYGLIDE:START --> and <!-- SKYGLIDE:END --> markers:
sed -i '/<!-- SKYGLIDE:START -->/,/<!-- SKYGLIDE:END -->/d' $CLAUDE_DIR/CLAUDE.md
Verify it's gone:
grep -c "SKYGLIDE:START" $CLAUDE_DIR/CLAUDE.md 2>/dev/null && echo "ERROR: Block still present" || echo "Clean"
Also clean up any leftover personal skill (may or may not exist):
rm -rf $CLAUDE_DIR/skills/skyglide-profile 2>/dev/null
Tell the user:
Skyglide profile removed. ✅
Personalisation will stop in new Cowork sessions after you restart Claude Desktop.
If you also set up a Custom Style in Claude.ai, you'll need to remove that manually: go to claude.ai → Style selector → Create & Edit Styles → find your Skyglide style → Delete.
You can set Skyglide up again any time by saying "set up Skyglide".
npx claudepluginhub deejrushton/skyglide-cowork-plugin --plugin skyglideGuides creating and optimizing Claude Code Skills with activation patterns, frontmatter structure, hooks, workflows, and best practices. Use for new skills, memory conversions, activation debugging.
Claude Code extensibility and configuration reference: plugins, hooks, skills, subagents, MCP servers, output styles, memory, settings, and model configuration. Invoke whenever Claude Code itself is the subject — questions, configuration, building extensions, debugging, or understanding internals.
Guides developers in creating Claude Code plugin skills: frontmatter metadata, Markdown instructions, bundled scripts/references/assets, and best practices.