-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (33 loc) · 1.02 KB
/
Makefile
File metadata and controls
42 lines (33 loc) · 1.02 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
setup:
@bash scripts/banner.sh
uv sync --frozen
uv run pre-commit install
dev:
claude --plugin-dir ./plugins/ox --plugin-dir ./plugins/oxgh --plugin-dir ./plugins/oxgl
format:
uv sync --frozen
uv run ruff check --fix .
uv run ruff format .
uv run python scripts/format_json.py
uv run ty check --error-on-warning .
uv run python scripts/generate_codex.py
check:
uv sync --frozen
uv run ruff check .
uv run ruff format --check .
uv run python scripts/format_json.py --check
uv run ty check --error-on-warning .
uv run pytest tests/
uv run python scripts/generate_codex.py --check
codex:
uv run python scripts/generate_codex.py
install-codex:
uv run python scripts/generate_codex.py --install $(or $(DEST),$(HOME)/.codex/skills) --plugins $(or $(PLUGINS),ox,oxgh)
link-codex:
uv run python scripts/generate_codex.py --link $(or $(DEST),$(HOME)/.codex/skills) --plugins $(or $(PLUGINS),ox,oxgh)
bump:
uv run python scripts/bump.py $(filter-out $@,$(MAKECMDGOALS))
bump-check:
uv run python scripts/bump.py --check
%:
@: