Generate root Makefile that delegates to Makefile.local and Makefile.deploy with self-documenting help.
Generates a root Makefile that delegates to specialized local and deployment files with self-documenting help.
npx claudepluginhub jugrajsingh/skillgardenThis skill is limited to using the following tools:
Create a root Makefile that serves as the project entrypoint, delegating to Makefile.local (dev) and Makefile.deploy (ops).
make help shows everythingbasename $(pwd)
Glob: Makefile, Makefile.local, Makefile.deploy
If Makefile exists, ask via AskUserQuestion:
# =============================================================================
# Makefile - {PROJECT_NAME}
# =============================================================================
.DEFAULT_GOAL := help
.PHONY: help install test lint format clean run
# =============================================================================
# Help
# =============================================================================
help: ## Show available targets
@echo ""
@echo "╔══════════════════════════════════════════════╗"
@echo "║ {PROJECT_NAME} ║"
@echo "╠══════════════════════════════════════════════╣"
@echo "║ Development: make -f Makefile.local help ║"
@echo "║ Deployment: make -f Makefile.deploy help ║"
@echo "╚══════════════════════════════════════════════╝"
@echo ""
@grep -E '^[a-zA-Z_-]+:.*?## ' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
# =============================================================================
# Development (delegates to Makefile.local)
# =============================================================================
install: ## Install all dependencies
$(MAKE) -f Makefile.local install-dev
test: ## Run tests
$(MAKE) -f Makefile.local test
lint: ## Run linter
$(MAKE) -f Makefile.local lint
format: ## Format code
$(MAKE) -f Makefile.local format
clean: ## Remove build artifacts
$(MAKE) -f Makefile.local clean
# =============================================================================
# Quick Run (project-specific)
# =============================================================================
run: ## Run the application
$(MAKE) -f Makefile.local run
# =============================================================================
# Deployment (delegates to Makefile.deploy)
# =============================================================================
build: ## Build Docker image
$(MAKE) -f Makefile.deploy build-image
push: ## Push image to registry
$(MAKE) -f Makefile.deploy push-image
deploy: ## Deploy to Kubernetes
$(MAKE) -f Makefile.deploy deploy
ship: build push deploy ## Full CI/CD: build, push, deploy
Created root Makefile:
Delegates to:
Makefile.local - Development targets
Makefile.deploy - Deployment targets
Quick targets:
make install -> make -f Makefile.local install-dev
make test -> make -f Makefile.local test
make lint -> make -f Makefile.local lint
make build -> make -f Makefile.deploy build-image
make deploy -> make -f Makefile.deploy deploy
make ship -> build + push + deploy
Usage:
make help # Show all targets
make # Same as make help
Users should add project-specific targets to the "Quick Run" section:
run-api: ## Run API server
$(MAKE) -f Makefile.local run-api
run-worker: ## Run background worker
$(MAKE) -f Makefile.local run-worker
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.