init repo

This commit is contained in:
2026-04-22 20:55:36 +02:00
commit 0155516457
32 changed files with 7712 additions and 0 deletions

44
justfile Normal file
View File

@@ -0,0 +1,44 @@
set shell := ["bash", "-euo", "pipefail", "-c"]
default:
@just --list
run:
cargo run
watch:
cargo watch -x run
check:
cargo check
test:
cargo test
nextest:
cargo nextest run
lint:
cargo fmt --all
cargo clippy --workspace --all-targets --all-features -- -D warnings
release:
cargo run --release --no-default-features
context:
./ai/scripts/build-context.sh
ai-chat:
./ai/scripts/llama-chat.sh
ai-plan TASK:
./ai/scripts/llama-task.sh plan "{{TASK}}"
ai-fix TASK:
./ai/scripts/llama-task.sh fix "{{TASK}}"
ai-review TASK:
./ai/scripts/llama-task.sh review "{{TASK}}"
tree:
tree -a -I target -I .git