-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (24 loc) · 1.28 KB
/
Makefile
File metadata and controls
31 lines (24 loc) · 1.28 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
.PHONY: validate test scan-local-persistence validate-local-agents validate-local-agent-templates check-local-agent-drift validate-reasoning-cli
validate: test scan-local-persistence validate-local-agents validate-local-agent-templates check-local-agent-drift validate-reasoning-cli
@test -f README.md
@test -f AGENTS.md
@test -f .github/copilot-instructions.md
@test -f docs/DEVTOOLS_SCOPE.md
@test -f repo.maturity.yaml
@python3 scripts/validate_scaffold.py
test:
@python3 -m pip install --user jsonschema >/dev/null
@python3 -m unittest discover -s tests -v
scan-local-persistence:
@python3 scripts/scan_local_persistence.py . --fail-on none
validate-local-agents:
@python3 scripts/validate_local_agents.py .
validate-local-agent-templates:
@python3 scripts/validate_local_agent_templates.py .
check-local-agent-drift:
@python3 scripts/check_local_agent_registry_drift.py . --fail-on high
validate-reasoning-cli:
@python3 bin/sourceosctl reasoning validate tests/fixtures/reasoning/deterministic >/dev/null
@python3 bin/sourceosctl reasoning inspect tests/fixtures/reasoning/deterministic >/dev/null
@python3 bin/sourceosctl reasoning replay-plan tests/fixtures/reasoning/deterministic >/dev/null
@python3 bin/sourceosctl reasoning events tests/fixtures/reasoning/deterministic >/dev/null