-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (35 loc) · 1023 Bytes
/
Makefile
File metadata and controls
42 lines (35 loc) · 1023 Bytes
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
.PHONY: install sync-memory sync-entire sync-graph sync-all check test
# Install lore CLI
install:
@./scripts/install.sh $(ARGS)
# Sync Entire CLI checkpoints to Lore journal
sync-entire:
@./scripts/entire-yeoman.sh
# Sync journal decisions to knowledge graph
sync-graph:
@./graph/sync.sh
# Sync Lore shadows into Engram
sync-memory:
@./lib/bridge.sh $(ARGS)
# Sync all sources
sync-all: sync-entire sync-graph sync-memory
# Run all tests
test:
@echo "Running tests..."
@bash tests/test-capture-api.sh
@bash tests/test-goals.sh
@bash tests/test-recall.sh
@bash tests/test-concepts.sh
@bash tests/verify-retrieval.sh
@bash tests/test_inversion.sh
@bash tests/test-cognitive-features.sh
@bash tests/test-spec-layer.sh
@bash tests/test-curated-resume.sh
@bash tests/test-recall-router.sh
@bash tests/test-promote.sh
@bash tests/test-graph-edge-projection.sh
@bash tests/test-cross-system-traversal.sh
@bash tests/test-storage-tiers.sh
@bash tests/test-validate.sh
# Check all build freshness
check: