diff --git a/justfile b/justfile index 893e8ae..deca19a 100644 --- a/justfile +++ b/justfile @@ -12,6 +12,14 @@ run-controller $RUST_LOG="debug,h2=info,hyper_util=info,tower=info": dev-controller: watchexec --clear --restart --stop-signal INT --debounce 300ms -- just run-controller +# Run agent +run-agent $RUST_LOG="debug,h2=info,hyper_util=info,tower=info": + cargo run --package patagia-agent + +# Run agent local development +dev-agent: + watchexec --clear --restart --stop-signal INT --debounce 300ms -- just run-agent + # Lint all source code lint: cargo clippy