From bf13f6c757353909507cc0bd6cb767c5c764217a Mon Sep 17 00:00:00 2001 From: Ty Date: Mon, 27 Jul 2026 16:06:25 +0000 Subject: [PATCH] chore: stub Makefile until build --- Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..64c2477 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +# Salon_Assistant / Lumina — operator entrypoints (STUB until build) +# Approved structure: document targets only; do not invoke unimplemented scripts. + +.PHONY: help bootstrap install upgrade doctor verify sync-design + +help: + @echo "Salon_Assistant (Lumina) — structure phase (0.1.0-design)" + @echo " Implementation not started. Explicit build/implement required." + @echo "" + @echo "Intended targets (after build):" + @echo " make bootstrap - host prereqs (Docker if missing)" + @echo " make install - full install S0b–S6" + @echo " make upgrade - product upgrade" + @echo " make doctor - health checks" + @echo " make verify - lint + tests + smoke (fixtures)" + @echo " make sync-design - list design pack paths" + +bootstrap install upgrade doctor verify: + @echo "not implemented — wait for explicit build/implement order" >&2; exit 1 + +sync-design: + @echo "Design SSOT:" + @ls -la design/DESIGN_PLAN.md design/use-cases.md design/scenarios.md design/DECISIONS.md