@letta-ai/letta-code 0.26.6 → 0.26.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@letta-ai/letta-code",
3
- "version": "0.26.6",
3
+ "version": "0.26.8",
4
4
  "description": "Letta Code is a CLI tool for interacting with stateful Letta agents from the terminal.",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.0",
@@ -96,7 +96,7 @@ Keep state separate from source code. Do not store secrets in plain JSON; use ex
96
96
 
97
97
  ## Timers and subscriptions
98
98
 
99
- Timers are okay for active-session behavior, but they only run while the extension host is alive. Always clear them:
99
+ Timers are okay for active-session behavior, but they only run while the extension engine is alive. Always clear them:
100
100
 
101
101
  ```ts
102
102
  const timer = setInterval(update, 30_000);