@letta-ai/letta-code 0.23.11 → 0.24.0
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 +7 -5
- package/letta.js +2400 -1115
- package/package.json +1 -1
- package/skills/initializing-memory/SKILL.md +4 -4
- package/skills/messaging-agents/SKILL.md +2 -2
- package/skills/modifying-letta-code/SKILL.md +270 -0
- package/skills/modifying-letta-code/scripts/add_hook.py +223 -0
- package/skills/modifying-letta-code/scripts/add_permission.py +135 -0
- package/skills/modifying-letta-code/scripts/show_config.py +211 -0
- package/skills/syncing-memory-filesystem/SKILL.md +31 -2
package/README.md
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@letta-ai/letta-code) [](https://discord.gg/letta)
|
|
4
4
|
|
|
5
|
-
Letta Code is a memory-first coding harness,
|
|
5
|
+
Letta Code is a memory-first coding harness, designed for long-lived agents that can learn from experience.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Instead of working in independent sessions, you work with a persisted agent whose memory is portable across models (Claude, GPT, Gemini, GLM, Kimi, and more).
|
|
8
|
+
|
|
9
|
+
Run Letta Code in the [**CLI**](https://docs.letta.com/letta-code/cli), or download the [**desktop app**](https://docs.letta.com/letta-code/desktop-app) for MacOS, Windows, and Linux.
|
|
10
|
+
You can also access Letta Code via [your phone](https://docs.letta.com/letta-code/remote-mobile) and [Slack/Telegram/Discord](https://docs.letta.com/letta-code/channels).
|
|
8
11
|
|
|
9
12
|

|
|
10
13
|
|
|
@@ -15,10 +18,9 @@ npm install -g @letta-ai/letta-code
|
|
|
15
18
|
```
|
|
16
19
|
Navigate to your project directory and run `letta` (see various command-line options [on the docs](https://docs.letta.com/letta-code/commands)).
|
|
17
20
|
|
|
18
|
-
Run `/connect` to configure your own LLM API keys (OpenAI, Anthropic, etc.), and use `/model` to swap models.
|
|
21
|
+
Run `/connect` to configure your own LLM API keys (OpenAI / ChatGPT, Anthropic, zAI coding plan, etc.), and use `/model` to swap models.
|
|
19
22
|
|
|
20
|
-
|
|
21
|
-
> By default, Letta Code will to connect to the [Letta API](https://app.letta.com/). Use `/connect` to use your own LLM API keys and coding plans (Codex, zAI, Minimax) for free. Set `LETTA_BASE_URL` to connect to an external [Docker server](https://docs.letta.com/letta-code/docker).
|
|
23
|
+
You can also download the [**desktop app**](https://docs.letta.com/letta-code/desktop-app) for MacOS, Windows, and Linux. Agents created in the CLI are available via the desktop app, and vice versa.
|
|
22
24
|
|
|
23
25
|
## Philosophy
|
|
24
26
|
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.
|