@letta-ai/letta-code 0.31.11 → 0.31.13
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 +16 -14
- package/dist/agent-presets.js +3 -3
- package/dist/agent-presets.js.map +1 -1
- package/dist/channels-slack.js +20 -1
- package/dist/channels-slack.js.map +3 -3
- package/dist/gateway-core.js +2 -1
- package/dist/gateway-core.js.map +3 -3
- package/dist/mcp-client.js +4 -4
- package/dist/mcp-client.js.map +2 -2
- package/dist/types/agent/subagents/manager.d.ts +1 -1
- package/dist/types/agent/subagents/manager.d.ts.map +1 -1
- package/dist/types/backend/api/client.d.ts.map +1 -1
- package/dist/types/backend/backend.d.ts +1 -0
- package/dist/types/backend/backend.d.ts.map +1 -1
- package/dist/types/channels/message-channel-tool-definition.d.ts.map +1 -1
- package/dist/types/channels/plugin-types.d.ts +1 -1
- package/dist/types/channels/plugin-types.d.ts.map +1 -1
- package/dist/types/channels/slack/internal-types.d.ts +5 -0
- package/dist/types/channels/slack/internal-types.d.ts.map +1 -1
- package/dist/types/channels/slack/message-action-contract.d.ts +2 -0
- package/dist/types/channels/slack/message-action-contract.d.ts.map +1 -1
- package/dist/types/channels/types.d.ts +1 -0
- package/dist/types/channels/types.d.ts.map +1 -1
- package/dist/types/cli/helpers/git-context.d.ts +1 -1
- package/dist/types/cli/helpers/git-context.d.ts.map +1 -1
- package/dist/types/tools/impl/bash.d.ts +2 -0
- package/dist/types/tools/impl/bash.d.ts.map +1 -1
- package/dist/types/tools/impl/exec-command.d.ts +8 -0
- package/dist/types/tools/impl/exec-command.d.ts.map +1 -1
- package/dist/types/tools/impl/task.d.ts +2 -2
- package/dist/types/websocket/listener/cwd-change.d.ts.map +1 -1
- package/dist/types/websocket/listener/device-git-context.d.ts +17 -0
- package/dist/types/websocket/listener/device-git-context.d.ts.map +1 -0
- package/dist/types/websocket/listener/listener-constants.d.ts.map +1 -1
- package/dist/types/websocket/listener/protocol-outbound.d.ts +1 -0
- package/dist/types/websocket/listener/protocol-outbound.d.ts.map +1 -1
- package/dist/types/websocket/listener/stream-observers.d.ts.map +1 -1
- package/dist/types/websocket/listener/worktree-watcher.d.ts.map +1 -1
- package/letta.js +1008 -888
- package/package.json +3 -2
- package/scripts/codex-watch/release-analysis.test.ts +87 -0
- package/scripts/codex-watch/release-analysis.ts +57 -7
- package/scripts/postinstall-patches.js +37 -14
- package/scripts/source-file-size-baseline.json +3 -3
- package/skills/browser-use/SKILL.md +22 -61
- package/skills/dispatching-coding-agents/SKILL.md +6 -6
- package/skills/messaging-agents/SKILL.md +34 -21
- package/skills/scheduling-tasks/SKILL.md +1 -1
- package/skills/submitting-feedback/SKILL.md +4 -2
- package/skills/teleporting-between-environments/SKILL.md +12 -12
- package/dist/types/tools/impl/foreground-sleep.d.ts +0 -13
- package/dist/types/tools/impl/foreground-sleep.d.ts.map +0 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: teleporting-between-environments
|
|
3
|
-
description: Moves the current agent conversation to Cloud, Desktop Local, or another
|
|
3
|
+
description: Moves the current agent conversation to Cloud, Desktop Local, or another connected computer while coordinating machine-local files and setup. Use when the user says "let's continue this task on cloud", asks to continue or move work on another connected computer, wants to teleport between computers, or needs to upload or download artifacts before a handoff.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Teleporting Between
|
|
6
|
+
# Teleporting Between Computers
|
|
7
7
|
|
|
8
8
|
Teleport the current agent and conversation without losing conversational memory. Prepare machine-local state first, then let the destination continue the same task.
|
|
9
9
|
|
|
@@ -20,13 +20,13 @@ Teleport the current agent and conversation without losing conversational memory
|
|
|
20
20
|
letta teleport list
|
|
21
21
|
letta teleport cloud
|
|
22
22
|
letta teleport local
|
|
23
|
-
letta teleport <
|
|
23
|
+
letta teleport <computer>
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
- `list`: show accessible online Cloud-registered targets.
|
|
27
27
|
- `cloud`: create or resume this conversation’s managed Cloud sandbox.
|
|
28
|
-
- `local`: target the one online Letta Desktop
|
|
29
|
-
- `<
|
|
28
|
+
- `local`: target the one online Letta Desktop computer. Desktop Remote Access must be enabled. If several Desktop computers are online, use `list` and target one explicitly.
|
|
29
|
+
- `<computer>`: target a listed remote computer by its friendly selector.
|
|
30
30
|
|
|
31
31
|
Do not run or recommend `letta teleport back`; return to Desktop with `local`.
|
|
32
32
|
|
|
@@ -79,21 +79,21 @@ If the command reports an offline, stale, unsupported, same-source, or startup e
|
|
|
79
79
|
|
|
80
80
|
### Return to Desktop Local
|
|
81
81
|
|
|
82
|
-
1. Retain the next local action and any setup the Desktop
|
|
83
|
-
2. Confirm Desktop is open with Remote Access enabled. If more than one Desktop
|
|
82
|
+
1. Retain the next local action and any setup the Desktop computer needs.
|
|
83
|
+
2. Confirm Desktop is open with Remote Access enabled. If more than one Desktop computer is online, use `letta teleport list` and choose one explicitly.
|
|
84
84
|
3. As the final action, run:
|
|
85
85
|
|
|
86
86
|
```bash
|
|
87
87
|
letta teleport local
|
|
88
88
|
```
|
|
89
89
|
|
|
90
|
-
### Run a separate headless turn on
|
|
90
|
+
### Run a separate headless turn on a computer
|
|
91
91
|
|
|
92
|
-
Use `--
|
|
92
|
+
Use `--computer` when a separate headless invocation, rather than the current conversation handoff, should execute on Cloud or another online computer:
|
|
93
93
|
|
|
94
94
|
```bash
|
|
95
|
-
letta -p --conversation <id> --
|
|
96
|
-
letta -p --conversation <id> --
|
|
95
|
+
letta -p --conversation <id> --computer cloud "<prompt>"
|
|
96
|
+
letta -p --conversation <id> --computer <name|device-id|connection-id> "<prompt>"
|
|
97
97
|
```
|
|
98
98
|
|
|
99
99
|
This routes that headless message only. Use `letta teleport ...` to move the currently executing conversation.
|
|
@@ -110,5 +110,5 @@ This routes that headless message only. Use `letta teleport ...` to move the cur
|
|
|
110
110
|
3. As the final action, run:
|
|
111
111
|
|
|
112
112
|
```bash
|
|
113
|
-
letta teleport <
|
|
113
|
+
letta teleport <computer>
|
|
114
114
|
```
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export declare const FOREGROUND_SLEEP_BLOCKED_MESSAGE = "Foreground `sleep` is blocked \u2014 it stalls the session while nothing happens. Run the wait in the background and keep working: use Bash with `run_in_background` and a command that exits when the condition is true, e.g. `until grep -q \"Ready in\" dev.log; do sleep 0.5; done`. You get a single completion notification when it exits. For one notification per occurrence (\"tell me every time an ERROR line appears\"), use the Monitor tool instead. `sleep` inside `run_in_background` commands and Monitor scripts is fine.";
|
|
2
|
-
/**
|
|
3
|
-
* True when the command would execute `sleep` in the foreground: `sleep` in
|
|
4
|
-
* command position in any top-level segment, including loop bodies
|
|
5
|
-
* (`while true; do sleep 1; done`).
|
|
6
|
-
*
|
|
7
|
-
* This is a workflow nudge, not a security boundary — commands the splitter
|
|
8
|
-
* cannot analyze (unsafe redirects, substitutions in double quotes) are let
|
|
9
|
-
* through rather than blocked, and `sleep` in argument position
|
|
10
|
-
* (`grep sleep file.txt`) never matches.
|
|
11
|
-
*/
|
|
12
|
-
export declare function commandRunsForegroundSleep(command: string): boolean;
|
|
13
|
-
//# sourceMappingURL=foreground-sleep.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"foreground-sleep.d.ts","sourceRoot":"","sources":["../../../../src/tools/impl/foreground-sleep.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,gCAAgC,ghBACyd,CAAC;AA4BvgB;;;;;;;;;GASG;AACH,wBAAgB,0BAA0B,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAwBnE"}
|