ln-015-hex-line-uninstaller

Solid

Removes hex-line hooks, output style, and cached files from the system. Use when hex-line MCP needs to be fully uninstalled.

AI & Automation 488 stars 70 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 94/100

Stars 20%
90
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

> **Paths:** File paths are relative to skills repo root. Locate this SKILL.md directory and go up one level for repo root. # Hex-Line Uninstaller **Type:** L3 Worker **Category:** 0XX Shared Removes all hex-line artifacts from the system. Standalone — no coordinator dependency. --- ## What It Removes | Artifact | Location | Action | |----------|----------|--------| | Hook script | `~/.claude/hex-line/hook.mjs` | Delete file | | Hook entries | `~/.claude/settings.json` → `hooks` | Remove entries matching "hex-line" signature | | Output style file | `~/.claude/output-styles/hex-line.md` | Delete file | | Output style setting | `~/.claude/settings.json` → `outputStyle` | Clear only if value is `"hex-line"` | | Hook directory | `~/.claude/hex-line/` | Delete if empty after hook removal | --- ## Steps ### 1. Remove hook entries from settings.json ``` Read ~/.claude/settings.json For each event in hooks (SessionStart, PreToolUse, PostToolUse): Find entry where hooks[].command contains "hex-line" Remove that entry If event array is empty, delete the key If hooks object is empty, delete it Write back ``` ### 2. Clear output style ``` If settings.json.outputStyle === "hex-line": Delete the outputStyle key Write back ``` ### 3. Delete installed files ```bash rm -f ~/.claude/hex-line/hook.mjs rmdir ~/.claude/hex-line 2>/dev/null # only if empty rm -f ~/.claude/output-styles/hex-line.md ``` ### 4. Verify ```bash # Confirm no hex-line references remain grep -r...

Details

Author
levnikolaevich
Repository
levnikolaevich/claude-code-skills
Created
7 months ago
Last Updated
yesterday
Language
JavaScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category