From 1c663dd0c88e3e4c1949b0afc0b82e7b6abb33ab Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Sun, 14 Dec 2025 15:24:46 -0800 Subject: [PATCH] Update README.md --- README.md | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/README.md b/README.md index ddead58..3f2367f 100644 --- a/README.md +++ b/README.md @@ -59,34 +59,6 @@ Skills are reusable modules that teach your agent new capabilities. They’re au Read the docs to learn more about [skills and skill learning](https://docs.letta.com/letta-code/skills). -## Installing from source - -Requirements: -* [Bun](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 -bun run dev -- -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 - -# 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