Makefile 467 B

12345678910111213141516
  1. .PHONY: help install link doctor update
  2. help: ## Show available commands
  3. @grep -E '^[a-zA-Z_-]+:.*##' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*## "}; {printf " make %-12s %s\n", $$1, $$2}'
  4. install: link ## Full install: symlinks + prerequisites + plugins
  5. bash install-plugins.sh
  6. link: ## Create symlinks into ~/.claude/
  7. bash link.sh
  8. doctor: ## Run setup diagnostic
  9. bash doctor.sh
  10. update: ## Update config, submodules, plugins, and verify
  11. bash update-all.sh