From 1ee7042b91c8c1aab61bea89d1af13f4b66231d8 Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Fri, 24 Oct 2025 21:22:52 -0700 Subject: [PATCH] Update README.md --- README.md | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 2fbe565..cbe2533 100644 --- a/README.md +++ b/README.md @@ -28,33 +28,6 @@ Then run `letta` to start Letta Code (see various command-line options below): letta ``` -## Quickstart (from source) - -First, install Bun if you don't have it yet: [https://bun.com/docs/installation](https://bun.com/docs/installation) - -### Run directly from source (dev workflow) -```bash -# install deps -bun install - -# run the CLI from TypeScript sources (pick up changes immediately) -bun run dev:ui -bun run dev:ui -- -p "Hello world" # example with args -``` - -### Build + link the standalone binary -```bash -# build bin/letta (includes prompts + schemas) -bun run build - -# expose the binary globally (adjust to your preference) -bun link --global # or: bun add --global . - -# now you can run the compiled CLI -letta -``` -> Whenever you change source files, rerun `bun run build` before using the linked `letta` binary so it picks up your edits. - ## Usage ### Interactive Mode @@ -119,6 +92,33 @@ Permissions are also configured in `.letta/settings.json`: } ``` +## Installing from source + +First, install Bun if you don't have it yet: [https://bun.com/docs/installation](https://bun.com/docs/installation) + +### Run directly from source (dev workflow) +```bash +# install deps +bun install + +# run the CLI from TypeScript sources (pick up changes immediately) +bun run dev:ui +bun run dev:ui -- -p "Hello world" # example with args +``` + +### Build + link the standalone binary +```bash +# build bin/letta (includes prompts + schemas) +bun run build + +# expose the binary globally (adjust to your preference) +bun link --global # or: bun add --global . + +# now you can run the compiled CLI +letta +``` +> Whenever you change source files, rerun `bun run build` before using the linked `letta` binary so it picks up your edits. + --- Made with 💜 in San Francisco