diff --git a/agent.aliases b/agent.aliases index 87697f0..2746dbd 100644 --- a/agent.aliases +++ b/agent.aliases @@ -19,3 +19,17 @@ pi() { agent-container() { python3 "$AGENT_CONTAINER_DIR/agent-container.py" "$@" } + +# Local variants: run the tools directly on the host, bypassing the container. +# `command` skips the shell functions above so the real binaries are used. +opencode-local() { + command opencode "$@" +} + +claude-local() { + command claude "$@" +} + +pi-local() { + command pi "$@" +}