diff --git a/docs/install.md b/docs/install.md index 20d8b54a549..506b27addac 100644 --- a/docs/install.md +++ b/docs/install.md @@ -2,11 +2,11 @@ ### System requirements -| Requirement | Details | -| --------------------------- | --------------------------------------------------------------- | -| Operating systems | macOS 12+, Ubuntu 20.04+/Debian 10+, or Windows 11 **via WSL2** | -| Git (optional, recommended) | 2.23+ for built-in PR helpers | -| RAM | 4-GB minimum (8-GB recommended) | +| Requirement | Details | +| --------------------------- | ----------------------------------------------------------------- | +| Operating systems | macOS 12+, Ubuntu 20.04+/Debian 10+, or Windows 11 (Experimental) | +| Git (optional, recommended) | 2.23+ for built-in PR helpers | +| RAM | 4-GB minimum (8-GB recommended) | ### DotSlash diff --git a/justfile b/justfile index 43ebae74aac..489b4a41dbd 100644 --- a/justfile +++ b/justfile @@ -1,5 +1,5 @@ set working-directory := "codex-rs" -set positional-arguments +set windows-shell := ["powershell.exe", "-NoProfile", "-Command"] # Display help help: @@ -8,30 +8,30 @@ help: # `codex` alias c := codex codex *args: - cargo run --bin codex -- "$@" + cargo run --bin codex -- {{args}} # `codex exec` exec *args: - cargo run --bin codex -- exec "$@" + cargo run --bin codex -- exec {{args}} # Run the CLI version of the file-search crate. file-search *args: - cargo run --bin codex-file-search -- "$@" + cargo run --bin codex-file-search -- {{args}} # Build the CLI and run the app-server test client app-server-test-client *args: cargo build -p codex-cli - cargo run -p codex-app-server-test-client -- --codex-bin ./target/debug/codex "$@" + cargo run -p codex-app-server-test-client -- --codex-bin ./target/debug/codex {{args}} # format code fmt: cargo fmt -- --config imports_granularity=Item fix *args: - cargo clippy --fix --all-features --tests --allow-dirty "$@" + cargo clippy --fix --all-features --tests --allow-dirty {{args}} -clippy: - cargo clippy --all-features --tests "$@" +clippy *args: + cargo clippy --all-features --tests {{args}} install: rustup show active-toolchain @@ -46,4 +46,4 @@ test: # Run the MCP server mcp-server-run *args: - cargo run -p codex-mcp-server -- "$@" + cargo run -p codex-mcp-server -- {{args}}