@letta-ai/letta-code 0.31.11 → 0.31.12
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/mcp-client.js +2 -2
- package/dist/mcp-client.js.map +1 -1
- package/dist/types/agent/subagents/manager.d.ts +1 -1
- package/dist/types/tools/impl/task.d.ts +2 -2
- package/letta.js +165 -188
- package/package.json +1 -1
- package/scripts/source-file-size-baseline.json +1 -1
- package/skills/browser-use/SKILL.md +22 -61
- package/skills/messaging-agents/SKILL.md +17 -17
- 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
|
@@ -22,7 +22,7 @@ interface BuildSubagentArgsOptions {
|
|
|
22
22
|
*/
|
|
23
23
|
systemPromptOverride?: string;
|
|
24
24
|
/**
|
|
25
|
-
* Route the child's turn to a connected
|
|
25
|
+
* Route the child's turn to a connected computer (`--computer`).
|
|
26
26
|
* The child resolves the selector and fails fast if the device is offline,
|
|
27
27
|
* ambiguous, or does not support environment-routed messaging.
|
|
28
28
|
*/
|
|
@@ -60,8 +60,8 @@ export interface SpawnBackgroundSubagentTaskArgs {
|
|
|
60
60
|
/** Optional exact memory scope for harness-created memory worktrees. */
|
|
61
61
|
memoryScope?: SubagentMemoryScope;
|
|
62
62
|
/**
|
|
63
|
-
* Optional
|
|
64
|
-
* The child routes its turn to that connected
|
|
63
|
+
* Optional computer selector passed to the child as `--computer`.
|
|
64
|
+
* The child routes its turn to that connected computer and fails fast
|
|
65
65
|
* if the device is offline, ambiguous, or too old to support routing.
|
|
66
66
|
*/
|
|
67
67
|
environment?: string;
|