@letta-ai/letta-code 0.6.1 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -6
- package/letta.js +19988 -17327
- package/package.json +1 -1
- package/vendor/ink/build/components/App.js +15 -1
- package/vendor/ink-text-input/build/index.js +4 -0
package/README.md
CHANGED
|
@@ -9,16 +9,14 @@ Letta Code is a memory-first coding harness, built on top of the Letta API. Inst
|
|
|
9
9
|

|
|
10
10
|
|
|
11
11
|
## Get started
|
|
12
|
-
|
|
13
|
-
Requirements:
|
|
14
|
-
* [Node.js](https://nodejs.org/en/download) (version 18+)
|
|
15
|
-
* A [Letta Developer Platform](https://app.letta.com/) account (or a [self-hosted Letta server](https://docs.letta.com/letta-code/configuration#self-hosted-server))
|
|
16
|
-
|
|
17
12
|
Install the package via [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm):
|
|
18
13
|
```bash
|
|
19
14
|
npm install -g @letta-ai/letta-code
|
|
20
15
|
```
|
|
21
|
-
Navigate to your project directory and run `letta` (see various command-line options [on the docs](https://docs.letta.com/letta-code/commands))
|
|
16
|
+
Navigate to your project directory and run `letta` (see various command-line options [on the docs](https://docs.letta.com/letta-code/commands)).
|
|
17
|
+
|
|
18
|
+
> [!NOTE]
|
|
19
|
+
> By default, Letta Code will connect to the [Letta Developer Platform](https://app.letta.com/) (includes a free tier), which you can connect to via OAuth or setting a `LETTA_API_KEY`. You can also connect it to a [self-hosted Letta server](https://docs.letta.com/letta-code/configuration#self-hosted-server) by setting `LETTA_BASE_URL`
|
|
22
20
|
|
|
23
21
|
## Philosophy
|
|
24
22
|
Letta Code is built around long-lived agents that persist across sessions and improve with use. Rather than working in independent sessions, each session is tied to a persisted agent that learns.
|
|
@@ -52,6 +50,13 @@ Letta Code works with skills (reusable modules that teach your agent new capabil
|
|
|
52
50
|
|
|
53
51
|
Read the docs to learn more about [skills and skill learning](https://docs.letta.com/letta-code/skills).
|
|
54
52
|
|
|
53
|
+
Community maintained packages are available for Arch Linux users on the [AUR](https://aur.archlinux.org/packages/letta-code):
|
|
54
|
+
```bash
|
|
55
|
+
yay -S letta-code # release
|
|
56
|
+
yay -S letta-code-git # nightly
|
|
57
|
+
yay -S letta-code-bin # prebuilt release
|
|
58
|
+
```
|
|
59
|
+
|
|
55
60
|
---
|
|
56
61
|
|
|
57
62
|
Made with 💜 in San Francisco
|