Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
Latest commit
27 lines (21 loc) · 1.09 KB
/
Copy pathMakefile
File metadata and controls
27 lines (21 loc) · 1.09 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
.PHONY: validate test scan-local-persistence validate-local-agents validate-local-agent-templates validate-reasoning-cli
validate: test scan-local-persistence validate-local-agents validate-local-agent-templates 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 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 .
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