From e1c45d6d9fcba8ad9df0ef7dcf5d83cc1c01d108 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Wed, 28 Jan 2026 17:08:10 -0500 Subject: [PATCH] Add build-cli recipe for local binary compilation --- justfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/justfile b/justfile index 09529b2..6f085ae 100644 --- a/justfile +++ b/justfile @@ -13,6 +13,12 @@ start: check: bun run lint && bun run typecheck && bun run test +# Build CLI binary (smallest possible) +build-cli: + mkdir -p dist/bin + bun build --compile --minify --sourcemap=none src/cli.ts --outfile dist/bin/claude-remote + +# Docker build build: docker build -t claude-remote .