This commit is contained in:
2026-06-12 08:15:19 +02:00
parent 7d12415ea5
commit 3c0f770f1b
12 changed files with 220 additions and 23 deletions
+9 -1
View File
@@ -137,13 +137,15 @@ validate:
# make audit-agent CHECK=1 # report only
# make agents-all # run the whole fleet
# make maestro # talk to the conductor; it runs the rest
# make maintenance # whole fleet, concurrent read-only, only git-changed files
# make maintenance-fix # whole fleet, fix mode, only git-changed files
# ---------------------------------------------------------------------------
CHECK ?=
AGENT_MODE := $(if $(CHECK),--check,--fix)
.PHONY: security-agent audit-agent devii-agent docs-agent fanout-agent \
dry-agent style-agent frontend-agent seo-agent test-agent \
agents-all maestro
agents-all maestro maintenance maintenance-fix
security-agent:
python -m agents.security $(AGENT_MODE)
@@ -180,3 +182,9 @@ agents-all:
maestro:
python -m agents.maestro
maintenance:
python -m agents.orchestrator --check --changed
maintenance-fix:
python -m agents.orchestrator --fix --changed