.PHONY: help install plugin link doctor update new-skill profile profile-list profile-current profile-reset help: ## Show available commands @grep -E '^[a-zA-Z_-]+:.*##' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*## "}; {printf " make %-14s %s\n", $$1, $$2}' install: ## First-time setup: install Claude Code + auth + symlinks + plugins bash install.sh plugin: ## Install prerequisites + all plugins bash install-plugins.sh link: ## Create/update symlinks into ~/.claude/ bash link.sh doctor: ## Run setup diagnostic bash doctor.sh update: ## Update Claude Code, config, submodules, plugins, and verify bash update-all.sh onboard: link ## Onboard an existing project (run from the project directory) @echo "Open Claude Code in your project directory and run: /onboard" @echo "Or with hints: /onboard Python FastAPI monorepo" profile: ## Run profile.sh (usage: make profile cmd="set design") @bash lib/profile.sh $(cmd) profile-list: ## List skill profiles (design, dev, qa, audit, minimal) @bash lib/profile.sh list profile-current: ## Detect which skill profile is currently active @bash lib/profile.sh current profile-reset: ## Re-enable all gstack skills (undo any profile set) @bash lib/profile.sh reset new-skill: ## Create a new skill scaffold (usage: make new-skill name=myskill) @test -n "$(name)" || (echo "Usage: make new-skill name=myskill" && exit 1) @mkdir -p agents skills/$(name) @if [ ! -f agents/$(name).md ]; then \ printf -- '---\nname: $(name)\ndescription: \ntools: Read, Grep, Glob, Bash\nmodel: sonnet\n---\n\n# $(name)\n\n## ROLE\n\n\n## TASKS\n- \n\n## RULES\n- \n\n## OUTPUT\n```\n\n```\n' > agents/$(name).md; \ echo "✅ Created agents/$(name).md"; \ else echo "⚠️ agents/$(name).md already exists"; fi @if [ ! -f skills/$(name)/SKILL.md ]; then \ printf -- '---\nname: $(name)\ndescription: \nargument-hint: \ndisable-model-invocation: true\nallowed-tools: Read, Grep, Glob, Bash\n---\n\nLoad and follow strictly:\n- .claude/agents/$(name).md\n\nExecute on:\n\n$$ARGUMENTS\n' > skills/$(name)/SKILL.md; \ echo "✅ Created skills/$(name)/SKILL.md"; \ else echo "⚠️ skills/$(name)/SKILL.md already exists"; fi @echo " Edit both files, then run: bash link.sh"