skills/hud-uninstall/SKILL.md
MST HUD statusline 래퍼를 제거하고 백업된 원래 statusLine.command를 복원합니다. 사용자가 'HUD 제거', 'statusline 복원', '/mst:hud-uninstall'을 호출할 때 사용.
npx skillsauth add myrtlepn/gran-maestro hud-uninstallInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
MST HUD 래퍼를 해제하고 원래 Claude HUD status line 명령을 복원합니다.
경로 준비
SETTINGS_PATH=~/.claude/settings.jsonBACKUP_PATH=~/.claude/mst-statusline-backup.json백업 확인
BACKUP_PATH가 없으면 아래 메시지를 출력하고 종료:
백업 파일이 없어 원래 statusLine.command를 복원할 수 없습니다. (~/.claude/mst-statusline-backup.json)백업에서 원래 statusLine.command 복원
backup.statusLine.command 문자열을 읽는다.~/.claude/settings.json의 statusLine을 아래로 교체:
type: "command"command: {backup.statusLine.command}완료 메시지 출력
MST HUD 제거 완료statusLine.command가 백업값으로 복원되었습니다python3 - <<'PY'
import json
import os
import sys
settings_path = os.path.expanduser("~/.claude/settings.json")
backup_path = os.path.expanduser("~/.claude/mst-statusline-backup.json")
if not os.path.exists(backup_path):
print("백업 파일이 없어 원래 statusLine.command를 복원할 수 없습니다. (~/.claude/mst-statusline-backup.json)")
sys.exit(0)
try:
with open(backup_path, "r", encoding="utf-8") as f:
backup = json.load(f)
except Exception:
print("백업 파일 파싱 실패: ~/.claude/mst-statusline-backup.json")
sys.exit(1)
status_line_backup = backup.get("statusLine") if isinstance(backup, dict) else None
command = status_line_backup.get("command") if isinstance(status_line_backup, dict) else None
if not isinstance(command, str) or not command.strip():
print("백업 파일에 statusLine.command가 없습니다.")
sys.exit(1)
try:
with open(settings_path, "r", encoding="utf-8") as f:
settings = json.load(f)
except (FileNotFoundError, json.JSONDecodeError):
settings = {}
if not isinstance(settings, dict):
settings = {}
settings["statusLine"] = {"type": "command", "command": command}
tmp_settings = settings_path + ".tmp"
with open(tmp_settings, "w", encoding="utf-8") as f:
json.dump(settings, f, indent=2, ensure_ascii=False)
f.write("\n")
os.replace(tmp_settings, settings_path)
print("MST HUD 제거 완료")
print("statusLine.command가 백업값으로 복원되었습니다")
PY
tools
Internal shared include material for Gran Maestro skills. This is not a user-invocable workflow.
development
화면 설계, 컴포넌트 구조, 인터랙션 흐름, 디자인 시스템을 설계하는 Design Wing 템플릿 스킬. PM Conductor가 변수를 치환하여 /mst:codex로 실행.
development
Stitch SDK를 사용해 UI 화면을 설계합니다. 명시적 디자인 요청, 새 화면 추가, 전체 디자인 변경 시 사용.
tools
Codex CLI 프로젝트에 oh-my-codex(OMX)를 설치·초기화·gitignore 등록·AGENTS.md 주입하는 4단계 자동화를 수행합니다. 사용자가 'OMX 설치', 'oh-my-codex 설정', '/mst:setup-omx'를 호출할 때 사용.