Skip to content

Commit 328c467

Browse files
committed
docs(AGENTS): Update make commands to just
why: Project now uses justfile instead of Makefile what: - Replace make test/start/ruff/mypy with just equivalents - Update docs commands from make to just
1 parent b0ef308 commit 328c467

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

AGENTS.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ uv pip install --editable . -G dev
4949

5050
```bash
5151
# Run all tests
52-
make test
52+
just test
5353
# or directly with pytest
5454
uv run pytest
5555

@@ -60,7 +60,7 @@ uv run pytest tests/test_pane.py
6060
uv run pytest tests/test_pane.py::test_send_keys
6161

6262
# Run tests with test watcher
63-
make start
63+
just start
6464
# or
6565
uv run ptw .
6666

@@ -72,26 +72,26 @@ uv run ptw . --now --doctest-modules
7272

7373
```bash
7474
# Run ruff for linting
75-
make ruff
75+
just ruff
7676
# or directly
7777
uv run ruff check .
7878

7979
# Format code with ruff
80-
make ruff_format
80+
just ruff-format
8181
# or directly
8282
uv run ruff format .
8383

8484
# Run ruff linting with auto-fixes
8585
uv run ruff check . --fix --show-fixes
8686

8787
# Run mypy for type checking
88-
make mypy
88+
just mypy
8989
# or directly
9090
uv run mypy src tests
9191

9292
# Watch mode for linting (using entr)
93-
make watch_ruff
94-
make watch_mypy
93+
just watch-ruff
94+
just watch-mypy
9595
```
9696

9797
### Development Workflow
@@ -108,13 +108,13 @@ Follow this workflow for code changes:
108108

109109
```bash
110110
# Build documentation
111-
make build_docs
111+
just build-docs
112112

113113
# Start documentation server with auto-reload
114-
make start_docs
114+
just start-docs
115115

116116
# Update documentation CSS/JS
117-
make design_docs
117+
just design-docs
118118
```
119119

120120
## Code Architecture

0 commit comments

Comments
 (0)