@letta-ai/letta-code 0.26.3 → 0.26.5
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 +12 -0
- package/letta.js +20977 -18072
- package/package.json +1 -1
- package/skills/creating-extensions/SKILL.md +2 -1
- package/skills/creating-extensions/references/events.md +43 -6
package/README.md
CHANGED
|
@@ -127,6 +127,18 @@ letta server --env-name "work-laptop"
|
|
|
127
127
|
|
|
128
128
|
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.
|
|
129
129
|
|
|
130
|
+
## Installing external skills
|
|
131
|
+
|
|
132
|
+
Install skills into a specific agent's memory with `letta skills install <skill>`:
|
|
133
|
+
|
|
134
|
+
| Source | Example |
|
|
135
|
+
|---|---|
|
|
136
|
+
| GitHub | `letta skills install https://github.com/owner/repo`<br>`letta skills install https://github.com/owner/repo/tree/main/path/to/skill`<br>`letta skills install https://github.com/owner/repo/blob/main/path/to/skill/SKILL.md` |
|
|
137
|
+
| [ClawHub](https://clawhub.ai/) | `openclaw skills install <skill-slug>` → `letta skills install <skill-slug>` |
|
|
138
|
+
| [Hermes Skills Hub](https://hermes-agent.nousresearch.com/docs/skills/) | `hermes skills install <skill-path>` → `letta skills install <skill-path>` |
|
|
139
|
+
|
|
140
|
+
To view skills run `letta skills list --agent <agent-id>`, and delete skills with `letta skills delete <skill-name> --agent <agent-id>`.
|
|
141
|
+
|
|
130
142
|
## Research
|
|
131
143
|
|
|
132
144
|
Letta Code is developed by the creators of [MemGPT](https://arxiv.org/abs/2310.08560) and [sleep-time compute](https://arxiv.org/abs/2504.13171) (now called "dreaming"), and driven by our [research](https://www.letta.com/research) in AI memory and continual learning.
|