@letta-ai/letta-code 0.27.25 → 0.27.27
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 +15 -0
- package/letta.js +2432 -977
- package/package.json +1 -1
- package/skills/messaging-agents/SKILL.md +44 -1
package/README.md
CHANGED
|
@@ -70,6 +70,21 @@ Agents on Constellation can run across multiple machines. Any machine can be mad
|
|
|
70
70
|
letta server
|
|
71
71
|
letta server --env-name "work-laptop"
|
|
72
72
|
```
|
|
73
|
+
List discoverable environments from the CLI:
|
|
74
|
+
```bash
|
|
75
|
+
letta environments list --online-only
|
|
76
|
+
```
|
|
77
|
+
Get the current environment for routing another agent onto this same machine:
|
|
78
|
+
```bash
|
|
79
|
+
letta environments current
|
|
80
|
+
```
|
|
81
|
+
Route a headless message through a specific environment:
|
|
82
|
+
```bash
|
|
83
|
+
letta -p --agent <agent-id> --environment "work-laptop" "hello from that machine"
|
|
84
|
+
```
|
|
85
|
+
Use `--environment cloud` to start or reuse the target agent's cloud sandbox.
|
|
86
|
+
Agent-to-agent headless messages without `--environment` keep the original
|
|
87
|
+
same-environment behavior.
|
|
73
88
|
See our guides for using [Railway](https://docs.letta.com/letta-code/remote#railway), [DigitalOcean](https://docs.letta.com/letta-code/remote#digitalocean), and [Fly.io](https://docs.letta.com/letta-code/remote#flyio) as remote environments.
|
|
74
89
|
|
|
75
90
|
## Installing external skills
|