This repository has been archived on 2026-07-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
info-tech-canon/Makefile

20 lines
320 B
Makefile

PYTHON ?= python3
CANON_CLI = PYTHONPATH=src $(PYTHON) -m info_tech_canon
.PHONY: validate index tree agent-briefs test
validate:
$(CANON_CLI) validate --write infospace/validation/latest.json
index:
$(CANON_CLI) index
tree:
$(CANON_CLI) tree
agent-briefs:
$(CANON_CLI) agent-briefs
test:
$(PYTHON) -m pytest