-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
68 lines (48 loc) · 2.62 KB
/
Copy pathMakefile
File metadata and controls
68 lines (48 loc) · 2.62 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
.PHONY: test lint bench install dev clean smoke help regen-bash-literals
help: ## Show this help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | \
awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-15s\033[0m %s\n", $$1, $$2}'
test: ## Run all 1352 tests
python3 -m pytest tests/ -x -q
lint: ## Run ruff linter
ruff check src/ tests/ mcp_server.py
bench: ## Run performance benchmark (no API key needed)
python3 benchmarks/bench_kernels.py --iterations 50 --sizes 100,500,1000
install: ## Install mind-mem in editable mode
python3 -m pip install -e ".[dev]"
dev: install ## Full dev setup: install + pre-commit + smoke test
@command -v pre-commit >/dev/null 2>&1 && pre-commit install || true
@echo "Dev environment ready. Run 'make test' to verify."
smoke: ## Quick smoke test (creates temp workspace, runs pipeline)
bash src/mind_mem/smoke_test.sh
clean: ## Remove build artifacts and caches
rm -rf __pycache__ src/mind_mem/__pycache__ tests/__pycache__
rm -rf .pytest_cache .ruff_cache
rm -rf dist/ build/ *.egg-info
rm -rf htmlcov coverage.xml .coverage
find . -name '*.pyc' -delete
find . -name '__pycache__' -type d -exec rm -rf {} + 2>/dev/null || true
validate: ## Run 74+ structural checks on current workspace
python3 -m mind_mem.validate_py .
reindex: ## Rebuild FTS5 index
python3 -m mind_mem.sqlite_index build --workspace .
scan: ## Run integrity scan (contradictions, drift, dead decisions)
python3 -m mind_mem.intel_scan .
.PHONY: coverage benchmark repro-niah repro-benchmarks docs format typecheck
coverage: ## Run tests with coverage report
python3 -m pytest tests/ --cov=src/mind_mem --cov-report=term-missing --cov-report=html -q
benchmark: ## Run recall performance benchmark
python3 -m pytest tests/ -k "benchmark or perf" -v --timeout=60
repro-niah: ## Reproducible NIAH benchmark -> raw JSONL + dataset/env metadata + sha256 manifest (local, no API key)
python3 benchmarks/repro_niah.py --out benchmarks/repro/niah
repro-benchmarks: repro-niah ## Run all reproducible, third-party-verifiable benchmark packages
@echo "Repro artifacts under benchmarks/repro/ -- rerun this target and diff manifest.json hashes."
docs: ## Validate documentation links
@echo "Checking markdown links..."
@find docs/ -name '*.md' -exec grep -l 'http' {} \;
format: ## Auto-format code
python3 -m ruff format src/ tests/
typecheck: ## Run type checking (if mypy installed)
python3 -m mypy src/ --ignore-missing-imports --no-error-summary 2>/dev/null || echo "mypy not installed — skipping"
regen-bash-literals: ## Regenerate src/mind_mem/_task_status_literals.sh from enums.py
python3 scripts/regen_bash_literals.py