aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 087e734..f269298 100644
--- a/Makefile
+++ b/Makefile
@@ -401,6 +401,12 @@ lint: ## Validate ruleset structure (headings, Applies-to, shebangs, exec bits)
doctor: ## Verify ~/.claude/ live state matches repo + settings.json (drift detector)
@bash scripts/doctor.sh
+audit: ## Verify project .ai/ dirs against canonical ([APPLY=1] [FORCE=1] [NO_DOCTOR=1])
+ @bash scripts/audit.sh \
+ $(if $(APPLY),--apply) \
+ $(if $(FORCE),--force) \
+ $(if $(NO_DOCTOR),--no-doctor)
+
test: ## Run the .ai/scripts/ test suites (pytest + ERT)
@cd .ai/scripts/tests && python3 -m pytest
@set -e; for f in .ai/scripts/tests/test-*.el; do \