-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (24 loc) · 1.1 KB
/
Makefile
File metadata and controls
35 lines (24 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Agentic-Oriented-Development-Kit - Common Commands
.PHONY: help init check update spec plan tasks analyze review-spec review-plan
help: ## Show this help message
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'
init: ## Initialize project (first-time setup)
@./scripts/init.sh
check: ## Verify setup and prerequisites
@./scripts/check.sh
update: ## Apply upstream template updates (PLSK → user); pass flags via ARGS='...'
@./scripts/update.sh $(ARGS)
# Triad Workflow shortcuts
spec: ## Run /triad.specify
@echo "Use /triad.specify in Claude Code"
plan: ## Run /triad.plan
@echo "Use /triad.plan in Claude Code"
tasks: ## Run /triad.tasks
@echo "Use /triad.tasks in Claude Code"
analyze: ## Run /triad.analyze
@echo "Use /triad.analyze in Claude Code"
# Governance shortcuts
review-spec: ## Review spec.md with PM
@echo "Use product-manager agent or /triad.specify for auto-review"
review-plan: ## Review plan.md with PM + Architect
@echo "Use product-manager + architect agents or /triad.plan for auto-review"