@letta-ai/letta-code 0.29.13 → 0.30.1
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/dist/mcp-client.js +2 -2
- package/dist/mcp-client.js.map +1 -1
- package/dist/schedules.js +189 -0
- package/dist/schedules.js.map +10 -0
- package/dist/types/cron/scheduled-task-prompt.d.ts +35 -0
- package/dist/types/cron/scheduled-task-prompt.d.ts.map +1 -0
- package/dist/types/schedules.d.ts +8 -0
- package/dist/types/schedules.d.ts.map +1 -0
- package/dist/types/types/protocol_v2.d.ts +12 -0
- package/dist/types/types/protocol_v2.d.ts.map +1 -1
- package/letta.js +839 -580
- package/package.json +14 -1
- package/scripts/source-file-size-baseline.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@letta-ai/letta-code",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.30.1",
|
|
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",
|
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
"dist/mcp-client.js.map",
|
|
27
27
|
"dist/agent-presets.js",
|
|
28
28
|
"dist/agent-presets.js.map",
|
|
29
|
+
"dist/schedules.js",
|
|
30
|
+
"dist/schedules.js.map",
|
|
29
31
|
"dist/channels-public.js",
|
|
30
32
|
"dist/channels-public.js.map",
|
|
31
33
|
"dist/channels-slack.js",
|
|
@@ -70,6 +72,12 @@
|
|
|
70
72
|
"import": "./dist/agent-presets.js",
|
|
71
73
|
"default": "./dist/agent-presets.js"
|
|
72
74
|
},
|
|
75
|
+
"./schedules": {
|
|
76
|
+
"types": "./dist/types/schedules.d.ts",
|
|
77
|
+
"browser": "./dist/schedules.js",
|
|
78
|
+
"import": "./dist/schedules.js",
|
|
79
|
+
"default": "./dist/schedules.js"
|
|
80
|
+
},
|
|
73
81
|
"./channels": {
|
|
74
82
|
"types": "./dist/types/channels-public.d.ts",
|
|
75
83
|
"browser": "./dist/channels-public.js",
|
|
@@ -101,6 +109,7 @@
|
|
|
101
109
|
"@modelcontextprotocol/sdk": "1.30.0",
|
|
102
110
|
"@pierre/diffs": "1.2.2",
|
|
103
111
|
"@scarf/scarf": "^1.4.0",
|
|
112
|
+
"cross-spawn": "^7.0.6",
|
|
104
113
|
"cron-parser": "^5.6.1",
|
|
105
114
|
"glob": "^13.0.0",
|
|
106
115
|
"ink-link": "^5.0.0",
|
|
@@ -119,6 +128,7 @@
|
|
|
119
128
|
"@modelcontextprotocol/server-everything": "^2026.7.4",
|
|
120
129
|
"@slack/bolt": "^4.7.0",
|
|
121
130
|
"@types/bun": "^1.3.7",
|
|
131
|
+
"@types/cross-spawn": "^6.0.6",
|
|
122
132
|
"@types/diff": "^8.0.0",
|
|
123
133
|
"@types/picomatch": "^4.0.2",
|
|
124
134
|
"@types/react": "^19.2.9",
|
|
@@ -170,6 +180,9 @@
|
|
|
170
180
|
"agent-presets": [
|
|
171
181
|
"./dist/types/agent-presets.d.ts"
|
|
172
182
|
],
|
|
183
|
+
"schedules": [
|
|
184
|
+
"./dist/types/schedules.d.ts"
|
|
185
|
+
],
|
|
173
186
|
"app-server-protocol": [
|
|
174
187
|
"./dist/types/types/app-server-protocol.d.ts"
|
|
175
188
|
],
|
|
@@ -41,13 +41,13 @@
|
|
|
41
41
|
"src/tools/impl/message-channel.ts": 1187,
|
|
42
42
|
"src/tools/manager.ts": 3281,
|
|
43
43
|
"src/tools/tool-execution-context.test.ts": 1422,
|
|
44
|
-
"src/types/protocol_v2.ts":
|
|
44
|
+
"src/types/protocol_v2.ts": 2980,
|
|
45
45
|
"src/websocket/listen-client-concurrency.test.ts": 3017,
|
|
46
46
|
"src/websocket/listen-client-protocol.test.ts": 6721,
|
|
47
47
|
"src/websocket/listener/commands/channels.ts": 1315,
|
|
48
48
|
"src/websocket/listener/commands/memory.ts": 1114,
|
|
49
49
|
"src/websocket/listener/file-commands.ts": 1030,
|
|
50
|
-
"src/websocket/listener/lifecycle.ts":
|
|
51
|
-
"src/websocket/listener/protocol-inbound.ts":
|
|
50
|
+
"src/websocket/listener/lifecycle.ts": 1617,
|
|
51
|
+
"src/websocket/listener/protocol-inbound.ts": 2332,
|
|
52
52
|
"src/websocket/listener/protocol-outbound.ts": 1100
|
|
53
53
|
}
|