Update Makefile and add uninstall script

This commit is contained in:
kazuki
2025-11-09 14:41:29 +09:00
parent bea4bfe289
commit 10844490e2
2 changed files with 128 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: install test test-plugin doctor verify clean lint format build-plugin sync-plugin-repo help
.PHONY: install test test-plugin doctor verify clean lint format build-plugin sync-plugin-repo uninstall-legacy help
# Installation (local source, editable) - RECOMMENDED
install:
@@ -126,5 +126,13 @@ help:
@echo ""
@echo "📚 Documentation:"
@echo " make translate - Translate README to Chinese and Japanese"
@echo " make help - Show this help message"
@echo ""
@echo "🧹 Cleanup:"
@echo " make uninstall-legacy - Remove old SuperClaude files from ~/.claude"
@echo " make help - Show this help message"
# Remove legacy SuperClaude files from ~/.claude directory
uninstall-legacy:
@echo "🧹 Cleaning up legacy SuperClaude files..."
@bash scripts/uninstall_legacy.sh
@echo ""